From 4e992b5fe3ec79a2230fbb74df536e7ad05f9c36 Mon Sep 17 00:00:00 2001 From: stankovski Date: Mon, 13 Jul 2015 17:37:02 -0700 Subject: [PATCH 1/3] Added checks for playback mode for LRO timeouts --- .../Helpers/ComputeManagementTestUtilities.cs | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/Helpers/ComputeManagementTestUtilities.cs b/src/ResourceManagement/Compute/Compute.Tests/Helpers/ComputeManagementTestUtilities.cs index 3634ef279b939..ac1491232c484 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Helpers/ComputeManagementTestUtilities.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/Helpers/ComputeManagementTestUtilities.cs @@ -38,7 +38,10 @@ public static ComputeManagementClient GetComputeManagementClient(TestEnvironment { handler.IsPassThrough = true; var client = TestBase.GetServiceClient(factory, handler); - client.LongRunningOperationRetryTimeout = 0; + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + client.LongRunningOperationRetryTimeout = 0; + } client.SubscriptionId = factory.GetTestEnvironment().SubscriptionId; return client; } @@ -48,7 +51,10 @@ public static ResourceManagementClient GetResourceManagementClient(RecordedDeleg handler.IsPassThrough = true; var factory = new CSMTestEnvironmentFactory(); var client = TestBase.GetServiceClient(factory, handler); - client.LongRunningOperationRetryTimeout = 0; + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + client.LongRunningOperationRetryTimeout = 0; + } client.SubscriptionId = factory.GetTestEnvironment().SubscriptionId; return client; } @@ -58,7 +64,10 @@ public static NetworkResourceProviderClient GetNetworkResourceProviderClient(Rec handler.IsPassThrough = true; var factory = new CSMTestEnvironmentFactory(); var client = TestBase.GetServiceClient(factory, handler); - client.LongRunningOperationRetryTimeout = 0; + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + client.LongRunningOperationRetryTimeout = 0; + } client.SubscriptionId = factory.GetTestEnvironment().SubscriptionId; return client; } @@ -66,8 +75,13 @@ public static NetworkResourceProviderClient GetNetworkResourceProviderClient(Rec public static StorageManagementClient GetStorageManagementClient(RecordedDelegatingHandler handler) { handler.IsPassThrough = true; - var client = TestBase.GetServiceClient(new CSMTestEnvironmentFactory(), handler); - client.LongRunningOperationRetryTimeout = 0; + var factory = new CSMTestEnvironmentFactory(); + var client = TestBase.GetServiceClient(factory, handler); + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + client.LongRunningOperationRetryTimeout = 0; + } + client.SubscriptionId = factory.GetTestEnvironment().SubscriptionId; return client; } From cb95d2141f2f0c6ba91a226d3601ff5c4ce36648 Mon Sep 17 00:00:00 2001 From: stankovski Date: Wed, 15 Jul 2015 14:15:27 -0700 Subject: [PATCH 2/3] Updated test recordings --- .../Compute.Tests/Compute.Tests.csproj | 4 +- .../ScenarioTests/ExtImgTests.cs | 18 +- .../ScenarioTests/ExtensionTests.cs | 4 +- .../Compute.Tests/ScenarioTests/UsageTests.cs | 5 + .../Compute.Tests/ScenarioTests/VMTestBase.cs | 6 +- .../TestOperations.json | 1011 +- .../TestExtImgGet.json | 48 +- .../TestExtImgListTypes.json | 48 +- .../TestExtImgListVersionsFilters.json | 206 +- .../TestExtImgListVersionsNoFilter.json | 48 +- .../TestVMExtensionOperations.json | 17614 ++++++++++++- .../TestListVMInSubscription.json | 21934 +++++++++++++++- .../TestVMWithLinuxOSProfile.json | 9658 ++++++- .../TestVMWithWindowsOSProfile.json | 5378 +++- .../TestListUsages.json | 12571 ++++++++- .../TestVMDataDiskScenario.json | 9478 ++++++- .../TestVMImageGet.json | 20 +- .../TestVMImageListFilters.json | 332 +- .../TestVMImageListNoFilter.json | 20 +- .../TestVMImageListOffers.json | 20 +- .../TestVMImageListPublishers.json | 22 +- .../TestVMImageListSkus.json | 20 +- .../TestVMMarketplace.json | 6971 ++++- .../TestMultiNicVirtualMachineReference.json | 17041 +++++++++++- .../TestNicVirtualMachineReference.json | 12013 ++++++++- .../TestVMOperations.json | 14472 +++++++++- .../TestVMScenarioOperations.json | 12633 ++++++++- .../TestListVMSizes.json | 21 +- .../Compute/Compute.Tests/packages.config | 4 +- .../ComputeManagement.csproj | 5 +- .../Compute/ComputeManagement/packages.config | 4 +- .../NetworkManagement.csproj | 4 +- .../Network/NetworkManagement/packages.config | 4 +- .../ResourceManagement.csproj | 4 +- .../ResourceManagement/packages.config | 4 +- .../StorageManagement.csproj | 4 +- .../Storage/StorageManagement/packages.config | 4 +- 37 files changed, 130000 insertions(+), 11653 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index 60a0307d70561..05b10e465d232 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -151,11 +151,11 @@ True - ..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.2\lib\net45\Microsoft.Rest.ClientRuntime.dll + ..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll True - ..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.11\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + ..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll True diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs index 2817a22fa477b..2ac3502327bec 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs @@ -50,7 +50,7 @@ public class ExtImgTests // 2- Put a VM Image Extension //PUT http://localhost:449/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions/1.1.0?api-version=2014-12-01-preview HTTP/1.1 //{ - // "name": "1.1.0", + // "name": "2.0", // "location": "westus", // "properties": { @@ -75,8 +75,8 @@ public class ExtImgTests private class VirtualMachineExtensionImageGetParameters { public string Location = "westus"; - public string PublisherName = "Microsoft.Windows"; - public string Type = "vmaccess"; + public string PublisherName = "Microsoft.Compute"; + public string Type = "VMAccessAgent"; public string FilterExpression = ""; } @@ -97,9 +97,9 @@ public void TestExtImgGet() parameters.Location, parameters.PublisherName, parameters.Type, - "1.1.0"); + "2.0"); - Assert.True(vmimageext.Name == "1.1.0"); + Assert.True(vmimageext.Name == "2.0"); Assert.True(vmimageext.Location == "westus"); Assert.True(vmimageext.OperatingSystem == "Windows"); @@ -145,7 +145,7 @@ public void TestExtImgListVersionsNoFilter() parameters.Type); Assert.True(vmextimg.Count > 0); - Assert.True(vmextimg.Count(vmi => vmi.Name == "1.1.0") != 0); + Assert.True(vmextimg.Count(vmi => vmi.Name == "2.0") != 0); } } @@ -167,7 +167,7 @@ public void TestExtImgListVersionsFilters() parameters.Type, f => f.Name.StartsWith("1.1")); Assert.True(vmextimg.Count > 0); - Assert.True(vmextimg.Count(vmi => vmi.Name == "1.1.0") != 0); + Assert.True(vmextimg.Count(vmi => vmi.Name == "2.0") != 0); // Filter: startswith - Negative Test parameters.FilterExpression = "$filter=startswith(name,'1.0')"; @@ -177,7 +177,7 @@ public void TestExtImgListVersionsFilters() parameters.Type, f => f.Name.StartsWith("1.0")); Assert.True(vmextimg.Count == 0); - Assert.True(vmextimg.Count(vmi => vmi.Name == "1.1.0") == 0); + Assert.True(vmextimg.Count(vmi => vmi.Name == "2.0") == 0); // Filter: top - Positive Test parameters.FilterExpression = "$top=1"; @@ -187,7 +187,7 @@ public void TestExtImgListVersionsFilters() parameters.Type, top: 1); Assert.True(vmextimg.Count == 1); - Assert.True(vmextimg.Count(vmi => vmi.Name == "1.1.0") != 0); + Assert.True(vmextimg.Count(vmi => vmi.Name == "2.0") != 0); // Filter: top - Negative Test parameters.FilterExpression = "$top=0"; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs index f1d202efe1e65..2f90febe214d4 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs @@ -41,8 +41,8 @@ VirtualMachineExtension GetTestVMExtension() Settings = "{}", ProtectedSettings = "{}" }; - typeof(VirtualMachineExtension).GetProperty("Name").SetValue(vmExtension, "vmext01"); - typeof(VirtualMachineExtension).GetProperty("Type").SetValue(vmExtension, "Microsoft.Compute/virtualMachines/extensions"); + typeof(Resource).GetProperty("Name").SetValue(vmExtension, "vmext01"); + typeof(Resource).GetProperty("Type").SetValue(vmExtension, "Microsoft.Compute/virtualMachines/extensions"); return vmExtension; } diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs index ad6a91e26041e..08f3b5d183e36 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs @@ -13,6 +13,7 @@ // limitations under the License. // +using System; using Microsoft.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; @@ -66,6 +67,10 @@ public void TestListUsages() m_CrpClient.VirtualMachines.Delete(rgName, inputVM.Name); } + catch (Exception e) + { + Assert.Null(e); + } finally { m_ResourcesClient.ResourceGroups.Delete(rgName); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs index badbf7cb3129e..dc2c9a9b54bb1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs @@ -135,7 +135,7 @@ protected StorageAccount CreateStorageAccount(string rgName, string storageAccou StringComparer.OrdinalIgnoreCase.Equals(t.Name, storageAccountName)); } - return storageAccountOutput; + return m_SrpClient.StorageAccounts.GetProperties(rgName, storageAccountName); } catch { @@ -376,8 +376,8 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou } }; - typeof(VirtualMachine).GetProperty("Name").SetValue(vm, TestUtilities.GenerateName("vm")); - typeof(VirtualMachine).GetProperty("Type").SetValue(vm, TestUtilities.GenerateName("Microsoft.Compute/virtualMachines")); + typeof(Resource).GetProperty("Name").SetValue(vm, TestUtilities.GenerateName("vm")); + typeof(Resource).GetProperty("Type").SetValue(vm, TestUtilities.GenerateName("Microsoft.Compute/virtualMachines")); return vm; } diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index da2ddd87462e1..f9f86e5be1156 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest7168?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcxNjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest6398?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDYzOTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168\",\r\n \"name\": \"pslibtest7168\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest6398\",\r\n \"name\": \"pslibtest6398\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "186" @@ -31,16 +31,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1189" ], "x-ms-request-id": [ - "77787067-76ab-4db9-a991-9d75cd04cd17" + "4f9a04ec-0bb1-433b-b94d-29656a7bf362" ], "x-ms-correlation-request-id": [ - "77787067-76ab-4db9-a991-9d75cd04cd17" + "4f9a04ec-0bb1-433b-b94d-29656a7bf362" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192004Z:77787067-76ab-4db9-a991-9d75cd04cd17" + "WESTUS:20150715T013732Z:4f9a04ec-0bb1-433b-b94d-29656a7bf362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,578 +49,31 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:04 GMT" + "Wed, 15 Jul 2015 01:37:31 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/invalidfdud7332?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvaW52YWxpZGZkdWQ3MzMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest6398?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDYzOTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 1\r\n },\r\n \"name\": \"invalidfdud7332\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "181" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"The specified fault domain count 1 must fall in the range 2 to 3.\"\r\n }\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-request-id": [ - "ca40c35e-de71-40c8-94bf-4b23253486b0" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" - ], - "x-ms-correlation-request-id": [ - "ae4d69a4-1008-48f0-8bf9-38d1f8194023" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192008Z:ae4d69a4-1008-48f0-8bf9-38d1f8194023" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:08 GMT" - ] - }, - "StatusCode": 400 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/invalidfdud7332?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvaW52YWxpZGZkdWQ3MzMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 4\r\n },\r\n \"name\": \"invalidfdud7332\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "181" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"The specified fault domain count 4 must fall in the range 2 to 3.\"\r\n }\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-request-id": [ - "aa2953ac-9d5f-41e1-9abc-0c68c751d790" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" - ], - "x-ms-correlation-request-id": [ - "a904fe05-0e62-4fd0-b2b5-e1736ccd8416" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192011Z:a904fe05-0e62-4fd0-b2b5-e1736ccd8416" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:10 GMT" - ] - }, - "StatusCode": 400 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/invalidfdud7332?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvaW52YWxpZGZkdWQ3MzMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 0,\r\n \"platformFaultDomainCount\": 4\r\n },\r\n \"name\": \"invalidfdud7332\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "218" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"The specified fault domain count 4 must fall in the range 2 to 3.\"\r\n }\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-request-id": [ - "16ba777d-80b7-4452-aa3a-5bc20a0fbebd" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" - ], - "x-ms-correlation-request-id": [ - "d705ee83-70ae-45a0-a515-6fb3229befbb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192013Z:d705ee83-70ae-45a0-a515-6fb3229befbb" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:12 GMT" - ] - }, - "StatusCode": 400 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/invalidfdud7332?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvaW52YWxpZGZkdWQ3MzMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 21,\r\n \"platformFaultDomainCount\": 4\r\n },\r\n \"name\": \"invalidfdud7332\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "219" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"The specified fault domain count 4 must fall in the range 2 to 3.\"\r\n }\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-request-id": [ - "4a90b31c-be96-4bcf-b43c-e597799354da" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" - ], - "x-ms-correlation-request-id": [ - "779ebfd2-ab8d-4b5c-96d4-679b3a9ada27" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192015Z:779ebfd2-ab8d-4b5c-96d4-679b3a9ada27" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:15 GMT" - ] - }, - "StatusCode": 400 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asdefaultvalues2555?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNkZWZhdWx0dmFsdWVzMjU1NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"asdefaultvalues2555\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "146" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asdefaultvalues2555\",\r\n \"name\": \"asdefaultvalues2555\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "429" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "390fec08-4066-45c7-9f93-36fc15e63c67" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" - ], - "x-ms-correlation-request-id": [ - "390eb407-4950-49e7-8eac-dd3433ea517e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192019Z:390eb407-4950-49e7-8eac-dd3433ea517e" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asdefaultvalues2555?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNkZWZhdWx0dmFsdWVzMjU1NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asdefaultvalues2555\",\r\n \"name\": \"asdefaultvalues2555\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "457" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a1ed4a5c-acf0-4931-b530-166bfe57861d" - ], - "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": [ - "efed0ca3-c36c-4416-8ba1-2382940d7802" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192019Z:efed0ca3-c36c-4416-8ba1-2382940d7802" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asdefaultvalues2555\",\r\n \"name\": \"asdefaultvalues2555\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "542" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "3f2593cf-31a1-4a93-b059-af3a47beca40" - ], - "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": [ - "6106dfa7-2588-4fc4-bef1-c595bb48e9bb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192019Z:6106dfa7-2588-4fc4-bef1-c595bb48e9bb" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asnondefault5000\",\r\n \"name\": \"asnondefault5000\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "536" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "04ef3627-8838-4e23-b33e-69e79a0bb78e" - ], - "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": [ - "26e960bb-6cd3-4f39-8d47-cd54f320465a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192027Z:26e960bb-6cd3-4f39-8d47-cd54f320465a" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asdefaultvalues2555/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNkZWZhdWx0dmFsdWVzMjU1NS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "5867" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "133da250-f766-4de4-b35e-d320ee6ba47c" - ], - "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": [ - "a677723b-2cdd-419c-9e6c-3a977663723a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192020Z:a677723b-2cdd-419c-9e6c-3a977663723a" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asdefaultvalues2555?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNkZWZhdWx0dmFsdWVzMjU1NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "eef10364-e55c-4036-98f6-0ee27910ee24" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" - ], - "x-ms-correlation-request-id": [ - "e79d488a-12a0-40d7-88fa-47b87cec310d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192022Z:e79d488a-12a0-40d7-88fa-47b87cec310d" - ], - "Date": [ - "Tue, 16 Jun 2015 19:20:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asnondefault5000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNub25kZWZhdWx0NTAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2,\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"displayStatus\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n },\r\n \"name\": \"asnondefault5000\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "350" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asnondefault5000\",\r\n \"name\": \"asnondefault5000\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest6398\",\r\n \"name\": \"pslibtest6398\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "423" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -631,51 +84,44 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" ], "x-ms-request-id": [ - "163eefef-7943-4ac0-9f97-97dab2b44cc5" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "4f9a04ec-0bb1-433b-b94d-29656a7bf362" ], "x-ms-correlation-request-id": [ - "e97ceca0-11cd-439d-8c0c-889d7b87ea0c" + "4f9a04ec-0bb1-433b-b94d-29656a7bf362" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192026Z:e97ceca0-11cd-439d-8c0c-889d7b87ea0c" + "WESTUS:20150715T013732Z:4f9a04ec-0bb1-433b-b94d-29656a7bf362" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:25 GMT" + "Wed, 15 Jul 2015 01:37:31 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asnondefault5000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNub25kZWZhdWx0NTAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest6398?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDYzOTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asnondefault5000\",\r\n \"name\": \"asnondefault5000\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "451" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -683,51 +129,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "565c3346-0da5-4359-94c8-35a6e15f75ee" - ], - "Cache-Control": [ - "no-cache" + "Retry-After": [ + "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "x-ms-request-id": [ + "8a6a3814-e658-4568-bcd5-cd566051f4e2" ], "x-ms-correlation-request-id": [ - "79517eb0-32b4-4a7d-b730-c678553c1d1a" + "8a6a3814-e658-4568-bcd5-cd566051f4e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192026Z:79517eb0-32b4-4a7d-b730-c678553c1d1a" + "WESTUS:20150715T013734Z:8a6a3814-e658-4568-bcd5-cd566051f4e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:25 GMT" + "Wed, 15 Jul 2015 01:37:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asnondefault5000/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNub25kZWZhdWx0NTAwMC92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest6398?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDYzOTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "5867" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -735,42 +180,44 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0558196d-1a7c-43ec-8614-e9ab4ff3cc1a" - ], - "Cache-Control": [ - "no-cache" + "Retry-After": [ + "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "x-ms-request-id": [ + "8a6a3814-e658-4568-bcd5-cd566051f4e2" ], "x-ms-correlation-request-id": [ - "6aee8aaa-2da6-4699-b037-51af21ffbb15" + "8a6a3814-e658-4568-bcd5-cd566051f4e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192027Z:6aee8aaa-2da6-4699-b037-51af21ffbb15" + "WESTUS:20150715T013734Z:8a6a3814-e658-4568-bcd5-cd566051f4e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:26 GMT" + "Wed, 15 Jul 2015 01:37:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asnondefault5000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNub25kZWZhdWx0NTAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEyTXprNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, "ResponseBody": "", @@ -784,57 +231,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "6cca112a-16ef-4d4f-9141-f305ce867717" - ], - "Cache-Control": [ - "no-cache" + "Retry-After": [ + "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "x-ms-request-id": [ + "fe1f9571-4663-4559-90b7-ba0ee07d04c8" ], "x-ms-correlation-request-id": [ - "3b43e29b-0a1c-4e34-b817-3d0ea8f5b723" + "fe1f9571-4663-4559-90b7-ba0ee07d04c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192030Z:3b43e29b-0a1c-4e34-b817-3d0ea8f5b723" + "WESTUS:20150715T013750Z:fe1f9571-4663-4559-90b7-ba0ee07d04c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:29 GMT" + "Wed, 15 Jul 2015 01:37:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asupdateFails2393?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXN1cGRhdGVGYWlsczIzOTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"asupdateFails2393\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEyTXprNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "144" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asupdateFails2393\",\r\n \"name\": \"asupdateFails2393\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "425" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -842,57 +282,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e07a4788-f610-4396-91b7-47cc11452b8a" - ], - "Cache-Control": [ - "no-cache" + "Retry-After": [ + "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "x-ms-request-id": [ + "fe1f9571-4663-4559-90b7-ba0ee07d04c8" ], "x-ms-correlation-request-id": [ - "b39f2326-3c2e-425a-9c1e-94c9fb169671" + "fe1f9571-4663-4559-90b7-ba0ee07d04c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192033Z:b39f2326-3c2e-425a-9c1e-94c9fb169671" + "WESTUS:20150715T013750Z:fe1f9571-4663-4559-90b7-ba0ee07d04c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:32 GMT" + "Wed, 15 Jul 2015 01:37:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asupdateFails2393?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXN1cGRhdGVGYWlsczIzOTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"name\": \"asupdateFails2393\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEyTXprNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "183" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PropertyChangeNotAllowed\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"Changing property 'platformFaultDomainCount' is not allowed.\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "186" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -900,60 +333,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "047235e2-dd85-41b2-9ef8-96415c6c551a" - ], - "Cache-Control": [ - "no-cache" + "Retry-After": [ + "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "x-ms-request-id": [ + "27604760-5a05-4eb6-8406-aa704097b1c7" ], "x-ms-correlation-request-id": [ - "1049d379-9f4e-4193-9e8d-002ddfbc6d27" + "27604760-5a05-4eb6-8406-aa704097b1c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192034Z:1049d379-9f4e-4193-9e8d-002ddfbc6d27" + "WESTUS:20150715T013805Z:27604760-5a05-4eb6-8406-aa704097b1c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:33 GMT" + "Wed, 15 Jul 2015 01:38:05 GMT" ], - "Connection": [ - "close" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 403 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asupdateFails2393?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXN1cGRhdGVGYWlsczIzOTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4\r\n },\r\n \"name\": \"asupdateFails2393\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEyTXprNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "184" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PropertyChangeNotAllowed\",\r\n \"target\": \"platformUpdateDomainCount\",\r\n \"message\": \"Changing property 'platformUpdateDomainCount' is not allowed.\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -961,45 +384,44 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "5c9718e5-b464-4dd6-a092-99869a8a851d" - ], - "Cache-Control": [ - "no-cache" + "Retry-After": [ + "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-request-id": [ + "27604760-5a05-4eb6-8406-aa704097b1c7" ], "x-ms-correlation-request-id": [ - "1db23c76-74b9-4b63-91ff-2e65d65baf27" + "27604760-5a05-4eb6-8406-aa704097b1c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192035Z:1db23c76-74b9-4b63-91ff-2e65d65baf27" + "WESTUS:20150715T013805Z:27604760-5a05-4eb6-8406-aa704097b1c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:34 GMT" + "Wed, 15 Jul 2015 01:38:05 GMT" ], - "Connection": [ - "close" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 403 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7168/providers/Microsoft.Compute/availabilitySets/asupdateFails2393?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcxNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXN1cGRhdGVGYWlsczIzOTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEyTXprNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, "ResponseBody": "", @@ -1013,38 +435,34 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" ], "x-ms-request-id": [ - "03457856-4162-4c2e-b3ad-475528f36562" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "9064b0a5-4101-47f4-9f67-d1722e299a71" ], "x-ms-correlation-request-id": [ - "ed1de6df-8ff8-4a88-9c64-bebb81aa357a" + "9064b0a5-4101-47f4-9f67-d1722e299a71" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192038Z:ed1de6df-8ff8-4a88-9c64-bebb81aa357a" + "WESTUS:20150715T013821Z:9064b0a5-4101-47f4-9f67-d1722e299a71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:38 GMT" + "Wed, 15 Jul 2015 01:38:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest7168?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcxNjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q2Mzk4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEyTXprNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -1062,20 +480,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" ], "x-ms-request-id": [ - "dc5a06da-37f3-4304-a2c8-1292afb7f71b" + "9064b0a5-4101-47f4-9f67-d1722e299a71" ], "x-ms-correlation-request-id": [ - "dc5a06da-37f3-4304-a2c8-1292afb7f71b" + "9064b0a5-4101-47f4-9f67-d1722e299a71" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192040Z:dc5a06da-37f3-4304-a2c8-1292afb7f71b" + "WESTUS:20150715T013821Z:9064b0a5-4101-47f4-9f67-d1722e299a71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1084,33 +499,21 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:20:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MTY4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Wed, 15 Jul 2015 01:38:20 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 } ], "Names": { "Initialize": [ - "pslibtest7168" + "pslibtest6398" ], "VerifyInvalidFDUDValuesFail": [ - "invalidfdud7332" - ], - "VerifyDefaultValuesSucceed": [ - "asdefaultvalues2555" - ], - "VerifyNonDefaultValuesSucceed": [ - "asnondefault5000" - ], - "VerifyUpdateFails": [ - "asupdateFails2393" + "invalidfdud3026" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index 8986b8507fec3..1bffe85d6c648 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions/1.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy92bWFjY2Vzcy92ZXJzaW9ucy8xLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"PaaS\",\r\n \"handlerSchema\": \"\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions/1.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "430" + "405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,32 +24,30 @@ "Pragma": [ "no-cache" ], - "X-SourceFiles": [ - "=?UTF-8?B?RTpccmRcYXpfY29tcHV0ZTJccHJpdmF0ZVxTZXJ2aWNlc1xBenVyZVJUXENSUC1QSVJcQXJ0aWZhY3RTZXJ2aWNlXHN1YnNjcmlwdGlvbnNcODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5XHByb3ZpZGVyc1xNaWNyb3NvZnQuQ29tcHV0ZVxsb2NhdGlvbnNcd2VzdHVzXHB1Ymxpc2hlcnNcTWljcm9zb2Z0LldpbmRvd3NcYXJ0aWZhY3R0eXBlc1x2bWV4dGVuc2lvblx0eXBlc1x2bWFjY2Vzc1x2ZXJzaW9uc1wxLjEuMA==?=" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Headers": [ - "Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, POST, PUT, DELETE, OPTIONS" + "x-ms-request-id": [ + "c3e78f63-0f51-416d-9920-4ec77dac382e" ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 10 Apr 2015 19:15:43 GMT" - ], "Server": [ - "Microsoft-IIS/8.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "X-AspNet-Version": [ - "4.0.30319" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-correlation-request-id": [ + "674d8fd9-254c-4efd-8dbe-28bf6392b29d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004111Z:674d8fd9-254c-4efd-8dbe-28bf6392b29d" + ], + "Date": [ + "Wed, 15 Jul 2015 00:41:10 GMT" ] }, "StatusCode": 200 @@ -57,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "84fffc2f-5d77-449a-bc7f-58c363f2a6b9" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index f3e7f1aac60b4..d0a447409f43e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vmaccess\",\r\n \"id\": \"/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/typesvmaccess\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "245" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,32 +24,30 @@ "Pragma": [ "no-cache" ], - "X-SourceFiles": [ - "=?UTF-8?B?RTpccmRcYXpfY29tcHV0ZTJccHJpdmF0ZVxTZXJ2aWNlc1xBenVyZVJUXENSUC1QSVJcQXJ0aWZhY3RTZXJ2aWNlXHN1YnNjcmlwdGlvbnNcODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5XHByb3ZpZGVyc1xNaWNyb3NvZnQuQ29tcHV0ZVxsb2NhdGlvbnNcd2VzdHVzXHB1Ymxpc2hlcnNcTWljcm9zb2Z0LldpbmRvd3NcYXJ0aWZhY3R0eXBlc1x2bWV4dGVuc2lvblx0eXBlcw==?=" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Headers": [ - "Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, POST, PUT, DELETE, OPTIONS" + "x-ms-request-id": [ + "911251f9-da05-4da1-8f96-3e1f31c2d9a6" ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 10 Apr 2015 19:15:43 GMT" - ], "Server": [ - "Microsoft-IIS/8.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "X-AspNet-Version": [ - "4.0.30319" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-correlation-request-id": [ + "cddd6bd3-f508-49a1-ba48-f2414772e99c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004104Z:cddd6bd3-f508-49a1-ba48-f2414772e99c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:41:04 GMT" ] }, "StatusCode": 200 @@ -57,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "84fffc2f-5d77-449a-bc7f-58c363f2a6b9" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index 5deceb48b0e48..7575e015076f9 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions?api-version=2015-06-15&$filter=startswith(name,'1.1')", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy92bWFjY2Vzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1JiRmaWx0ZXI9c3RhcnRzd2l0aChuYW1lLCcxLjEnKQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?$filter=startswith(name,%20'1.1')%20eq%20true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zPyRmaWx0ZXI9c3RhcnRzd2l0aChuYW1lLCUyMCcxLjEnKSUyMGVxJTIwdHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions/1.1.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"Message\": \"The query specified in the URI is not valid. Logical operator 'Equal' is not allowed. To allow it, set the 'AllowedLogicalOperators' property on EnableQueryAttribute or QueryValidationSettings.\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "258" + "214" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,201 +24,37 @@ "Pragma": [ "no-cache" ], - "X-SourceFiles": [ - "=?UTF-8?B?RTpccmRcYXpfY29tcHV0ZTJccHJpdmF0ZVxTZXJ2aWNlc1xBenVyZVJUXENSUC1QSVJcQXJ0aWZhY3RTZXJ2aWNlXHN1YnNjcmlwdGlvbnNcODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5XHByb3ZpZGVyc1xNaWNyb3NvZnQuQ29tcHV0ZVxsb2NhdGlvbnNcd2VzdHVzXHB1Ymxpc2hlcnNcTWljcm9zb2Z0LldpbmRvd3NcYXJ0aWZhY3R0eXBlc1x2bWV4dGVuc2lvblx0eXBlc1x2bWFjY2Vzc1x2ZXJzaW9ucw==?=" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Headers": [ - "Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, POST, PUT, DELETE, OPTIONS" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 10 Apr 2015 19:15:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions?api-version=2015-06-15&$filter=startswith(name,'1.0')", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy92bWFjY2Vzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1JiRmaWx0ZXI9c3RhcnRzd2l0aChuYW1lLCcxLjAnKQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "[]", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "X-SourceFiles": [ - "=?UTF-8?B?RTpccmRcYXpfY29tcHV0ZTJccHJpdmF0ZVxTZXJ2aWNlc1xBenVyZVJUXENSUC1QSVJcQXJ0aWZhY3RTZXJ2aWNlXHN1YnNjcmlwdGlvbnNcODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5XHByb3ZpZGVyc1xNaWNyb3NvZnQuQ29tcHV0ZVxsb2NhdGlvbnNcd2VzdHVzXHB1Ymxpc2hlcnNcTWljcm9zb2Z0LldpbmRvd3NcYXJ0aWZhY3R0eXBlc1x2bWV4dGVuc2lvblx0eXBlc1x2bWFjY2Vzc1x2ZXJzaW9ucw==?=" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Headers": [ - "Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, POST, PUT, DELETE, OPTIONS" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 10 Apr 2015 19:15:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy92bWFjY2Vzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1JiR0b3A9MQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions/1.1.0\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "258" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "X-SourceFiles": [ - "=?UTF-8?B?RTpccmRcYXpfY29tcHV0ZTJccHJpdmF0ZVxTZXJ2aWNlc1xBenVyZVJUXENSUC1QSVJcQXJ0aWZhY3RTZXJ2aWNlXHN1YnNjcmlwdGlvbnNcODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5XHByb3ZpZGVyc1xNaWNyb3NvZnQuQ29tcHV0ZVxsb2NhdGlvbnNcd2VzdHVzXHB1Ymxpc2hlcnNcTWljcm9zb2Z0LldpbmRvd3NcYXJ0aWZhY3R0eXBlc1x2bWV4dGVuc2lvblx0eXBlc1x2bWFjY2Vzc1x2ZXJzaW9ucw==?=" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Headers": [ - "Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, POST, PUT, DELETE, OPTIONS" + "x-ms-request-id": [ + "d22f3498-303c-4194-aa7a-ab94bd546c0e" ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 10 Apr 2015 19:15:43 GMT" - ], "Server": [ - "Microsoft-IIS/8.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions?api-version=2015-06-15&$top=0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy92bWFjY2Vzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1JiR0b3A9MA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "[]", - "ResponseHeaders": { - "Content-Length": [ - "2" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], - "Expires": [ - "-1" + "x-ms-correlation-request-id": [ + "b67bc8d2-55a0-40b4-9521-9c018a49216b" ], - "Pragma": [ - "no-cache" - ], - "X-SourceFiles": [ - "=?UTF-8?B?RTpccmRcYXpfY29tcHV0ZTJccHJpdmF0ZVxTZXJ2aWNlc1xBenVyZVJUXENSUC1QSVJcQXJ0aWZhY3RTZXJ2aWNlXHN1YnNjcmlwdGlvbnNcODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5XHByb3ZpZGVyc1xNaWNyb3NvZnQuQ29tcHV0ZVxsb2NhdGlvbnNcd2VzdHVzXHB1Ymxpc2hlcnNcTWljcm9zb2Z0LldpbmRvd3NcYXJ0aWZhY3R0eXBlc1x2bWV4dGVuc2lvblx0eXBlc1x2bWFjY2Vzc1x2ZXJzaW9ucw==?=" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Headers": [ - "Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, POST, PUT, DELETE, OPTIONS" - ], - "Cache-Control": [ - "no-cache" + "x-ms-routing-request-id": [ + "WESTUS:20150715T004057Z:b67bc8d2-55a0-40b4-9521-9c018a49216b" ], "Date": [ - "Fri, 10 Apr 2015 19:15:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Wed, 15 Jul 2015 00:40:56 GMT" ] }, - "StatusCode": 200 + "StatusCode": 400 } ], "Names": {}, "Variables": { - "SubscriptionId": "84fffc2f-5d77-449a-bc7f-58c363f2a6b9" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index 10a8c05634aa9..aa3e97934824b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy92bWFjY2Vzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/subscriptions/84fffc2f-5d77-449a-bc7f-58c363f2a6b9/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows/artifacttypes/vmextension/types/vmaccess/versions/1.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "258" + "259" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,32 +24,30 @@ "Pragma": [ "no-cache" ], - "X-SourceFiles": [ - "=?UTF-8?B?RTpccmRcYXpfY29tcHV0ZTJccHJpdmF0ZVxTZXJ2aWNlc1xBenVyZVJUXENSUC1QSVJcQXJ0aWZhY3RTZXJ2aWNlXHN1YnNjcmlwdGlvbnNcODRmZmZjMmYtNWQ3Ny00NDlhLWJjN2YtNThjMzYzZjJhNmI5XHByb3ZpZGVyc1xNaWNyb3NvZnQuQ29tcHV0ZVxsb2NhdGlvbnNcd2VzdHVzXHB1Ymxpc2hlcnNcTWljcm9zb2Z0LldpbmRvd3NcYXJ0aWZhY3R0eXBlc1x2bWV4dGVuc2lvblx0eXBlc1x2bWFjY2Vzc1x2ZXJzaW9ucw==?=" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Headers": [ - "Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, POST, PUT, DELETE, OPTIONS" + "x-ms-request-id": [ + "4454767b-328f-441a-b0d2-c12e9c03ed53" ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 10 Apr 2015 19:15:43 GMT" - ], "Server": [ - "Microsoft-IIS/8.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "X-AspNet-Version": [ - "4.0.30319" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-correlation-request-id": [ + "e1cf1cc5-f33b-469b-8f8c-ff2c1c34f817" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004117Z:e1cf1cc5-f33b-469b-8f8c-ff2c1c34f817" + ], + "Date": [ + "Wed, 15 Jul 2015 00:41:17 GMT" ] }, "StatusCode": 200 @@ -57,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "84fffc2f-5d77-449a-bc7f-58c363f2a6b9" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json index 795f1c2d9439a..e9b4ccb54ba02 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90597e6d-6013-4912-971e-706c4e5cbd1b" + "45bc5510-2a4b-4dc7-b9a0-42fadd716cbc" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "e380c7dd-3d78-4889-9abd-3bfa67fb52b0" + "645cbc9f-ccaa-4f7f-afef-39ad574223ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191729Z:e380c7dd-3d78-4889-9abd-3bfa67fb52b0" + "WESTUS:20150715T004532Z:645cbc9f-ccaa-4f7f-afef-39ad574223ef" ], "Date": [ - "Tue, 16 Jun 2015 19:17:28 GMT" + "Wed, 15 Jul 2015 00:45:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest9333?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkzMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333\",\r\n \"name\": \"pslibtest9333\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,107 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "9729e007-c406-4602-945d-ed9929c0fd66" - ], - "x-ms-correlation-request-id": [ - "9729e007-c406-4602-945d-ed9929c0fd66" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191730Z:9729e007-c406-4602-945d-ed9929c0fd66" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Jun 2015 19:17:30 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest9333?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkzMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333\",\r\n \"name\": \"pslibtest9333\",\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" + "x-ms-request-id": [ + "45bc5510-2a4b-4dc7-b9a0-42fadd716cbc" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "fb38af44-1d08-44ac-a3ba-0a8ec32480d3" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "fb38af44-1d08-44ac-a3ba-0a8ec32480d3" + "645cbc9f-ccaa-4f7f-afef-39ad574223ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191811Z:fb38af44-1d08-44ac-a3ba-0a8ec32480d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150715T004532Z:645cbc9f-ccaa-4f7f-afef-39ad574223ef" ], "Date": [ - "Tue, 16 Jun 2015 19:18:10 GMT" + "Wed, 15 Jul 2015 00:45:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Storage/storageAccounts/pslibtest333?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "a8621744-0ed5-46ae-b398-e6d4ba49b9c6" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +128,48 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae51be19-f537-4cc3-948b-82df849d79fe" + "45bc5510-2a4b-4dc7-b9a0-42fadd716cbc" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/ae51be19-f537-4cc3-948b-82df849d79fe?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "6e891c90-a440-4781-a007-afe8c97446f6" + "645cbc9f-ccaa-4f7f-afef-39ad574223ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191734Z:6e891c90-a440-4781-a007-afe8c97446f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150715T004532Z:645cbc9f-ccaa-4f7f-afef-39ad574223ef" ], "Date": [ - "Tue, 16 Jun 2015 19:17:34 GMT" + "Wed, 15 Jul 2015 00:45:31 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/ae51be19-f537-4cc3-948b-82df849d79fe?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2FlNTFiZTE5LWY1MzctNGNjMy05NDhiLTgyZGY4NDlkNzlmZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "15dc2422-95a3-435e-a805-0770207fd958" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f1e4aca-ffd1-42cd-87b2-8e4c5d45c1bc" + "45bc5510-2a4b-4dc7-b9a0-42fadd716cbc" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/ae51be19-f537-4cc3-948b-82df849d79fe?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14998" ], "x-ms-correlation-request-id": [ - "a8c1189d-31f8-4003-85e1-51d1c30994ac" + "645cbc9f-ccaa-4f7f-afef-39ad574223ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191735Z:a8c1189d-31f8-4003-85e1-51d1c30994ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150715T004532Z:645cbc9f-ccaa-4f7f-afef-39ad574223ef" ], "Date": [ - "Tue, 16 Jun 2015 19:17:34 GMT" + "Wed, 15 Jul 2015 00:45:31 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/ae51be19-f537-4cc3-948b-82df849d79fe?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2FlNTFiZTE5LWY1MzctNGNjMy05NDhiLTgyZGY4NDlkNzlmZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "2a410c39-5cf6-429f-9705-75e3148daf1f" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857\",\r\n \"name\": \"pslibtest1857\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +238,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "a46388e1-dbbe-4a9a-aae1-d77539536be1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "x-ms-request-id": [ + "a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], "x-ms-correlation-request-id": [ - "6112fabf-43f4-4d68-8b25-63e7f9330390" + "a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191800Z:6112fabf-43f4-4d68-8b25-63e7f9330390" + "WESTUS:20150715T004535Z:a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 19:17:59 GMT" + "Wed, 15 Jul 2015 00:45:34 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "796c93ec-8a52-4127-a209-757449452ef8" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Storage/storageAccounts/pslibtest333\",\r\n \"name\": \"pslibtest333\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest333.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest333.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest333.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T19:17:32.129115Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857\",\r\n \"name\": \"pslibtest1857\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "700" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "7b1ac490-4792-4cfe-b952-cff04203fecb" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "x-ms-request-id": [ + "a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], "x-ms-correlation-request-id": [ - "028413c9-d296-40a4-9283-eca1ca941581" + "a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191810Z:028413c9-d296-40a4-9283-eca1ca941581" + "WESTUS:20150715T004535Z:a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 19:18:09 GMT" + "Wed, 15 Jul 2015 00:45:34 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/publicIPAddresses/azsmnet870/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4NzAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3187\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet870\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/publicIPAddresses/azsmnet870\",\r\n \"etag\": \"W/\\\"20f6c9cc-211b-4aeb-a3fb-93a855928b0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3187\",\r\n \"fqdn\": \"azsmnet3187.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857\",\r\n \"name\": \"pslibtest1857\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "577" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +346,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "a2a9db04-271c-49b1-be8f-d3ae17820db4" + "a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/a2a9db04-271c-49b1-be8f-d3ae17820db4?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004535Z:a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +364,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "74c516df-c9e7-44ed-a95b-e6a1ed6d36d8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191817Z:74c516df-c9e7-44ed-a95b-e6a1ed6d36d8" - ], "Date": [ - "Tue, 16 Jun 2015 19:18:17 GMT" + "Wed, 15 Jul 2015 00:45:34 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/a2a9db04-271c-49b1-be8f-d3ae17820db4?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyYTlkYjA0LTI3MWMtNDliMS1iZThmLWQzYWUxNzgyMGRiND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857\",\r\n \"name\": \"pslibtest1857\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +400,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], "x-ms-request-id": [ - "9977090e-d01f-4ea6-beb5-23310011a292" + "a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" + ], + "x-ms-correlation-request-id": [ + "a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004535Z:a3210fb6-4cdc-4e63-b7d6-38d1d7f33497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +418,32 @@ "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": [ - "69ef252c-6544-4f64-b33b-fba0c3d383eb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191818Z:69ef252c-6544-4f64-b33b-fba0c3d383eb" - ], "Date": [ - "Tue, 16 Jun 2015 19:18:17 GMT" + "Wed, 15 Jul 2015 00:45:34 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/publicIPAddresses/azsmnet870/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4NzAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet870\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/publicIPAddresses/azsmnet870\",\r\n \"etag\": \"W/\\\"8159b293-2ea2-4e8b-80c4-cf8d19447817\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3187\",\r\n \"fqdn\": \"azsmnet3187.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857\",\r\n \"name\": \"pslibtest1857\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "578" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,8 +454,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "3bb1291d-fbe5-453d-9a31-4f56d6de0688" + "35992955-0312-4a80-a395-12949f97deef" + ], + "x-ms-correlation-request-id": [ + "35992955-0312-4a80-a395-12949f97deef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004616Z:35992955-0312-4a80-a395-12949f97deef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,48 +472,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"8159b293-2ea2-4e8b-80c4-cf8d19447817\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "55b5847e-f8b2-4491-aae4-a26c72f9803c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191818Z:55b5847e-f8b2-4491-aae4-a26c72f9803c" - ], "Date": [ - "Tue, 16 Jun 2015 19:18:18 GMT" + "Wed, 15 Jul 2015 00:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/virtualnetworks/azsmnet9582?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0OTU4Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet6359\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9582\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/virtualNetworks/azsmnet9582\",\r\n \"etag\": \"W/\\\"29a7980d-0fe3-4a10-a769-90b6f9c440d9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6359\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/virtualNetworks/azsmnet9582/subnets/azsmnet6359\",\r\n \"etag\": \"W/\\\"29a7980d-0fe3-4a10-a769-90b6f9c440d9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857\",\r\n \"name\": \"pslibtest1857\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "959" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,14 +508,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "52059adb-4e51-455a-8bc5-3b06000c0d59" + "35992955-0312-4a80-a395-12949f97deef" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/52059adb-4e51-455a-8bc5-3b06000c0d59?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "35992955-0312-4a80-a395-12949f97deef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004616Z:35992955-0312-4a80-a395-12949f97deef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,42 +526,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "863084cc-ed29-4799-84b4-652428a38e6a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191821Z:863084cc-ed29-4799-84b4-652428a38e6a" - ], "Date": [ - "Tue, 16 Jun 2015 19:18:20 GMT" + "Wed, 15 Jul 2015 00:46:16 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/52059adb-4e51-455a-8bc5-3b06000c0d59?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyMDU5YWRiLTRlNTEtNDU1YS04YmM1LTNiMDYwMDBjMGQ1OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857\",\r\n \"name\": \"pslibtest1857\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,8 +562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "c3db4e96-9f0a-4887-a1ae-1a7f5471467e" + "35992955-0312-4a80-a395-12949f97deef" + ], + "x-ms-correlation-request-id": [ + "35992955-0312-4a80-a395-12949f97deef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004616Z:35992955-0312-4a80-a395-12949f97deef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,39 +580,32 @@ "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": [ - "248632c1-0c11-4078-a661-2b6df5993863" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191822Z:248632c1-0c11-4078-a661-2b6df5993863" - ], "Date": [ - "Tue, 16 Jun 2015 19:18:21 GMT" + "Wed, 15 Jul 2015 00:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/virtualnetworks/azsmnet9582/subnets/azsmnet6359?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0OTU4Mi9zdWJuZXRzL2F6c21uZXQ2MzU5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6359\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/virtualNetworks/azsmnet9582/subnets/azsmnet6359\",\r\n \"etag\": \"W/\\\"3a3c2e03-8005-4d78-8fe2-805358c3a6c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857\",\r\n \"name\": \"pslibtest1857\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "b492cfa3-f791-4b84-b1d7-bd3bd9a73a10" + "35992955-0312-4a80-a395-12949f97deef" + ], + "x-ms-correlation-request-id": [ + "35992955-0312-4a80-a395-12949f97deef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004616Z:35992955-0312-4a80-a395-12949f97deef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,48 +634,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"3a3c2e03-8005-4d78-8fe2-805358c3a6c8\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "a94bbec1-4e6a-40d6-bd7e-7260c301940b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191822Z:a94bbec1-4e6a-40d6-bd7e-7260c301940b" - ], "Date": [ - "Tue, 16 Jun 2015 19:18:22 GMT" + "Wed, 15 Jul 2015 00:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MzgyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/virtualNetworks/azsmnet9582/subnets/azsmnet6359\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/publicIPAddresses/azsmnet870\"\r\n }\r\n },\r\n \"name\": \"azsmnet2222\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet8382\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "715" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8382\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382\",\r\n \"etag\": \"W/\\\"39b158c3-038b-45d0-aa27-59f7abfb341f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2222\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382/ipConfigurations/azsmnet2222\",\r\n \"etag\": \"W/\\\"39b158c3-038b-45d0-aa27-59f7abfb341f\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/publicIPAddresses/azsmnet870\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/virtualNetworks/azsmnet9582/subnets/azsmnet6359\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1323" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -776,54 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "8eeeecba-c794-4eb2-85ee-f7e084c1d10c" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/8eeeecba-c794-4eb2-85ee-f7e084c1d10c?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "c6a1c20c-174a-486e-b962-f1fae43e3158" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/c6a1c20c-174a-486e-b962-f1fae43e3158?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "e8666251-eacf-41d2-8338-5d6e1e3891ab" + "ea46b380-f2ec-4e3a-9d34-bd3201069e54" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191828Z:e8666251-eacf-41d2-8338-5d6e1e3891ab" + "WESTUS:20150715T004540Z:ea46b380-f2ec-4e3a-9d34-bd3201069e54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:28 GMT" + "Wed, 15 Jul 2015 00:45:40 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/8eeeecba-c794-4eb2-85ee-f7e084c1d10c?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZWVlY2JhLWM3OTQtNGViMi04NWVlLWY3ZTA4NGMxZDEwYz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,48 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "5385e3b7-0ff2-4903-8644-ae6d41bb025f" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "c6a1c20c-174a-486e-b962-f1fae43e3158" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/c6a1c20c-174a-486e-b962-f1fae43e3158?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "4248a8ec-0eff-4e24-9768-00ede07f050e" + "ea46b380-f2ec-4e3a-9d34-bd3201069e54" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191829Z:4248a8ec-0eff-4e24-9768-00ede07f050e" + "WESTUS:20150715T004540Z:ea46b380-f2ec-4e3a-9d34-bd3201069e54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:29 GMT" + "Wed, 15 Jul 2015 00:45:40 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MzgyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8382\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382\",\r\n \"etag\": \"W/\\\"39b158c3-038b-45d0-aa27-59f7abfb341f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2222\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382/ipConfigurations/azsmnet2222\",\r\n \"etag\": \"W/\\\"39b158c3-038b-45d0-aa27-59f7abfb341f\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/publicIPAddresses/azsmnet870\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/virtualNetworks/azsmnet9582/subnets/azsmnet6359\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1323" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,57 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "b9505641-39d9-41de-94fa-084899fdadf4" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "c6a1c20c-174a-486e-b962-f1fae43e3158" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"39b158c3-038b-45d0-aa27-59f7abfb341f\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/c6a1c20c-174a-486e-b962-f1fae43e3158?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "951ed9af-90e4-4eea-8a56-61457ad8d158" + "ea46b380-f2ec-4e3a-9d34-bd3201069e54" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191830Z:951ed9af-90e4-4eea-8a56-61457ad8d158" + "WESTUS:20150715T004540Z:ea46b380-f2ec-4e3a-9d34-bd3201069e54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:29 GMT" + "Wed, 15 Jul 2015 00:45:40 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/availabilitySets/as6913?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2OTEzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as6913\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "133" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/availabilitySets/as6913\",\r\n \"name\": \"as6913\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "403" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -947,54 +862,54 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "25" ], "x-ms-request-id": [ - "d8635155-a389-45bc-9a8b-fcd4bfa6cd17" + "c6a1c20c-174a-486e-b962-f1fae43e3158" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/c6a1c20c-174a-486e-b962-f1fae43e3158?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "6c78f5a4-3acc-4fa2-bd37-7561897c9639" + "ea46b380-f2ec-4e3a-9d34-bd3201069e54" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191834Z:6c78f5a4-3acc-4fa2-bd37-7561897c9639" + "WESTUS:20150715T004540Z:ea46b380-f2ec-4e3a-9d34-bd3201069e54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:34 GMT" + "Wed, 15 Jul 2015 00:45:40 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest333.blob.core.windows.net/pslibtest258/ospslibtest889.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest9333\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/availabilitySets/as6913\"\r\n }\r\n },\r\n \"name\": \"vm7982\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/c6a1c20c-174a-486e-b962-f1fae43e3158?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M2YTFjMjBjLTE3NGEtNDg2ZS1iOTYyLWYxZmFlNDNlMzE1OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1318" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/availabilitySets/AS6913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest333.blob.core.windows.net/pslibtest258/ospslibtest889.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982\",\r\n \"name\": \"vm7982\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1577" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,14 +920,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/520096e6-4771-4515-879f-aa2dcef78b59?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "520096e6-4771-4515-879f-aa2dcef78b59" + "41abe11c-933b-4ad6-8952-df4311f19da1" ], "Cache-Control": [ "no-cache" @@ -1021,35 +930,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "5f780aaa-0c07-4eab-970e-35e523218d4b" + "bc280c98-36ce-42fc-8f82-528b5c40b58c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191839Z:5f780aaa-0c07-4eab-970e-35e523218d4b" + "WESTUS:20150715T004605Z:bc280c98-36ce-42fc-8f82-528b5c40b58c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:38 GMT" + "Wed, 15 Jul 2015 00:46:04 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/520096e6-4771-4515-879f-aa2dcef78b59?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyMDA5NmU2LTQ3NzEtNDUxNS04NzlmLWFhMmRjZWY3OGI1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/c6a1c20c-174a-486e-b962-f1fae43e3158?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M2YTFjMjBjLTE3NGEtNDg2ZS1iOTYyLWYxZmFlNDNlMzE1OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"520096e6-4771-4515-879f-aa2dcef78b59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:18:37.0949266-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1060,11 +972,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "f0400884-4ef3-40c6-9081-8163bf9102dd" + "41abe11c-933b-4ad6-8952-df4311f19da1" ], "Cache-Control": [ "no-cache" @@ -1074,34 +983,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14997" ], "x-ms-correlation-request-id": [ - "cbe60837-aa0e-48b1-93a3-87c0de35fb85" + "bc280c98-36ce-42fc-8f82-528b5c40b58c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191839Z:cbe60837-aa0e-48b1-93a3-87c0de35fb85" + "WESTUS:20150715T004605Z:bc280c98-36ce-42fc-8f82-528b5c40b58c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:39 GMT" + "Wed, 15 Jul 2015 00:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/c6a1c20c-174a-486e-b962-f1fae43e3158?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M2YTFjMjBjLTE3NGEtNDg2ZS1iOTYyLWYxZmFlNDNlMzE1OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/availabilitySets/AS6913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest333.blob.core.windows.net/pslibtest258/ospslibtest889.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982\",\r\n \"name\": \"vm7982\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1577" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1112,11 +1024,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "128621aa-6a74-4a6f-8bfd-37ea8626eb2d" + "41abe11c-933b-4ad6-8952-df4311f19da1" ], "Cache-Control": [ "no-cache" @@ -1126,34 +1035,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-correlation-request-id": [ - "c477d802-18fd-41fd-8c09-6e72ac89b6f5" + "bc280c98-36ce-42fc-8f82-528b5c40b58c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191840Z:c477d802-18fd-41fd-8c09-6e72ac89b6f5" + "WESTUS:20150715T004605Z:bc280c98-36ce-42fc-8f82-528b5c40b58c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:39 GMT" + "Wed, 15 Jul 2015 00:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/c6a1c20c-174a-486e-b962-f1fae43e3158?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M2YTFjMjBjLTE3NGEtNDg2ZS1iOTYyLWYxZmFlNDNlMzE1OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/availabilitySets/AS6913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest333.blob.core.windows.net/pslibtest258/ospslibtest889.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n }\r\n ],\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982\",\r\n \"name\": \"vm7982\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2250" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1164,11 +1076,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "0c13cd41-3bdc-47dd-91e6-95e4295a666d" + "41abe11c-933b-4ad6-8952-df4311f19da1" ], "Cache-Control": [ "no-cache" @@ -1178,82 +1087,89 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14997" ], "x-ms-correlation-request-id": [ - "0f208bed-a895-4393-8082-cb2612ef3a22" + "bc280c98-36ce-42fc-8f82-528b5c40b58c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191850Z:0f208bed-a895-4393-8082-cb2612ef3a22" + "WESTUS:20150715T004605Z:bc280c98-36ce-42fc-8f82-528b5c40b58c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:49 GMT" + "Wed, 15 Jul 2015 00:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/VMExtensionDoesNotExist?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODIvZXh0ZW5zaW9ucy9WTUV4dGVuc2lvbkRvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155\",\r\n \"name\": \"pslibtest6155\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6155.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6155.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6155.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:45:36.9209943Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], "Expires": [ "-1" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], "x-ms-request-id": [ - "28ef31c6-d62d-4fd3-a263-d922f8d1cb4e" + "808cadc0-9983-481d-8031-f5e99580a0b9" + ], + "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": [ - "28ef31c6-d62d-4fd3-a263-d922f8d1cb4e" + "80650e1b-62c2-45b5-b05d-88188a009b88" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191840Z:28ef31c6-d62d-4fd3-a263-d922f8d1cb4e" + "WESTUS:20150715T004615Z:80650e1b-62c2-45b5-b05d-88188a009b88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 16 Jun 2015 19:18:39 GMT" + "Wed, 15 Jul 2015 00:46:15 GMT" ] }, - "StatusCode": 204 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODIvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {},\r\n \"protectedSettings\": {}\r\n },\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "404" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155\",\r\n \"name\": \"pslibtest6155\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6155.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6155.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6155.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:45:36.9209943Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "575" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1264,14 +1180,60 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/98c4eee8-39f4-468d-9421-d98b8a090246?api-version=2015-06-15" + "x-ms-request-id": [ + "808cadc0-9983-481d-8031-f5e99580a0b9" + ], + "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": [ + "80650e1b-62c2-45b5-b05d-88188a009b88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004615Z:80650e1b-62c2-45b5-b05d-88188a009b88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Wed, 15 Jul 2015 00:46:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155\",\r\n \"name\": \"pslibtest6155\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6155.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6155.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6155.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:45:36.9209943Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "98c4eee8-39f4-468d-9421-d98b8a090246" + "808cadc0-9983-481d-8031-f5e99580a0b9" ], "Cache-Control": [ "no-cache" @@ -1280,35 +1242,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], "x-ms-correlation-request-id": [ - "0c23e1a1-380f-484b-94a2-1828cea0ae79" + "80650e1b-62c2-45b5-b05d-88188a009b88" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191849Z:0c23e1a1-380f-484b-94a2-1828cea0ae79" + "WESTUS:20150715T004615Z:80650e1b-62c2-45b5-b05d-88188a009b88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:48 GMT" + "Wed, 15 Jul 2015 00:46:15 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODIvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155\",\r\n \"name\": \"pslibtest6155\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6155.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6155.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6155.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:45:36.9209943Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "575" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1319,11 +1284,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "f896f940-8da3-4885-8903-e55f074bfa97" + "808cadc0-9983-481d-8031-f5e99580a0b9" ], "Cache-Control": [ "no-cache" @@ -1333,34 +1295,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14996" ], "x-ms-correlation-request-id": [ - "0761701f-51c0-400f-a8f1-773cbf98d6ce" + "80650e1b-62c2-45b5-b05d-88188a009b88" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191849Z:0761701f-51c0-400f-a8f1-773cbf98d6ce" + "WESTUS:20150715T004615Z:80650e1b-62c2-45b5-b05d-88188a009b88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:48 GMT" + "Wed, 15 Jul 2015 00:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODIvZXh0ZW5zaW9ucy92bWV4dDAxPyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"name\": \"vmext01\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155\",\r\n \"name\": \"pslibtest6155\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6155.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6155.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6155.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:45:36.9209943Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "631" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1371,11 +1336,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "f12d1e90-0053-44ee-95b2-d561d965b5ec" + ], + "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": [ + "96cec1cb-cec4-45ef-ba47-2fadead06a05" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004615Z:96cec1cb-cec4-45ef-ba47-2fadead06a05" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Wed, 15 Jul 2015 00:46:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155\",\r\n \"name\": \"pslibtest6155\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6155.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6155.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6155.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:45:36.9209943Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "12f2f1ac-4316-41f3-be92-f8c0d1ae35c1" + "f12d1e90-0053-44ee-95b2-d561d965b5ec" ], "Cache-Control": [ "no-cache" @@ -1385,34 +1399,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14995" ], "x-ms-correlation-request-id": [ - "3896d16a-5609-4a9a-a2dd-ed334fa713f4" + "96cec1cb-cec4-45ef-ba47-2fadead06a05" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191849Z:3896d16a-5609-4a9a-a2dd-ed334fa713f4" + "WESTUS:20150715T004615Z:96cec1cb-cec4-45ef-ba47-2fadead06a05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:49 GMT" + "Wed, 15 Jul 2015 00:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/availabilitySets/AS6913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest333.blob.core.windows.net/pslibtest258/ospslibtest889.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-06-16T12:18:50-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T12:18:49.4543799-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"vmext01\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n },\r\n {\r\n \"code\": \"PowerState/stopped\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM stopped\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n }\r\n ],\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982\",\r\n \"name\": \"vm7982\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155\",\r\n \"name\": \"pslibtest6155\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6155.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6155.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6155.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:45:36.9209943Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "3462" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1423,11 +1440,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "f12d1e90-0053-44ee-95b2-d561d965b5ec" + ], + "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": [ + "96cec1cb-cec4-45ef-ba47-2fadead06a05" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004615Z:96cec1cb-cec4-45ef-ba47-2fadead06a05" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Wed, 15 Jul 2015 00:46:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MTU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Storage/storageAccounts/pslibtest6155\",\r\n \"name\": \"pslibtest6155\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6155.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6155.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6155.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:45:36.9209943Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "41a7c3cd-c67a-44d4-82f3-6f1369374ffb" + "f12d1e90-0053-44ee-95b2-d561d965b5ec" ], "Cache-Control": [ "no-cache" @@ -1437,34 +1503,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14995" ], "x-ms-correlation-request-id": [ - "96d9098d-738e-4474-8b37-2d4d65ad60eb" + "96cec1cb-cec4-45ef-ba47-2fadead06a05" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191850Z:96d9098d-738e-4474-8b37-2d4d65ad60eb" + "WESTUS:20150715T004615Z:96cec1cb-cec4-45ef-ba47-2fadead06a05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:18:49 GMT" + "Wed, 15 Jul 2015 00:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Compute/virtualMachines/vm7982/extensions/vmext01?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc5ODIvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "211" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"6e561d60-7ac3-431b-b6c7-62886298738d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "577" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1472,54 +1550,63 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dacbe4ab-f0b9-47df-8126-3f59efda913f" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/d85ecd20-9e13-4855-8104-958be34579a4?api-version=2015-06-15" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/dacbe4ab-f0b9-47df-8126-3f59efda913f?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "d85ecd20-9e13-4855-8104-958be34579a4" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/d85ecd20-9e13-4855-8104-958be34579a4?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "e5179732-c568-4529-8cc3-2affb4aa9c02" + "b36f3e3b-dd64-4b28-98f3-de2e164a187a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191852Z:e5179732-c568-4529-8cc3-2affb4aa9c02" + "WESTUS:20150715T004622Z:b36f3e3b-dd64-4b28-98f3-de2e164a187a" ], "Date": [ - "Tue, 16 Jun 2015 19:18:51 GMT" + "Wed, 15 Jul 2015 00:46:22 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest9333?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkzMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "211" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"6e561d60-7ac3-431b-b6c7-62886298738d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "577" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1528,19 +1615,13 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "10" ], "x-ms-request-id": [ - "1256edc4-a6b3-4635-bad3-063e7194a54d" - ], - "x-ms-correlation-request-id": [ - "1256edc4-a6b3-4635-bad3-063e7194a54d" + "dacbe4ab-f0b9-47df-8126-3f59efda913f" ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191854Z:1256edc4-a6b3-4635-bad3-063e7194a54d" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/dacbe4ab-f0b9-47df-8126-3f59efda913f?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1548,42 +1629,16369 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 16 Jun 2015 19:18:53 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MzMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b36f3e3b-dd64-4b28-98f3-de2e164a187a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004622Z:b36f3e3b-dd64-4b28-98f3-de2e164a187a" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:22 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "211" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"6e561d60-7ac3-431b-b6c7-62886298738d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dacbe4ab-f0b9-47df-8126-3f59efda913f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/dacbe4ab-f0b9-47df-8126-3f59efda913f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b36f3e3b-dd64-4b28-98f3-de2e164a187a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004622Z:b36f3e3b-dd64-4b28-98f3-de2e164a187a" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "211" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"6e561d60-7ac3-431b-b6c7-62886298738d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dacbe4ab-f0b9-47df-8126-3f59efda913f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/dacbe4ab-f0b9-47df-8126-3f59efda913f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b36f3e3b-dd64-4b28-98f3-de2e164a187a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004622Z:b36f3e3b-dd64-4b28-98f3-de2e164a187a" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/dacbe4ab-f0b9-47df-8126-3f59efda913f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhY2JlNGFiLWYwYjktNDdkZi04MTI2LTNmNTllZmRhOTEzZj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "572449fd-d234-4a85-897f-319e49360d7b" + ], + "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": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "96795182-c194-4e70-9dd5-a59579cca3be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004633Z:96795182-c194-4e70-9dd5-a59579cca3be" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/dacbe4ab-f0b9-47df-8126-3f59efda913f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhY2JlNGFiLWYwYjktNDdkZi04MTI2LTNmNTllZmRhOTEzZj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "572449fd-d234-4a85-897f-319e49360d7b" + ], + "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": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "96795182-c194-4e70-9dd5-a59579cca3be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004633Z:96795182-c194-4e70-9dd5-a59579cca3be" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/dacbe4ab-f0b9-47df-8126-3f59efda913f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhY2JlNGFiLWYwYjktNDdkZi04MTI2LTNmNTllZmRhOTEzZj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "572449fd-d234-4a85-897f-319e49360d7b" + ], + "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": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "96795182-c194-4e70-9dd5-a59579cca3be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004633Z:96795182-c194-4e70-9dd5-a59579cca3be" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/dacbe4ab-f0b9-47df-8126-3f59efda913f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhY2JlNGFiLWYwYjktNDdkZi04MTI2LTNmNTllZmRhOTEzZj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "572449fd-d234-4a85-897f-319e49360d7b" + ], + "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": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "96795182-c194-4e70-9dd5-a59579cca3be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004633Z:96795182-c194-4e70-9dd5-a59579cca3be" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"855ca332-4667-43ec-b1a3-74a02e1ac42f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18a4e6d6-c830-4a95-8fb2-80c1523647fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"855ca332-4667-43ec-b1a3-74a02e1ac42f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "043e99de-a9e0-4c46-9485-3e9ee287dd7e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004633Z:043e99de-a9e0-4c46-9485-3e9ee287dd7e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"855ca332-4667-43ec-b1a3-74a02e1ac42f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18a4e6d6-c830-4a95-8fb2-80c1523647fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"855ca332-4667-43ec-b1a3-74a02e1ac42f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "043e99de-a9e0-4c46-9485-3e9ee287dd7e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004633Z:043e99de-a9e0-4c46-9485-3e9ee287dd7e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"855ca332-4667-43ec-b1a3-74a02e1ac42f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18a4e6d6-c830-4a95-8fb2-80c1523647fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"855ca332-4667-43ec-b1a3-74a02e1ac42f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "043e99de-a9e0-4c46-9485-3e9ee287dd7e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004633Z:043e99de-a9e0-4c46-9485-3e9ee287dd7e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"855ca332-4667-43ec-b1a3-74a02e1ac42f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18a4e6d6-c830-4a95-8fb2-80c1523647fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"855ca332-4667-43ec-b1a3-74a02e1ac42f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "043e99de-a9e0-4c46-9485-3e9ee287dd7e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004633Z:043e99de-a9e0-4c46-9485-3e9ee287dd7e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"855ca332-4667-43ec-b1a3-74a02e1ac42f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bb035873-1d42-4d2d-a79f-acbcb196f5c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"855ca332-4667-43ec-b1a3-74a02e1ac42f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "d51c8bd4-3b6e-4cdc-8ec1-3d686771a4d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004634Z:d51c8bd4-3b6e-4cdc-8ec1-3d686771a4d6" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"855ca332-4667-43ec-b1a3-74a02e1ac42f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bb035873-1d42-4d2d-a79f-acbcb196f5c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"855ca332-4667-43ec-b1a3-74a02e1ac42f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "d51c8bd4-3b6e-4cdc-8ec1-3d686771a4d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004634Z:d51c8bd4-3b6e-4cdc-8ec1-3d686771a4d6" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"855ca332-4667-43ec-b1a3-74a02e1ac42f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bb035873-1d42-4d2d-a79f-acbcb196f5c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"855ca332-4667-43ec-b1a3-74a02e1ac42f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "d51c8bd4-3b6e-4cdc-8ec1-3d686771a4d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004634Z:d51c8bd4-3b6e-4cdc-8ec1-3d686771a4d6" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3Mjc1Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7275\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/publicIPAddresses/azsmnet7275\",\r\n \"etag\": \"W/\\\"855ca332-4667-43ec-b1a3-74a02e1ac42f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet672\",\r\n \"fqdn\": \"azsmnet672.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bb035873-1d42-4d2d-a79f-acbcb196f5c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"855ca332-4667-43ec-b1a3-74a02e1ac42f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "d51c8bd4-3b6e-4cdc-8ec1-3d686771a4d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004634Z:d51c8bd4-3b6e-4cdc-8ec1-3d686771a4d6" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349\",\r\n \"etag\": \"W/\\\"14b0ebc1-fa67-4cb3-8eab-4c5920e12d15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"14b0ebc1-fa67-4cb3-8eab-4c5920e12d15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3d614ead-4a3d-4b6a-a99d-958465d29df9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/3d614ead-4a3d-4b6a-a99d-958465d29df9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1d47ace9-afa9-4ad0-b7c9-dd1a1794759f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004637Z:1d47ace9-afa9-4ad0-b7c9-dd1a1794759f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349\",\r\n \"etag\": \"W/\\\"14b0ebc1-fa67-4cb3-8eab-4c5920e12d15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"14b0ebc1-fa67-4cb3-8eab-4c5920e12d15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3d614ead-4a3d-4b6a-a99d-958465d29df9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/3d614ead-4a3d-4b6a-a99d-958465d29df9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1d47ace9-afa9-4ad0-b7c9-dd1a1794759f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004637Z:1d47ace9-afa9-4ad0-b7c9-dd1a1794759f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349\",\r\n \"etag\": \"W/\\\"14b0ebc1-fa67-4cb3-8eab-4c5920e12d15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"14b0ebc1-fa67-4cb3-8eab-4c5920e12d15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3d614ead-4a3d-4b6a-a99d-958465d29df9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/3d614ead-4a3d-4b6a-a99d-958465d29df9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1d47ace9-afa9-4ad0-b7c9-dd1a1794759f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004637Z:1d47ace9-afa9-4ad0-b7c9-dd1a1794759f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349\",\r\n \"etag\": \"W/\\\"14b0ebc1-fa67-4cb3-8eab-4c5920e12d15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"14b0ebc1-fa67-4cb3-8eab-4c5920e12d15\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3d614ead-4a3d-4b6a-a99d-958465d29df9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/3d614ead-4a3d-4b6a-a99d-958465d29df9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1d47ace9-afa9-4ad0-b7c9-dd1a1794759f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004637Z:1d47ace9-afa9-4ad0-b7c9-dd1a1794759f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/3d614ead-4a3d-4b6a-a99d-958465d29df9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkNjE0ZWFkLTRhM2QtNGI2YS1hOTlkLTk1ODQ2NWQyOWRmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b9b7dd0-d11a-4421-8d4e-92a330280dca" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "b9c6c3ae-3742-4781-a83d-23e905b8f622" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004648Z:b9c6c3ae-3742-4781-a83d-23e905b8f622" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/3d614ead-4a3d-4b6a-a99d-958465d29df9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkNjE0ZWFkLTRhM2QtNGI2YS1hOTlkLTk1ODQ2NWQyOWRmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b9b7dd0-d11a-4421-8d4e-92a330280dca" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "b9c6c3ae-3742-4781-a83d-23e905b8f622" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004648Z:b9c6c3ae-3742-4781-a83d-23e905b8f622" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/3d614ead-4a3d-4b6a-a99d-958465d29df9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkNjE0ZWFkLTRhM2QtNGI2YS1hOTlkLTk1ODQ2NWQyOWRmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b9b7dd0-d11a-4421-8d4e-92a330280dca" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "b9c6c3ae-3742-4781-a83d-23e905b8f622" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004648Z:b9c6c3ae-3742-4781-a83d-23e905b8f622" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/3d614ead-4a3d-4b6a-a99d-958465d29df9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNkNjE0ZWFkLTRhM2QtNGI2YS1hOTlkLTk1ODQ2NWQyOWRmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b9b7dd0-d11a-4421-8d4e-92a330280dca" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "b9c6c3ae-3742-4781-a83d-23e905b8f622" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004648Z:b9c6c3ae-3742-4781-a83d-23e905b8f622" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "20a48f5a-7028-46d7-84d4-4ce3c7ca6709" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3d49a108-a619-44f7-8261-134cb3fc9d66\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "aad20704-d57c-4d12-b10e-c72c9effde2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004649Z:aad20704-d57c-4d12-b10e-c72c9effde2c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "20a48f5a-7028-46d7-84d4-4ce3c7ca6709" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3d49a108-a619-44f7-8261-134cb3fc9d66\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "aad20704-d57c-4d12-b10e-c72c9effde2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004649Z:aad20704-d57c-4d12-b10e-c72c9effde2c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "20a48f5a-7028-46d7-84d4-4ce3c7ca6709" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3d49a108-a619-44f7-8261-134cb3fc9d66\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "aad20704-d57c-4d12-b10e-c72c9effde2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004649Z:aad20704-d57c-4d12-b10e-c72c9effde2c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "20a48f5a-7028-46d7-84d4-4ce3c7ca6709" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3d49a108-a619-44f7-8261-134cb3fc9d66\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "aad20704-d57c-4d12-b10e-c72c9effde2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004649Z:aad20704-d57c-4d12-b10e-c72c9effde2c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349/subnets/azsmnet5291?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OS9zdWJuZXRzL2F6c21uZXQ1MjkxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "731f70ca-aa02-4e08-8ae0-7da7e83d24e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3d49a108-a619-44f7-8261-134cb3fc9d66\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "c62de704-89b1-4851-a5f1-b3aeb16fb97e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004649Z:c62de704-89b1-4851-a5f1-b3aeb16fb97e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349/subnets/azsmnet5291?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OS9zdWJuZXRzL2F6c21uZXQ1MjkxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "731f70ca-aa02-4e08-8ae0-7da7e83d24e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3d49a108-a619-44f7-8261-134cb3fc9d66\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "c62de704-89b1-4851-a5f1-b3aeb16fb97e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004649Z:c62de704-89b1-4851-a5f1-b3aeb16fb97e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349/subnets/azsmnet5291?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OS9zdWJuZXRzL2F6c21uZXQ1MjkxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "731f70ca-aa02-4e08-8ae0-7da7e83d24e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3d49a108-a619-44f7-8261-134cb3fc9d66\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "c62de704-89b1-4851-a5f1-b3aeb16fb97e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004649Z:c62de704-89b1-4851-a5f1-b3aeb16fb97e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualnetworks/azsmnet7349/subnets/azsmnet5291?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzM0OS9zdWJuZXRzL2F6c21uZXQ1MjkxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5291\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "731f70ca-aa02-4e08-8ae0-7da7e83d24e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3d49a108-a619-44f7-8261-134cb3fc9d66\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "c62de704-89b1-4851-a5f1-b3aeb16fb97e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004649Z:c62de704-89b1-4851-a5f1-b3aeb16fb97e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1240\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240/ipConfigurations/azsmnet7209\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9cdb499a-670a-4503-8bf9-e50235622537" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/9cdb499a-670a-4503-8bf9-e50235622537?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d3fcf98f-7c76-4364-b878-188172029e99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004653Z:d3fcf98f-7c76-4364-b878-188172029e99" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1240\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240/ipConfigurations/azsmnet7209\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9cdb499a-670a-4503-8bf9-e50235622537" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/9cdb499a-670a-4503-8bf9-e50235622537?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d3fcf98f-7c76-4364-b878-188172029e99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004653Z:d3fcf98f-7c76-4364-b878-188172029e99" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1240\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240/ipConfigurations/azsmnet7209\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9cdb499a-670a-4503-8bf9-e50235622537" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/9cdb499a-670a-4503-8bf9-e50235622537?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d3fcf98f-7c76-4364-b878-188172029e99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004653Z:d3fcf98f-7c76-4364-b878-188172029e99" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5291\",\r\n \"etag\": \"W/\\\"3d49a108-a619-44f7-8261-134cb3fc9d66\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1240\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240/ipConfigurations/azsmnet7209\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9cdb499a-670a-4503-8bf9-e50235622537" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/9cdb499a-670a-4503-8bf9-e50235622537?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d3fcf98f-7c76-4364-b878-188172029e99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004653Z:d3fcf98f-7c76-4364-b878-188172029e99" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1240\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240/ipConfigurations/azsmnet7209\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b13480eb-e1a0-4874-98f5-b4e030aeddd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"6603657c-3bda-462b-afbc-6d8e3c97ce57\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "83d855cb-7e47-4442-b128-c7341349fda2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004653Z:83d855cb-7e47-4442-b128-c7341349fda2" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1240\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240/ipConfigurations/azsmnet7209\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b13480eb-e1a0-4874-98f5-b4e030aeddd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"6603657c-3bda-462b-afbc-6d8e3c97ce57\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "83d855cb-7e47-4442-b128-c7341349fda2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004653Z:83d855cb-7e47-4442-b128-c7341349fda2" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1240\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240/ipConfigurations/azsmnet7209\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b13480eb-e1a0-4874-98f5-b4e030aeddd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"6603657c-3bda-462b-afbc-6d8e3c97ce57\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "83d855cb-7e47-4442-b128-c7341349fda2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004653Z:83d855cb-7e47-4442-b128-c7341349fda2" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1240\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240/ipConfigurations/azsmnet7209\",\r\n \"etag\": \"W/\\\"6603657c-3bda-462b-afbc-6d8e3c97ce57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/virtualNetworks/azsmnet7349/subnets/azsmnet5291\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b13480eb-e1a0-4874-98f5-b4e030aeddd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"6603657c-3bda-462b-afbc-6d8e3c97ce57\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "83d855cb-7e47-4442-b128-c7341349fda2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004653Z:83d855cb-7e47-4442-b128-c7341349fda2" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM4MTc2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176\",\r\n \"name\": \"as8176\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "54543a81-ba96-494f-b10f-5bfab647c22d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "d12d7de6-c780-4c66-a39b-b7239e4e983f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004657Z:d12d7de6-c780-4c66-a39b-b7239e4e983f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM4MTc2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176\",\r\n \"name\": \"as8176\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "54543a81-ba96-494f-b10f-5bfab647c22d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "d12d7de6-c780-4c66-a39b-b7239e4e983f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004657Z:d12d7de6-c780-4c66-a39b-b7239e4e983f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM4MTc2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176\",\r\n \"name\": \"as8176\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "54543a81-ba96-494f-b10f-5bfab647c22d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "d12d7de6-c780-4c66-a39b-b7239e4e983f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004657Z:d12d7de6-c780-4c66-a39b-b7239e4e983f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM4MTc2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176\",\r\n \"name\": \"as8176\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "54543a81-ba96-494f-b10f-5bfab647c22d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "d12d7de6-c780-4c66-a39b-b7239e4e983f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004657Z:d12d7de6-c780-4c66-a39b-b7239e4e983f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:46:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1857\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0b0c5225-afc4-4816-a730-414f51bdeb4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "43217189-4247-43cf-9174-1057ef38e3a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004702Z:43217189-4247-43cf-9174-1057ef38e3a7" + ], + "Date": [ + "Wed, 15 Jul 2015 00:47:01 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1857\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0b0c5225-afc4-4816-a730-414f51bdeb4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "43217189-4247-43cf-9174-1057ef38e3a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004702Z:43217189-4247-43cf-9174-1057ef38e3a7" + ], + "Date": [ + "Wed, 15 Jul 2015 00:47:01 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1857\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0b0c5225-afc4-4816-a730-414f51bdeb4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "43217189-4247-43cf-9174-1057ef38e3a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004702Z:43217189-4247-43cf-9174-1057ef38e3a7" + ], + "Date": [ + "Wed, 15 Jul 2015 00:47:01 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1857\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/as8176\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0b0c5225-afc4-4816-a730-414f51bdeb4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "43217189-4247-43cf-9174-1057ef38e3a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004702Z:43217189-4247-43cf-9174-1057ef38e3a7" + ], + "Date": [ + "Wed, 15 Jul 2015 00:47:01 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e7524a89-3e88-4f4d-8d6a-dac6d5f21a5d" + ], + "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": [ + "00c0f94b-e679-45da-b70b-3b7f20288bf3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004733Z:00c0f94b-e679-45da-b70b-3b7f20288bf3" + ], + "Date": [ + "Wed, 15 Jul 2015 00:47:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e7524a89-3e88-4f4d-8d6a-dac6d5f21a5d" + ], + "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": [ + "00c0f94b-e679-45da-b70b-3b7f20288bf3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004733Z:00c0f94b-e679-45da-b70b-3b7f20288bf3" + ], + "Date": [ + "Wed, 15 Jul 2015 00:47:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e7524a89-3e88-4f4d-8d6a-dac6d5f21a5d" + ], + "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": [ + "00c0f94b-e679-45da-b70b-3b7f20288bf3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004733Z:00c0f94b-e679-45da-b70b-3b7f20288bf3" + ], + "Date": [ + "Wed, 15 Jul 2015 00:47:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e7524a89-3e88-4f4d-8d6a-dac6d5f21a5d" + ], + "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": [ + "00c0f94b-e679-45da-b70b-3b7f20288bf3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004733Z:00c0f94b-e679-45da-b70b-3b7f20288bf3" + ], + "Date": [ + "Wed, 15 Jul 2015 00:47:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e4ddbd3d-4cea-4eef-9cbc-4fcf73879bc3" + ], + "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": [ + "bff9f9a0-6234-40e8-b8bc-267a3fb7d3f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004803Z:bff9f9a0-6234-40e8-b8bc-267a3fb7d3f9" + ], + "Date": [ + "Wed, 15 Jul 2015 00:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e4ddbd3d-4cea-4eef-9cbc-4fcf73879bc3" + ], + "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": [ + "bff9f9a0-6234-40e8-b8bc-267a3fb7d3f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004803Z:bff9f9a0-6234-40e8-b8bc-267a3fb7d3f9" + ], + "Date": [ + "Wed, 15 Jul 2015 00:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e4ddbd3d-4cea-4eef-9cbc-4fcf73879bc3" + ], + "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": [ + "bff9f9a0-6234-40e8-b8bc-267a3fb7d3f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004803Z:bff9f9a0-6234-40e8-b8bc-267a3fb7d3f9" + ], + "Date": [ + "Wed, 15 Jul 2015 00:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e4ddbd3d-4cea-4eef-9cbc-4fcf73879bc3" + ], + "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": [ + "bff9f9a0-6234-40e8-b8bc-267a3fb7d3f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004803Z:bff9f9a0-6234-40e8-b8bc-267a3fb7d3f9" + ], + "Date": [ + "Wed, 15 Jul 2015 00:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "50eef6e2-9fe1-4b53-baf9-232684b8cc7f" + ], + "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": [ + "bb18f5b6-e522-4364-8ec3-c94ce10a9020" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004834Z:bb18f5b6-e522-4364-8ec3-c94ce10a9020" + ], + "Date": [ + "Wed, 15 Jul 2015 00:48:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "50eef6e2-9fe1-4b53-baf9-232684b8cc7f" + ], + "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": [ + "bb18f5b6-e522-4364-8ec3-c94ce10a9020" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004834Z:bb18f5b6-e522-4364-8ec3-c94ce10a9020" + ], + "Date": [ + "Wed, 15 Jul 2015 00:48:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "50eef6e2-9fe1-4b53-baf9-232684b8cc7f" + ], + "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": [ + "bb18f5b6-e522-4364-8ec3-c94ce10a9020" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004834Z:bb18f5b6-e522-4364-8ec3-c94ce10a9020" + ], + "Date": [ + "Wed, 15 Jul 2015 00:48:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "50eef6e2-9fe1-4b53-baf9-232684b8cc7f" + ], + "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": [ + "bb18f5b6-e522-4364-8ec3-c94ce10a9020" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004834Z:bb18f5b6-e522-4364-8ec3-c94ce10a9020" + ], + "Date": [ + "Wed, 15 Jul 2015 00:48:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "95bfc202-9bfe-4761-b2c5-368683850ae7" + ], + "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": [ + "daeb9296-5fc0-4d10-99b1-0a9b1e106694" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004905Z:daeb9296-5fc0-4d10-99b1-0a9b1e106694" + ], + "Date": [ + "Wed, 15 Jul 2015 00:49:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "95bfc202-9bfe-4761-b2c5-368683850ae7" + ], + "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": [ + "daeb9296-5fc0-4d10-99b1-0a9b1e106694" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004905Z:daeb9296-5fc0-4d10-99b1-0a9b1e106694" + ], + "Date": [ + "Wed, 15 Jul 2015 00:49:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "95bfc202-9bfe-4761-b2c5-368683850ae7" + ], + "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": [ + "daeb9296-5fc0-4d10-99b1-0a9b1e106694" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004905Z:daeb9296-5fc0-4d10-99b1-0a9b1e106694" + ], + "Date": [ + "Wed, 15 Jul 2015 00:49:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "95bfc202-9bfe-4761-b2c5-368683850ae7" + ], + "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": [ + "daeb9296-5fc0-4d10-99b1-0a9b1e106694" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004905Z:daeb9296-5fc0-4d10-99b1-0a9b1e106694" + ], + "Date": [ + "Wed, 15 Jul 2015 00:49:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f77ad6b-e305-49b8-9c2e-59d4a819094d" + ], + "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": [ + "c0fbab3a-ac4b-4507-80c3-c402bfdf3871" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004936Z:c0fbab3a-ac4b-4507-80c3-c402bfdf3871" + ], + "Date": [ + "Wed, 15 Jul 2015 00:49:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f77ad6b-e305-49b8-9c2e-59d4a819094d" + ], + "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": [ + "c0fbab3a-ac4b-4507-80c3-c402bfdf3871" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004936Z:c0fbab3a-ac4b-4507-80c3-c402bfdf3871" + ], + "Date": [ + "Wed, 15 Jul 2015 00:49:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f77ad6b-e305-49b8-9c2e-59d4a819094d" + ], + "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": [ + "c0fbab3a-ac4b-4507-80c3-c402bfdf3871" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004936Z:c0fbab3a-ac4b-4507-80c3-c402bfdf3871" + ], + "Date": [ + "Wed, 15 Jul 2015 00:49:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f77ad6b-e305-49b8-9c2e-59d4a819094d" + ], + "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": [ + "c0fbab3a-ac4b-4507-80c3-c402bfdf3871" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004936Z:c0fbab3a-ac4b-4507-80c3-c402bfdf3871" + ], + "Date": [ + "Wed, 15 Jul 2015 00:49:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cb7d3077-b3e1-4cb8-a69c-0b779b3024e0" + ], + "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": [ + "08093642-d746-4494-a578-9754139c7f00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005006Z:08093642-d746-4494-a578-9754139c7f00" + ], + "Date": [ + "Wed, 15 Jul 2015 00:50:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cb7d3077-b3e1-4cb8-a69c-0b779b3024e0" + ], + "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": [ + "08093642-d746-4494-a578-9754139c7f00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005006Z:08093642-d746-4494-a578-9754139c7f00" + ], + "Date": [ + "Wed, 15 Jul 2015 00:50:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cb7d3077-b3e1-4cb8-a69c-0b779b3024e0" + ], + "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": [ + "08093642-d746-4494-a578-9754139c7f00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005006Z:08093642-d746-4494-a578-9754139c7f00" + ], + "Date": [ + "Wed, 15 Jul 2015 00:50:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cb7d3077-b3e1-4cb8-a69c-0b779b3024e0" + ], + "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": [ + "08093642-d746-4494-a578-9754139c7f00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005006Z:08093642-d746-4494-a578-9754139c7f00" + ], + "Date": [ + "Wed, 15 Jul 2015 00:50:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fd79506b-a2f1-44a8-8a5f-e7764c1eec89" + ], + "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": [ + "5e862d18-0f69-4faa-9d7e-757dbf0fe50a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005037Z:5e862d18-0f69-4faa-9d7e-757dbf0fe50a" + ], + "Date": [ + "Wed, 15 Jul 2015 00:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fd79506b-a2f1-44a8-8a5f-e7764c1eec89" + ], + "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": [ + "5e862d18-0f69-4faa-9d7e-757dbf0fe50a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005037Z:5e862d18-0f69-4faa-9d7e-757dbf0fe50a" + ], + "Date": [ + "Wed, 15 Jul 2015 00:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fd79506b-a2f1-44a8-8a5f-e7764c1eec89" + ], + "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": [ + "5e862d18-0f69-4faa-9d7e-757dbf0fe50a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005037Z:5e862d18-0f69-4faa-9d7e-757dbf0fe50a" + ], + "Date": [ + "Wed, 15 Jul 2015 00:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fd79506b-a2f1-44a8-8a5f-e7764c1eec89" + ], + "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": [ + "5e862d18-0f69-4faa-9d7e-757dbf0fe50a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005037Z:5e862d18-0f69-4faa-9d7e-757dbf0fe50a" + ], + "Date": [ + "Wed, 15 Jul 2015 00:50:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1675be35-0cd3-44ca-8b74-d71f3f23436a" + ], + "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": [ + "7f0aecde-9c5d-407c-b507-a1b0524bbff2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005108Z:7f0aecde-9c5d-407c-b507-a1b0524bbff2" + ], + "Date": [ + "Wed, 15 Jul 2015 00:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1675be35-0cd3-44ca-8b74-d71f3f23436a" + ], + "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": [ + "7f0aecde-9c5d-407c-b507-a1b0524bbff2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005108Z:7f0aecde-9c5d-407c-b507-a1b0524bbff2" + ], + "Date": [ + "Wed, 15 Jul 2015 00:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1675be35-0cd3-44ca-8b74-d71f3f23436a" + ], + "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": [ + "7f0aecde-9c5d-407c-b507-a1b0524bbff2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005108Z:7f0aecde-9c5d-407c-b507-a1b0524bbff2" + ], + "Date": [ + "Wed, 15 Jul 2015 00:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1675be35-0cd3-44ca-8b74-d71f3f23436a" + ], + "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": [ + "7f0aecde-9c5d-407c-b507-a1b0524bbff2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005108Z:7f0aecde-9c5d-407c-b507-a1b0524bbff2" + ], + "Date": [ + "Wed, 15 Jul 2015 00:51:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5680ceb-311c-4604-89ff-6f034a9d9a8a" + ], + "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": [ + "49fde879-bff1-448a-ac90-f4ca44abe499" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005139Z:49fde879-bff1-448a-ac90-f4ca44abe499" + ], + "Date": [ + "Wed, 15 Jul 2015 00:51:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5680ceb-311c-4604-89ff-6f034a9d9a8a" + ], + "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": [ + "49fde879-bff1-448a-ac90-f4ca44abe499" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005139Z:49fde879-bff1-448a-ac90-f4ca44abe499" + ], + "Date": [ + "Wed, 15 Jul 2015 00:51:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5680ceb-311c-4604-89ff-6f034a9d9a8a" + ], + "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": [ + "49fde879-bff1-448a-ac90-f4ca44abe499" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005139Z:49fde879-bff1-448a-ac90-f4ca44abe499" + ], + "Date": [ + "Wed, 15 Jul 2015 00:51:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5680ceb-311c-4604-89ff-6f034a9d9a8a" + ], + "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": [ + "49fde879-bff1-448a-ac90-f4ca44abe499" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005139Z:49fde879-bff1-448a-ac90-f4ca44abe499" + ], + "Date": [ + "Wed, 15 Jul 2015 00:51:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d3be2649-18ea-4c9b-b66b-f367ebd13f5a" + ], + "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": [ + "daf47556-cae8-4bd2-8608-478b4e3c4421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005210Z:daf47556-cae8-4bd2-8608-478b4e3c4421" + ], + "Date": [ + "Wed, 15 Jul 2015 00:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d3be2649-18ea-4c9b-b66b-f367ebd13f5a" + ], + "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": [ + "daf47556-cae8-4bd2-8608-478b4e3c4421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005210Z:daf47556-cae8-4bd2-8608-478b4e3c4421" + ], + "Date": [ + "Wed, 15 Jul 2015 00:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d3be2649-18ea-4c9b-b66b-f367ebd13f5a" + ], + "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": [ + "daf47556-cae8-4bd2-8608-478b4e3c4421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005210Z:daf47556-cae8-4bd2-8608-478b4e3c4421" + ], + "Date": [ + "Wed, 15 Jul 2015 00:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d3be2649-18ea-4c9b-b66b-f367ebd13f5a" + ], + "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": [ + "daf47556-cae8-4bd2-8608-478b4e3c4421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005210Z:daf47556-cae8-4bd2-8608-478b4e3c4421" + ], + "Date": [ + "Wed, 15 Jul 2015 00:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f77f09cb-c2f1-4aa7-9c5e-a03e3f1c4f9f" + ], + "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": [ + "0f4edde4-aca2-4844-8564-9dff2217437c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005241Z:0f4edde4-aca2-4844-8564-9dff2217437c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f77f09cb-c2f1-4aa7-9c5e-a03e3f1c4f9f" + ], + "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": [ + "0f4edde4-aca2-4844-8564-9dff2217437c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005241Z:0f4edde4-aca2-4844-8564-9dff2217437c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f77f09cb-c2f1-4aa7-9c5e-a03e3f1c4f9f" + ], + "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": [ + "0f4edde4-aca2-4844-8564-9dff2217437c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005241Z:0f4edde4-aca2-4844-8564-9dff2217437c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f77f09cb-c2f1-4aa7-9c5e-a03e3f1c4f9f" + ], + "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": [ + "0f4edde4-aca2-4844-8564-9dff2217437c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005241Z:0f4edde4-aca2-4844-8564-9dff2217437c" + ], + "Date": [ + "Wed, 15 Jul 2015 00:52:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a2e83e4e-000e-4472-8a3d-c33b9f8a1e67" + ], + "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": [ + "4ca54ec1-6f8f-4799-8f4b-468dc8834f32" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005311Z:4ca54ec1-6f8f-4799-8f4b-468dc8834f32" + ], + "Date": [ + "Wed, 15 Jul 2015 00:53:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a2e83e4e-000e-4472-8a3d-c33b9f8a1e67" + ], + "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": [ + "4ca54ec1-6f8f-4799-8f4b-468dc8834f32" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005311Z:4ca54ec1-6f8f-4799-8f4b-468dc8834f32" + ], + "Date": [ + "Wed, 15 Jul 2015 00:53:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a2e83e4e-000e-4472-8a3d-c33b9f8a1e67" + ], + "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": [ + "4ca54ec1-6f8f-4799-8f4b-468dc8834f32" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005311Z:4ca54ec1-6f8f-4799-8f4b-468dc8834f32" + ], + "Date": [ + "Wed, 15 Jul 2015 00:53:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a2e83e4e-000e-4472-8a3d-c33b9f8a1e67" + ], + "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": [ + "4ca54ec1-6f8f-4799-8f4b-468dc8834f32" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005311Z:4ca54ec1-6f8f-4799-8f4b-468dc8834f32" + ], + "Date": [ + "Wed, 15 Jul 2015 00:53:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ca625d02-136b-449f-930a-403cba3a7391" + ], + "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": [ + "08e65c55-0cc9-44f9-acf1-914932844357" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005342Z:08e65c55-0cc9-44f9-acf1-914932844357" + ], + "Date": [ + "Wed, 15 Jul 2015 00:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ca625d02-136b-449f-930a-403cba3a7391" + ], + "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": [ + "08e65c55-0cc9-44f9-acf1-914932844357" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005342Z:08e65c55-0cc9-44f9-acf1-914932844357" + ], + "Date": [ + "Wed, 15 Jul 2015 00:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ca625d02-136b-449f-930a-403cba3a7391" + ], + "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": [ + "08e65c55-0cc9-44f9-acf1-914932844357" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005342Z:08e65c55-0cc9-44f9-acf1-914932844357" + ], + "Date": [ + "Wed, 15 Jul 2015 00:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ca625d02-136b-449f-930a-403cba3a7391" + ], + "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": [ + "08e65c55-0cc9-44f9-acf1-914932844357" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005342Z:08e65c55-0cc9-44f9-acf1-914932844357" + ], + "Date": [ + "Wed, 15 Jul 2015 00:53:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "973fde9c-79f8-4235-abfa-b6b1577924b4" + ], + "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": [ + "9324f4bd-9f93-4720-8d52-87d9538af8f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005413Z:9324f4bd-9f93-4720-8d52-87d9538af8f0" + ], + "Date": [ + "Wed, 15 Jul 2015 00:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "973fde9c-79f8-4235-abfa-b6b1577924b4" + ], + "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": [ + "9324f4bd-9f93-4720-8d52-87d9538af8f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005413Z:9324f4bd-9f93-4720-8d52-87d9538af8f0" + ], + "Date": [ + "Wed, 15 Jul 2015 00:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "973fde9c-79f8-4235-abfa-b6b1577924b4" + ], + "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": [ + "9324f4bd-9f93-4720-8d52-87d9538af8f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005413Z:9324f4bd-9f93-4720-8d52-87d9538af8f0" + ], + "Date": [ + "Wed, 15 Jul 2015 00:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "973fde9c-79f8-4235-abfa-b6b1577924b4" + ], + "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": [ + "9324f4bd-9f93-4720-8d52-87d9538af8f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005413Z:9324f4bd-9f93-4720-8d52-87d9538af8f0" + ], + "Date": [ + "Wed, 15 Jul 2015 00:54:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7dfe006f-d3c9-4f68-805b-564681380d83" + ], + "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": [ + "37b1adca-e263-49da-8295-989fe4894a22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005444Z:37b1adca-e263-49da-8295-989fe4894a22" + ], + "Date": [ + "Wed, 15 Jul 2015 00:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7dfe006f-d3c9-4f68-805b-564681380d83" + ], + "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": [ + "37b1adca-e263-49da-8295-989fe4894a22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005444Z:37b1adca-e263-49da-8295-989fe4894a22" + ], + "Date": [ + "Wed, 15 Jul 2015 00:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7dfe006f-d3c9-4f68-805b-564681380d83" + ], + "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": [ + "37b1adca-e263-49da-8295-989fe4894a22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005444Z:37b1adca-e263-49da-8295-989fe4894a22" + ], + "Date": [ + "Wed, 15 Jul 2015 00:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7dfe006f-d3c9-4f68-805b-564681380d83" + ], + "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": [ + "37b1adca-e263-49da-8295-989fe4894a22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005444Z:37b1adca-e263-49da-8295-989fe4894a22" + ], + "Date": [ + "Wed, 15 Jul 2015 00:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\",\r\n \"endTime\": \"2015-07-14T17:54:55.6790985-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "aeb97fdd-db79-4bfa-b79f-b8ee10c1581e" + ], + "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": [ + "5c2cb63a-ab4d-4647-858a-b1208b095386" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005514Z:5c2cb63a-ab4d-4647-858a-b1208b095386" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\",\r\n \"endTime\": \"2015-07-14T17:54:55.6790985-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "aeb97fdd-db79-4bfa-b79f-b8ee10c1581e" + ], + "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": [ + "5c2cb63a-ab4d-4647-858a-b1208b095386" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005514Z:5c2cb63a-ab4d-4647-858a-b1208b095386" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\",\r\n \"endTime\": \"2015-07-14T17:54:55.6790985-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "aeb97fdd-db79-4bfa-b79f-b8ee10c1581e" + ], + "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": [ + "5c2cb63a-ab4d-4647-858a-b1208b095386" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005514Z:5c2cb63a-ab4d-4647-858a-b1208b095386" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/0b0c5225-afc4-4816-a730-414f51bdeb4a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBiMGM1MjI1LWFmYzQtNDgxNi1hNzMwLTQxNGY1MWJkZWI0YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"0b0c5225-afc4-4816-a730-414f51bdeb4a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T17:46:59.4134909-07:00\",\r\n \"endTime\": \"2015-07-14T17:54:55.6790985-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "aeb97fdd-db79-4bfa-b79f-b8ee10c1581e" + ], + "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": [ + "5c2cb63a-ab4d-4647-858a-b1208b095386" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005514Z:5c2cb63a-ab4d-4647-858a-b1208b095386" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "64aec2fc-f86b-4228-ace8-10f1a094d41a" + ], + "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": [ + "60d5bfaa-44f3-44ec-82dd-87f026805383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005515Z:60d5bfaa-44f3-44ec-82dd-87f026805383" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "64aec2fc-f86b-4228-ace8-10f1a094d41a" + ], + "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": [ + "60d5bfaa-44f3-44ec-82dd-87f026805383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005515Z:60d5bfaa-44f3-44ec-82dd-87f026805383" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "64aec2fc-f86b-4228-ace8-10f1a094d41a" + ], + "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": [ + "60d5bfaa-44f3-44ec-82dd-87f026805383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005515Z:60d5bfaa-44f3-44ec-82dd-87f026805383" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "64aec2fc-f86b-4228-ace8-10f1a094d41a" + ], + "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": [ + "60d5bfaa-44f3-44ec-82dd-87f026805383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005515Z:60d5bfaa-44f3-44ec-82dd-87f026805383" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "629c1a39-dbb8-4257-a662-ad2fc32f19eb" + ], + "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": [ + "2b5f7267-a52b-484d-a29f-b8e079c842ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005516Z:2b5f7267-a52b-484d-a29f-b8e079c842ce" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "629c1a39-dbb8-4257-a662-ad2fc32f19eb" + ], + "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": [ + "2b5f7267-a52b-484d-a29f-b8e079c842ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005516Z:2b5f7267-a52b-484d-a29f-b8e079c842ce" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "629c1a39-dbb8-4257-a662-ad2fc32f19eb" + ], + "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": [ + "2b5f7267-a52b-484d-a29f-b8e079c842ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005516Z:2b5f7267-a52b-484d-a29f-b8e079c842ce" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/availabilitySets/AS8176\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6155.blob.core.windows.net/pslibtest8698/ospslibtest9283.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Network/networkInterfaces/azsmnet1240\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003\",\r\n \"name\": \"vm2003\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "629c1a39-dbb8-4257-a662-ad2fc32f19eb" + ], + "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": [ + "2b5f7267-a52b-484d-a29f-b8e079c842ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005516Z:2b5f7267-a52b-484d-a29f-b8e079c842ce" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/VMExtensionDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy9WTUV4dGVuc2lvbkRvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "x-ms-correlation-request-id": [ + "1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005516Z:1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:16 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/VMExtensionDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy9WTUV4dGVuc2lvbkRvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "x-ms-correlation-request-id": [ + "1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005516Z:1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:16 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/VMExtensionDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy9WTUV4dGVuc2lvbkRvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "x-ms-correlation-request-id": [ + "1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005516Z:1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:16 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/VMExtensionDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy9WTUV4dGVuc2lvbkRvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "x-ms-correlation-request-id": [ + "1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005516Z:1d608125-3b8a-4bd8-971a-bd4584c9b79a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:16 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n },\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"protectedSettings\": \"{}\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "327" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f6a01686-f194-4cce-a198-d723799919e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "09c0b6f5-d4f5-4c72-970b-e39332138071" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005521Z:09c0b6f5-d4f5-4c72-970b-e39332138071" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n },\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"protectedSettings\": \"{}\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "327" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f6a01686-f194-4cce-a198-d723799919e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "09c0b6f5-d4f5-4c72-970b-e39332138071" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005521Z:09c0b6f5-d4f5-4c72-970b-e39332138071" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n },\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"protectedSettings\": \"{}\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "327" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f6a01686-f194-4cce-a198-d723799919e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "09c0b6f5-d4f5-4c72-970b-e39332138071" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005521Z:09c0b6f5-d4f5-4c72-970b-e39332138071" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n },\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"protectedSettings\": \"{}\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "327" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f6a01686-f194-4cce-a198-d723799919e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "09c0b6f5-d4f5-4c72-970b-e39332138071" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005521Z:09c0b6f5-d4f5-4c72-970b-e39332138071" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4b53fe3e-64c6-4a3f-be9a-ac2846c8af77" + ], + "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": [ + "f9a0db73-4f61-4e0b-9f3a-12a4d6aec2c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005552Z:f9a0db73-4f61-4e0b-9f3a-12a4d6aec2c0" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4b53fe3e-64c6-4a3f-be9a-ac2846c8af77" + ], + "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": [ + "f9a0db73-4f61-4e0b-9f3a-12a4d6aec2c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005552Z:f9a0db73-4f61-4e0b-9f3a-12a4d6aec2c0" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4b53fe3e-64c6-4a3f-be9a-ac2846c8af77" + ], + "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": [ + "f9a0db73-4f61-4e0b-9f3a-12a4d6aec2c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005552Z:f9a0db73-4f61-4e0b-9f3a-12a4d6aec2c0" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4b53fe3e-64c6-4a3f-be9a-ac2846c8af77" + ], + "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": [ + "f9a0db73-4f61-4e0b-9f3a-12a4d6aec2c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005552Z:f9a0db73-4f61-4e0b-9f3a-12a4d6aec2c0" + ], + "Date": [ + "Wed, 15 Jul 2015 00:55:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c9eb6e7-8755-4ea1-878b-66742b054a7d" + ], + "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": [ + "dd1910ce-4ed7-428b-874f-eac2918f0c71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005623Z:dd1910ce-4ed7-428b-874f-eac2918f0c71" + ], + "Date": [ + "Wed, 15 Jul 2015 00:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c9eb6e7-8755-4ea1-878b-66742b054a7d" + ], + "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": [ + "dd1910ce-4ed7-428b-874f-eac2918f0c71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005623Z:dd1910ce-4ed7-428b-874f-eac2918f0c71" + ], + "Date": [ + "Wed, 15 Jul 2015 00:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c9eb6e7-8755-4ea1-878b-66742b054a7d" + ], + "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": [ + "dd1910ce-4ed7-428b-874f-eac2918f0c71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005623Z:dd1910ce-4ed7-428b-874f-eac2918f0c71" + ], + "Date": [ + "Wed, 15 Jul 2015 00:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c9eb6e7-8755-4ea1-878b-66742b054a7d" + ], + "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": [ + "dd1910ce-4ed7-428b-874f-eac2918f0c71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005623Z:dd1910ce-4ed7-428b-874f-eac2918f0c71" + ], + "Date": [ + "Wed, 15 Jul 2015 00:56:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "71c084dc-b0e0-4e45-a054-a371d0fe94d5" + ], + "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": [ + "25780cfa-08df-48a2-91e0-9bab59813b61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005653Z:25780cfa-08df-48a2-91e0-9bab59813b61" + ], + "Date": [ + "Wed, 15 Jul 2015 00:56:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "71c084dc-b0e0-4e45-a054-a371d0fe94d5" + ], + "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": [ + "25780cfa-08df-48a2-91e0-9bab59813b61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005653Z:25780cfa-08df-48a2-91e0-9bab59813b61" + ], + "Date": [ + "Wed, 15 Jul 2015 00:56:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "71c084dc-b0e0-4e45-a054-a371d0fe94d5" + ], + "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": [ + "25780cfa-08df-48a2-91e0-9bab59813b61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005653Z:25780cfa-08df-48a2-91e0-9bab59813b61" + ], + "Date": [ + "Wed, 15 Jul 2015 00:56:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "71c084dc-b0e0-4e45-a054-a371d0fe94d5" + ], + "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": [ + "25780cfa-08df-48a2-91e0-9bab59813b61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005653Z:25780cfa-08df-48a2-91e0-9bab59813b61" + ], + "Date": [ + "Wed, 15 Jul 2015 00:56:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bb5630ba-f784-470d-b6a8-602da8d33962" + ], + "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": [ + "fe2c7968-ef09-44fe-a0b1-d09080de9393" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005724Z:fe2c7968-ef09-44fe-a0b1-d09080de9393" + ], + "Date": [ + "Wed, 15 Jul 2015 00:57:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bb5630ba-f784-470d-b6a8-602da8d33962" + ], + "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": [ + "fe2c7968-ef09-44fe-a0b1-d09080de9393" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005724Z:fe2c7968-ef09-44fe-a0b1-d09080de9393" + ], + "Date": [ + "Wed, 15 Jul 2015 00:57:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bb5630ba-f784-470d-b6a8-602da8d33962" + ], + "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": [ + "fe2c7968-ef09-44fe-a0b1-d09080de9393" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005724Z:fe2c7968-ef09-44fe-a0b1-d09080de9393" + ], + "Date": [ + "Wed, 15 Jul 2015 00:57:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bb5630ba-f784-470d-b6a8-602da8d33962" + ], + "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": [ + "fe2c7968-ef09-44fe-a0b1-d09080de9393" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005724Z:fe2c7968-ef09-44fe-a0b1-d09080de9393" + ], + "Date": [ + "Wed, 15 Jul 2015 00:57:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cdb39317-cf8c-4143-83f8-89c7e9801ab8" + ], + "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": [ + "4ec0b48a-edf5-460d-ad33-be3c6bbb34c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005755Z:4ec0b48a-edf5-460d-ad33-be3c6bbb34c3" + ], + "Date": [ + "Wed, 15 Jul 2015 00:57:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cdb39317-cf8c-4143-83f8-89c7e9801ab8" + ], + "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": [ + "4ec0b48a-edf5-460d-ad33-be3c6bbb34c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005755Z:4ec0b48a-edf5-460d-ad33-be3c6bbb34c3" + ], + "Date": [ + "Wed, 15 Jul 2015 00:57:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cdb39317-cf8c-4143-83f8-89c7e9801ab8" + ], + "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": [ + "4ec0b48a-edf5-460d-ad33-be3c6bbb34c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005755Z:4ec0b48a-edf5-460d-ad33-be3c6bbb34c3" + ], + "Date": [ + "Wed, 15 Jul 2015 00:57:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cdb39317-cf8c-4143-83f8-89c7e9801ab8" + ], + "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": [ + "4ec0b48a-edf5-460d-ad33-be3c6bbb34c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005755Z:4ec0b48a-edf5-460d-ad33-be3c6bbb34c3" + ], + "Date": [ + "Wed, 15 Jul 2015 00:57:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7556e093-32e8-4167-baae-ae1248b57f39" + ], + "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": [ + "198db6d4-4ed3-4889-bce6-cf1c50a6140f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005826Z:198db6d4-4ed3-4889-bce6-cf1c50a6140f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:58:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7556e093-32e8-4167-baae-ae1248b57f39" + ], + "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": [ + "198db6d4-4ed3-4889-bce6-cf1c50a6140f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005826Z:198db6d4-4ed3-4889-bce6-cf1c50a6140f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:58:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7556e093-32e8-4167-baae-ae1248b57f39" + ], + "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": [ + "198db6d4-4ed3-4889-bce6-cf1c50a6140f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005826Z:198db6d4-4ed3-4889-bce6-cf1c50a6140f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:58:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7556e093-32e8-4167-baae-ae1248b57f39" + ], + "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": [ + "198db6d4-4ed3-4889-bce6-cf1c50a6140f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005826Z:198db6d4-4ed3-4889-bce6-cf1c50a6140f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:58:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6d0dc17b-6b10-4709-80b8-0c992671c871" + ], + "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": [ + "1e90bc0c-f9b5-4f93-a4d8-c4286bdb4681" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005856Z:1e90bc0c-f9b5-4f93-a4d8-c4286bdb4681" + ], + "Date": [ + "Wed, 15 Jul 2015 00:58:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6d0dc17b-6b10-4709-80b8-0c992671c871" + ], + "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": [ + "1e90bc0c-f9b5-4f93-a4d8-c4286bdb4681" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005856Z:1e90bc0c-f9b5-4f93-a4d8-c4286bdb4681" + ], + "Date": [ + "Wed, 15 Jul 2015 00:58:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6d0dc17b-6b10-4709-80b8-0c992671c871" + ], + "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": [ + "1e90bc0c-f9b5-4f93-a4d8-c4286bdb4681" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005856Z:1e90bc0c-f9b5-4f93-a4d8-c4286bdb4681" + ], + "Date": [ + "Wed, 15 Jul 2015 00:58:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6d0dc17b-6b10-4709-80b8-0c992671c871" + ], + "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": [ + "1e90bc0c-f9b5-4f93-a4d8-c4286bdb4681" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005856Z:1e90bc0c-f9b5-4f93-a4d8-c4286bdb4681" + ], + "Date": [ + "Wed, 15 Jul 2015 00:58:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "31e74174-469c-4b2d-850a-cd41c1c1c8ca" + ], + "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": [ + "ed453371-cf9e-456f-8285-4b29e3d39a11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005927Z:ed453371-cf9e-456f-8285-4b29e3d39a11" + ], + "Date": [ + "Wed, 15 Jul 2015 00:59:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "31e74174-469c-4b2d-850a-cd41c1c1c8ca" + ], + "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": [ + "ed453371-cf9e-456f-8285-4b29e3d39a11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005927Z:ed453371-cf9e-456f-8285-4b29e3d39a11" + ], + "Date": [ + "Wed, 15 Jul 2015 00:59:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "31e74174-469c-4b2d-850a-cd41c1c1c8ca" + ], + "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": [ + "ed453371-cf9e-456f-8285-4b29e3d39a11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005927Z:ed453371-cf9e-456f-8285-4b29e3d39a11" + ], + "Date": [ + "Wed, 15 Jul 2015 00:59:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "31e74174-469c-4b2d-850a-cd41c1c1c8ca" + ], + "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": [ + "ed453371-cf9e-456f-8285-4b29e3d39a11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005927Z:ed453371-cf9e-456f-8285-4b29e3d39a11" + ], + "Date": [ + "Wed, 15 Jul 2015 00:59:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "afc05450-149d-4082-85e1-6d99431be458" + ], + "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": [ + "83aa82ae-3e31-477b-95ba-e8d177839467" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005957Z:83aa82ae-3e31-477b-95ba-e8d177839467" + ], + "Date": [ + "Wed, 15 Jul 2015 00:59:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "afc05450-149d-4082-85e1-6d99431be458" + ], + "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": [ + "83aa82ae-3e31-477b-95ba-e8d177839467" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005957Z:83aa82ae-3e31-477b-95ba-e8d177839467" + ], + "Date": [ + "Wed, 15 Jul 2015 00:59:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "afc05450-149d-4082-85e1-6d99431be458" + ], + "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": [ + "83aa82ae-3e31-477b-95ba-e8d177839467" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005957Z:83aa82ae-3e31-477b-95ba-e8d177839467" + ], + "Date": [ + "Wed, 15 Jul 2015 00:59:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "afc05450-149d-4082-85e1-6d99431be458" + ], + "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": [ + "83aa82ae-3e31-477b-95ba-e8d177839467" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T005957Z:83aa82ae-3e31-477b-95ba-e8d177839467" + ], + "Date": [ + "Wed, 15 Jul 2015 00:59:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c400fde-a2d6-4281-8a69-2d434c485c25" + ], + "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": [ + "e37b687e-ca70-43a1-8d08-f81cbb3e6421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010028Z:e37b687e-ca70-43a1-8d08-f81cbb3e6421" + ], + "Date": [ + "Wed, 15 Jul 2015 01:00:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c400fde-a2d6-4281-8a69-2d434c485c25" + ], + "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": [ + "e37b687e-ca70-43a1-8d08-f81cbb3e6421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010028Z:e37b687e-ca70-43a1-8d08-f81cbb3e6421" + ], + "Date": [ + "Wed, 15 Jul 2015 01:00:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c400fde-a2d6-4281-8a69-2d434c485c25" + ], + "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": [ + "e37b687e-ca70-43a1-8d08-f81cbb3e6421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010028Z:e37b687e-ca70-43a1-8d08-f81cbb3e6421" + ], + "Date": [ + "Wed, 15 Jul 2015 01:00:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c400fde-a2d6-4281-8a69-2d434c485c25" + ], + "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": [ + "e37b687e-ca70-43a1-8d08-f81cbb3e6421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010028Z:e37b687e-ca70-43a1-8d08-f81cbb3e6421" + ], + "Date": [ + "Wed, 15 Jul 2015 01:00:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c840399a-6815-43a2-8d5d-b31083cde660" + ], + "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": [ + "1826bd03-5d35-4244-a320-8266dae3b51a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010059Z:1826bd03-5d35-4244-a320-8266dae3b51a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:00:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c840399a-6815-43a2-8d5d-b31083cde660" + ], + "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": [ + "1826bd03-5d35-4244-a320-8266dae3b51a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010059Z:1826bd03-5d35-4244-a320-8266dae3b51a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:00:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c840399a-6815-43a2-8d5d-b31083cde660" + ], + "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": [ + "1826bd03-5d35-4244-a320-8266dae3b51a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010059Z:1826bd03-5d35-4244-a320-8266dae3b51a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:00:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c840399a-6815-43a2-8d5d-b31083cde660" + ], + "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": [ + "1826bd03-5d35-4244-a320-8266dae3b51a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010059Z:1826bd03-5d35-4244-a320-8266dae3b51a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:00:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "48ed969d-2b2b-45e6-87b1-062b9e407229" + ], + "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": [ + "1a02ae31-5292-48f1-9d96-4056f4d4041b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010130Z:1a02ae31-5292-48f1-9d96-4056f4d4041b" + ], + "Date": [ + "Wed, 15 Jul 2015 01:01:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "48ed969d-2b2b-45e6-87b1-062b9e407229" + ], + "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": [ + "1a02ae31-5292-48f1-9d96-4056f4d4041b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010130Z:1a02ae31-5292-48f1-9d96-4056f4d4041b" + ], + "Date": [ + "Wed, 15 Jul 2015 01:01:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "48ed969d-2b2b-45e6-87b1-062b9e407229" + ], + "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": [ + "1a02ae31-5292-48f1-9d96-4056f4d4041b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010130Z:1a02ae31-5292-48f1-9d96-4056f4d4041b" + ], + "Date": [ + "Wed, 15 Jul 2015 01:01:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "48ed969d-2b2b-45e6-87b1-062b9e407229" + ], + "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": [ + "1a02ae31-5292-48f1-9d96-4056f4d4041b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010130Z:1a02ae31-5292-48f1-9d96-4056f4d4041b" + ], + "Date": [ + "Wed, 15 Jul 2015 01:01:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fb0a3dbd-94a1-4a14-9126-a2754d6a2148" + ], + "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": [ + "6ff4c159-feb0-4bf2-ab8e-fc1e37e4ca9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010201Z:6ff4c159-feb0-4bf2-ab8e-fc1e37e4ca9c" + ], + "Date": [ + "Wed, 15 Jul 2015 01:02:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fb0a3dbd-94a1-4a14-9126-a2754d6a2148" + ], + "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": [ + "6ff4c159-feb0-4bf2-ab8e-fc1e37e4ca9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010201Z:6ff4c159-feb0-4bf2-ab8e-fc1e37e4ca9c" + ], + "Date": [ + "Wed, 15 Jul 2015 01:02:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fb0a3dbd-94a1-4a14-9126-a2754d6a2148" + ], + "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": [ + "6ff4c159-feb0-4bf2-ab8e-fc1e37e4ca9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010201Z:6ff4c159-feb0-4bf2-ab8e-fc1e37e4ca9c" + ], + "Date": [ + "Wed, 15 Jul 2015 01:02:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fb0a3dbd-94a1-4a14-9126-a2754d6a2148" + ], + "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": [ + "6ff4c159-feb0-4bf2-ab8e-fc1e37e4ca9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010201Z:6ff4c159-feb0-4bf2-ab8e-fc1e37e4ca9c" + ], + "Date": [ + "Wed, 15 Jul 2015 01:02:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "474e121f-07ae-403e-aaa8-3767da0ea560" + ], + "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": [ + "985ac925-1685-4581-9652-c6eefd120397" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010231Z:985ac925-1685-4581-9652-c6eefd120397" + ], + "Date": [ + "Wed, 15 Jul 2015 01:02:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "474e121f-07ae-403e-aaa8-3767da0ea560" + ], + "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": [ + "985ac925-1685-4581-9652-c6eefd120397" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010231Z:985ac925-1685-4581-9652-c6eefd120397" + ], + "Date": [ + "Wed, 15 Jul 2015 01:02:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "474e121f-07ae-403e-aaa8-3767da0ea560" + ], + "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": [ + "985ac925-1685-4581-9652-c6eefd120397" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010231Z:985ac925-1685-4581-9652-c6eefd120397" + ], + "Date": [ + "Wed, 15 Jul 2015 01:02:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "474e121f-07ae-403e-aaa8-3767da0ea560" + ], + "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": [ + "985ac925-1685-4581-9652-c6eefd120397" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010231Z:985ac925-1685-4581-9652-c6eefd120397" + ], + "Date": [ + "Wed, 15 Jul 2015 01:02:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0a38953b-e297-4f7b-aa93-731cc632196d" + ], + "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": [ + "c96f58e0-f82b-46bc-b5f0-7cba8b1fabfe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010302Z:c96f58e0-f82b-46bc-b5f0-7cba8b1fabfe" + ], + "Date": [ + "Wed, 15 Jul 2015 01:03:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0a38953b-e297-4f7b-aa93-731cc632196d" + ], + "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": [ + "c96f58e0-f82b-46bc-b5f0-7cba8b1fabfe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010302Z:c96f58e0-f82b-46bc-b5f0-7cba8b1fabfe" + ], + "Date": [ + "Wed, 15 Jul 2015 01:03:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0a38953b-e297-4f7b-aa93-731cc632196d" + ], + "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": [ + "c96f58e0-f82b-46bc-b5f0-7cba8b1fabfe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010302Z:c96f58e0-f82b-46bc-b5f0-7cba8b1fabfe" + ], + "Date": [ + "Wed, 15 Jul 2015 01:03:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0a38953b-e297-4f7b-aa93-731cc632196d" + ], + "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": [ + "c96f58e0-f82b-46bc-b5f0-7cba8b1fabfe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010302Z:c96f58e0-f82b-46bc-b5f0-7cba8b1fabfe" + ], + "Date": [ + "Wed, 15 Jul 2015 01:03:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bcce94a2-b484-41d7-93f8-f930ee3be981" + ], + "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": [ + "c6312644-5d72-4799-ab7d-52896a405e38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010333Z:c6312644-5d72-4799-ab7d-52896a405e38" + ], + "Date": [ + "Wed, 15 Jul 2015 01:03:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bcce94a2-b484-41d7-93f8-f930ee3be981" + ], + "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": [ + "c6312644-5d72-4799-ab7d-52896a405e38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010333Z:c6312644-5d72-4799-ab7d-52896a405e38" + ], + "Date": [ + "Wed, 15 Jul 2015 01:03:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bcce94a2-b484-41d7-93f8-f930ee3be981" + ], + "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": [ + "c6312644-5d72-4799-ab7d-52896a405e38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010333Z:c6312644-5d72-4799-ab7d-52896a405e38" + ], + "Date": [ + "Wed, 15 Jul 2015 01:03:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bcce94a2-b484-41d7-93f8-f930ee3be981" + ], + "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": [ + "c6312644-5d72-4799-ab7d-52896a405e38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010333Z:c6312644-5d72-4799-ab7d-52896a405e38" + ], + "Date": [ + "Wed, 15 Jul 2015 01:03:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "355dbda8-9fb8-430f-855e-1ad6fdd8bed0" + ], + "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": [ + "a31fa557-160c-4f4d-91b4-cd347d960650" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010404Z:a31fa557-160c-4f4d-91b4-cd347d960650" + ], + "Date": [ + "Wed, 15 Jul 2015 01:04:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "355dbda8-9fb8-430f-855e-1ad6fdd8bed0" + ], + "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": [ + "a31fa557-160c-4f4d-91b4-cd347d960650" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010404Z:a31fa557-160c-4f4d-91b4-cd347d960650" + ], + "Date": [ + "Wed, 15 Jul 2015 01:04:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "355dbda8-9fb8-430f-855e-1ad6fdd8bed0" + ], + "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": [ + "a31fa557-160c-4f4d-91b4-cd347d960650" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010404Z:a31fa557-160c-4f4d-91b4-cd347d960650" + ], + "Date": [ + "Wed, 15 Jul 2015 01:04:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "355dbda8-9fb8-430f-855e-1ad6fdd8bed0" + ], + "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": [ + "a31fa557-160c-4f4d-91b4-cd347d960650" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010404Z:a31fa557-160c-4f4d-91b4-cd347d960650" + ], + "Date": [ + "Wed, 15 Jul 2015 01:04:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f68f741a-c1c0-4ab6-b0d0-2100fe666b0a" + ], + "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": [ + "3805472e-3ec2-45be-9018-f7bdc3aed152" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010434Z:3805472e-3ec2-45be-9018-f7bdc3aed152" + ], + "Date": [ + "Wed, 15 Jul 2015 01:04:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f68f741a-c1c0-4ab6-b0d0-2100fe666b0a" + ], + "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": [ + "3805472e-3ec2-45be-9018-f7bdc3aed152" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010434Z:3805472e-3ec2-45be-9018-f7bdc3aed152" + ], + "Date": [ + "Wed, 15 Jul 2015 01:04:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f68f741a-c1c0-4ab6-b0d0-2100fe666b0a" + ], + "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": [ + "3805472e-3ec2-45be-9018-f7bdc3aed152" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010434Z:3805472e-3ec2-45be-9018-f7bdc3aed152" + ], + "Date": [ + "Wed, 15 Jul 2015 01:04:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f68f741a-c1c0-4ab6-b0d0-2100fe666b0a" + ], + "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": [ + "3805472e-3ec2-45be-9018-f7bdc3aed152" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010434Z:3805472e-3ec2-45be-9018-f7bdc3aed152" + ], + "Date": [ + "Wed, 15 Jul 2015 01:04:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e8a2b91f-d291-450d-8702-ba51a70f5076" + ], + "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": [ + "60f999a1-39f3-4b95-9c89-3af1c2189f3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010505Z:60f999a1-39f3-4b95-9c89-3af1c2189f3e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e8a2b91f-d291-450d-8702-ba51a70f5076" + ], + "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": [ + "60f999a1-39f3-4b95-9c89-3af1c2189f3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010505Z:60f999a1-39f3-4b95-9c89-3af1c2189f3e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e8a2b91f-d291-450d-8702-ba51a70f5076" + ], + "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": [ + "60f999a1-39f3-4b95-9c89-3af1c2189f3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010505Z:60f999a1-39f3-4b95-9c89-3af1c2189f3e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e8a2b91f-d291-450d-8702-ba51a70f5076" + ], + "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": [ + "60f999a1-39f3-4b95-9c89-3af1c2189f3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010505Z:60f999a1-39f3-4b95-9c89-3af1c2189f3e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\",\r\n \"endTime\": \"2015-07-14T18:05:28.6478667-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "14613a16-209a-4fbc-b735-2551f1a1909a" + ], + "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": [ + "29a6d7d7-6e36-4001-8c2c-e4ba407b7456" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010536Z:29a6d7d7-6e36-4001-8c2c-e4ba407b7456" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\",\r\n \"endTime\": \"2015-07-14T18:05:28.6478667-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "14613a16-209a-4fbc-b735-2551f1a1909a" + ], + "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": [ + "29a6d7d7-6e36-4001-8c2c-e4ba407b7456" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010536Z:29a6d7d7-6e36-4001-8c2c-e4ba407b7456" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\",\r\n \"endTime\": \"2015-07-14T18:05:28.6478667-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "14613a16-209a-4fbc-b735-2551f1a1909a" + ], + "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": [ + "29a6d7d7-6e36-4001-8c2c-e4ba407b7456" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010536Z:29a6d7d7-6e36-4001-8c2c-e4ba407b7456" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f6a01686-f194-4cce-a198-d723799919e0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2YTAxNjg2LWYxOTQtNGNjZS1hMTk4LWQ3MjM3OTk5MTllMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f6a01686-f194-4cce-a198-d723799919e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T17:55:19.1009468-07:00\",\r\n \"endTime\": \"2015-07-14T18:05:28.6478667-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "14613a16-209a-4fbc-b735-2551f1a1909a" + ], + "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": [ + "29a6d7d7-6e36-4001-8c2c-e4ba407b7456" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010536Z:29a6d7d7-6e36-4001-8c2c-e4ba407b7456" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2b1048fc-3b75-4e10-a5c0-bf04a1891c4b" + ], + "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": [ + "2f2b8c80-bfe9-4f1c-95c5-a1f47ea3a303" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010537Z:2f2b8c80-bfe9-4f1c-95c5-a1f47ea3a303" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2b1048fc-3b75-4e10-a5c0-bf04a1891c4b" + ], + "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": [ + "2f2b8c80-bfe9-4f1c-95c5-a1f47ea3a303" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010537Z:2f2b8c80-bfe9-4f1c-95c5-a1f47ea3a303" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2b1048fc-3b75-4e10-a5c0-bf04a1891c4b" + ], + "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": [ + "2f2b8c80-bfe9-4f1c-95c5-a1f47ea3a303" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010537Z:2f2b8c80-bfe9-4f1c-95c5-a1f47ea3a303" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE4NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIwMDMvZXh0ZW5zaW9ucy92bWV4dDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"{}\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1857/providers/Microsoft.Compute/virtualMachines/vm2003/extensions/vmext01\",\r\n \"name\": \"vmext01\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2b1048fc-3b75-4e10-a5c0-bf04a1891c4b" + ], + "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": [ + "2f2b8c80-bfe9-4f1c-95c5-a1f47ea3a303" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010537Z:2f2b8c80-bfe9-4f1c-95c5-a1f47ea3a303" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "x-ms-correlation-request-id": [ + "c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010541Z:c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "x-ms-correlation-request-id": [ + "c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010541Z:c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "x-ms-correlation-request-id": [ + "c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010541Z:c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1857?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE4NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "x-ms-correlation-request-id": [ + "c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010541Z:c3eebfab-11ef-4b17-8a63-ce492091a4a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14948" + ], + "x-ms-request-id": [ + "048f5f67-3514-441e-831b-0ab614383656" + ], + "x-ms-correlation-request-id": [ + "048f5f67-3514-441e-831b-0ab614383656" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010556Z:048f5f67-3514-441e-831b-0ab614383656" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14948" + ], + "x-ms-request-id": [ + "048f5f67-3514-441e-831b-0ab614383656" + ], + "x-ms-correlation-request-id": [ + "048f5f67-3514-441e-831b-0ab614383656" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010556Z:048f5f67-3514-441e-831b-0ab614383656" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14948" + ], + "x-ms-request-id": [ + "048f5f67-3514-441e-831b-0ab614383656" + ], + "x-ms-correlation-request-id": [ + "048f5f67-3514-441e-831b-0ab614383656" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010556Z:048f5f67-3514-441e-831b-0ab614383656" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14948" + ], + "x-ms-request-id": [ + "048f5f67-3514-441e-831b-0ab614383656" + ], + "x-ms-correlation-request-id": [ + "048f5f67-3514-441e-831b-0ab614383656" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010556Z:048f5f67-3514-441e-831b-0ab614383656" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:05:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14947" + ], + "x-ms-request-id": [ + "4ac9827b-f107-4812-be66-79bd08730140" + ], + "x-ms-correlation-request-id": [ + "4ac9827b-f107-4812-be66-79bd08730140" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010612Z:4ac9827b-f107-4812-be66-79bd08730140" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14947" + ], + "x-ms-request-id": [ + "4ac9827b-f107-4812-be66-79bd08730140" + ], + "x-ms-correlation-request-id": [ + "4ac9827b-f107-4812-be66-79bd08730140" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010612Z:4ac9827b-f107-4812-be66-79bd08730140" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14947" + ], + "x-ms-request-id": [ + "4ac9827b-f107-4812-be66-79bd08730140" + ], + "x-ms-correlation-request-id": [ + "4ac9827b-f107-4812-be66-79bd08730140" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010612Z:4ac9827b-f107-4812-be66-79bd08730140" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14947" + ], + "x-ms-request-id": [ + "4ac9827b-f107-4812-be66-79bd08730140" + ], + "x-ms-correlation-request-id": [ + "4ac9827b-f107-4812-be66-79bd08730140" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010612Z:4ac9827b-f107-4812-be66-79bd08730140" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14946" + ], + "x-ms-request-id": [ + "c633dccd-5803-46e5-b171-52b549353d02" + ], + "x-ms-correlation-request-id": [ + "c633dccd-5803-46e5-b171-52b549353d02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010627Z:c633dccd-5803-46e5-b171-52b549353d02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14946" + ], + "x-ms-request-id": [ + "c633dccd-5803-46e5-b171-52b549353d02" + ], + "x-ms-correlation-request-id": [ + "c633dccd-5803-46e5-b171-52b549353d02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010627Z:c633dccd-5803-46e5-b171-52b549353d02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14946" + ], + "x-ms-request-id": [ + "c633dccd-5803-46e5-b171-52b549353d02" + ], + "x-ms-correlation-request-id": [ + "c633dccd-5803-46e5-b171-52b549353d02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010627Z:c633dccd-5803-46e5-b171-52b549353d02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14946" + ], + "x-ms-request-id": [ + "c633dccd-5803-46e5-b171-52b549353d02" + ], + "x-ms-correlation-request-id": [ + "c633dccd-5803-46e5-b171-52b549353d02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010627Z:c633dccd-5803-46e5-b171-52b549353d02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14945" + ], + "x-ms-request-id": [ + "e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "x-ms-correlation-request-id": [ + "e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010643Z:e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14945" + ], + "x-ms-request-id": [ + "e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "x-ms-correlation-request-id": [ + "e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010643Z:e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14945" + ], + "x-ms-request-id": [ + "e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "x-ms-correlation-request-id": [ + "e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010643Z:e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14945" + ], + "x-ms-request-id": [ + "e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "x-ms-correlation-request-id": [ + "e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010643Z:e2a94eeb-5a0b-42ff-94e7-4f56991ab610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14944" + ], + "x-ms-request-id": [ + "54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "x-ms-correlation-request-id": [ + "54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010658Z:54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14944" + ], + "x-ms-request-id": [ + "54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "x-ms-correlation-request-id": [ + "54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010658Z:54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14944" + ], + "x-ms-request-id": [ + "54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "x-ms-correlation-request-id": [ + "54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010658Z:54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14944" + ], + "x-ms-request-id": [ + "54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "x-ms-correlation-request-id": [ + "54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010658Z:54f96272-5368-42af-bbaa-5bec3c540fde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:06:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14943" + ], + "x-ms-request-id": [ + "e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "x-ms-correlation-request-id": [ + "e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010714Z:e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14943" + ], + "x-ms-request-id": [ + "e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "x-ms-correlation-request-id": [ + "e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010714Z:e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14943" + ], + "x-ms-request-id": [ + "e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "x-ms-correlation-request-id": [ + "e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010714Z:e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14943" + ], + "x-ms-request-id": [ + "e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "x-ms-correlation-request-id": [ + "e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010714Z:e97d97fc-2557-4306-a2c9-c6025a71e675" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14942" + ], + "x-ms-request-id": [ + "d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "x-ms-correlation-request-id": [ + "d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010729Z:d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14942" + ], + "x-ms-request-id": [ + "d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "x-ms-correlation-request-id": [ + "d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010729Z:d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14942" + ], + "x-ms-request-id": [ + "d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "x-ms-correlation-request-id": [ + "d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010729Z:d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14942" + ], + "x-ms-request-id": [ + "d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "x-ms-correlation-request-id": [ + "d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010729Z:d38d7ba0-15ed-45de-afbf-0cd12731de0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14941" + ], + "x-ms-request-id": [ + "e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "x-ms-correlation-request-id": [ + "e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010745Z:e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14941" + ], + "x-ms-request-id": [ + "e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "x-ms-correlation-request-id": [ + "e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010745Z:e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14941" + ], + "x-ms-request-id": [ + "e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "x-ms-correlation-request-id": [ + "e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010745Z:e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14941" + ], + "x-ms-request-id": [ + "e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "x-ms-correlation-request-id": [ + "e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010745Z:e40f54fb-646e-468c-b1b1-289a7c0d70a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14940" + ], + "x-ms-request-id": [ + "7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "x-ms-correlation-request-id": [ + "7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010800Z:7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14940" + ], + "x-ms-request-id": [ + "7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "x-ms-correlation-request-id": [ + "7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010800Z:7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14940" + ], + "x-ms-request-id": [ + "7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "x-ms-correlation-request-id": [ + "7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010800Z:7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14940" + ], + "x-ms-request-id": [ + "7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "x-ms-correlation-request-id": [ + "7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010800Z:7228afe9-7837-4a6a-88ee-777e57df3ccd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:07:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14939" + ], + "x-ms-request-id": [ + "c062f299-690b-4c0f-8141-463d3237422d" + ], + "x-ms-correlation-request-id": [ + "c062f299-690b-4c0f-8141-463d3237422d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010815Z:c062f299-690b-4c0f-8141-463d3237422d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14939" + ], + "x-ms-request-id": [ + "c062f299-690b-4c0f-8141-463d3237422d" + ], + "x-ms-correlation-request-id": [ + "c062f299-690b-4c0f-8141-463d3237422d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010815Z:c062f299-690b-4c0f-8141-463d3237422d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14939" + ], + "x-ms-request-id": [ + "c062f299-690b-4c0f-8141-463d3237422d" + ], + "x-ms-correlation-request-id": [ + "c062f299-690b-4c0f-8141-463d3237422d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010815Z:c062f299-690b-4c0f-8141-463d3237422d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14939" + ], + "x-ms-request-id": [ + "c062f299-690b-4c0f-8141-463d3237422d" + ], + "x-ms-correlation-request-id": [ + "c062f299-690b-4c0f-8141-463d3237422d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010815Z:c062f299-690b-4c0f-8141-463d3237422d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14938" + ], + "x-ms-request-id": [ + "d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "x-ms-correlation-request-id": [ + "d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010831Z:d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14938" + ], + "x-ms-request-id": [ + "d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "x-ms-correlation-request-id": [ + "d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010831Z:d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14938" + ], + "x-ms-request-id": [ + "d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "x-ms-correlation-request-id": [ + "d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010831Z:d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14938" + ], + "x-ms-request-id": [ + "d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "x-ms-correlation-request-id": [ + "d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010831Z:d8fc4e56-1106-49b2-9876-c8e287d014c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14937" + ], + "x-ms-request-id": [ + "c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "x-ms-correlation-request-id": [ + "c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010846Z:c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14937" + ], + "x-ms-request-id": [ + "c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "x-ms-correlation-request-id": [ + "c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010846Z:c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14937" + ], + "x-ms-request-id": [ + "c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "x-ms-correlation-request-id": [ + "c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010846Z:c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14937" + ], + "x-ms-request-id": [ + "c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "x-ms-correlation-request-id": [ + "c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010846Z:c190eb0e-7f1a-406b-8153-e03eef308796" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:08:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14936" + ], + "x-ms-request-id": [ + "4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "x-ms-correlation-request-id": [ + "4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010902Z:4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14936" + ], + "x-ms-request-id": [ + "4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "x-ms-correlation-request-id": [ + "4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010902Z:4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14936" + ], + "x-ms-request-id": [ + "4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "x-ms-correlation-request-id": [ + "4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010902Z:4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14936" + ], + "x-ms-request-id": [ + "4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "x-ms-correlation-request-id": [ + "4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010902Z:4c49357e-465a-42bd-a7e8-0e86c5529ff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14935" + ], + "x-ms-request-id": [ + "52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "x-ms-correlation-request-id": [ + "52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010917Z:52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14935" + ], + "x-ms-request-id": [ + "52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "x-ms-correlation-request-id": [ + "52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010917Z:52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14935" + ], + "x-ms-request-id": [ + "52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "x-ms-correlation-request-id": [ + "52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010917Z:52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14935" + ], + "x-ms-request-id": [ + "52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "x-ms-correlation-request-id": [ + "52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010917Z:52ce95be-a5c8-4769-88f5-0eb49c9555d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14934" + ], + "x-ms-request-id": [ + "c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "x-ms-correlation-request-id": [ + "c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010933Z:c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14934" + ], + "x-ms-request-id": [ + "c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "x-ms-correlation-request-id": [ + "c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010933Z:c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14934" + ], + "x-ms-request-id": [ + "c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "x-ms-correlation-request-id": [ + "c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010933Z:c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14934" + ], + "x-ms-request-id": [ + "c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "x-ms-correlation-request-id": [ + "c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010933Z:c2d2fe4d-efbe-4758-9427-932d70fca20b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14933" + ], + "x-ms-request-id": [ + "f8d84e13-51b6-4063-8367-911241d0705a" + ], + "x-ms-correlation-request-id": [ + "f8d84e13-51b6-4063-8367-911241d0705a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010948Z:f8d84e13-51b6-4063-8367-911241d0705a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14933" + ], + "x-ms-request-id": [ + "f8d84e13-51b6-4063-8367-911241d0705a" + ], + "x-ms-correlation-request-id": [ + "f8d84e13-51b6-4063-8367-911241d0705a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010948Z:f8d84e13-51b6-4063-8367-911241d0705a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14933" + ], + "x-ms-request-id": [ + "f8d84e13-51b6-4063-8367-911241d0705a" + ], + "x-ms-correlation-request-id": [ + "f8d84e13-51b6-4063-8367-911241d0705a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010948Z:f8d84e13-51b6-4063-8367-911241d0705a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14933" + ], + "x-ms-request-id": [ + "f8d84e13-51b6-4063-8367-911241d0705a" + ], + "x-ms-correlation-request-id": [ + "f8d84e13-51b6-4063-8367-911241d0705a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T010948Z:f8d84e13-51b6-4063-8367-911241d0705a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:09:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14932" + ], + "x-ms-request-id": [ + "589488ef-4b9d-49db-9467-258efd100bf8" + ], + "x-ms-correlation-request-id": [ + "589488ef-4b9d-49db-9467-258efd100bf8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011004Z:589488ef-4b9d-49db-9467-258efd100bf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14932" + ], + "x-ms-request-id": [ + "589488ef-4b9d-49db-9467-258efd100bf8" + ], + "x-ms-correlation-request-id": [ + "589488ef-4b9d-49db-9467-258efd100bf8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011004Z:589488ef-4b9d-49db-9467-258efd100bf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14932" + ], + "x-ms-request-id": [ + "589488ef-4b9d-49db-9467-258efd100bf8" + ], + "x-ms-correlation-request-id": [ + "589488ef-4b9d-49db-9467-258efd100bf8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011004Z:589488ef-4b9d-49db-9467-258efd100bf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14932" + ], + "x-ms-request-id": [ + "589488ef-4b9d-49db-9467-258efd100bf8" + ], + "x-ms-correlation-request-id": [ + "589488ef-4b9d-49db-9467-258efd100bf8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011004Z:589488ef-4b9d-49db-9467-258efd100bf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14931" + ], + "x-ms-request-id": [ + "6979e32e-decd-4145-a293-633831534e2c" + ], + "x-ms-correlation-request-id": [ + "6979e32e-decd-4145-a293-633831534e2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011019Z:6979e32e-decd-4145-a293-633831534e2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14931" + ], + "x-ms-request-id": [ + "6979e32e-decd-4145-a293-633831534e2c" + ], + "x-ms-correlation-request-id": [ + "6979e32e-decd-4145-a293-633831534e2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011019Z:6979e32e-decd-4145-a293-633831534e2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14931" + ], + "x-ms-request-id": [ + "6979e32e-decd-4145-a293-633831534e2c" + ], + "x-ms-correlation-request-id": [ + "6979e32e-decd-4145-a293-633831534e2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011019Z:6979e32e-decd-4145-a293-633831534e2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14931" + ], + "x-ms-request-id": [ + "6979e32e-decd-4145-a293-633831534e2c" + ], + "x-ms-correlation-request-id": [ + "6979e32e-decd-4145-a293-633831534e2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011019Z:6979e32e-decd-4145-a293-633831534e2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14930" + ], + "x-ms-request-id": [ + "d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "x-ms-correlation-request-id": [ + "d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011034Z:d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14930" + ], + "x-ms-request-id": [ + "d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "x-ms-correlation-request-id": [ + "d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011034Z:d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14930" + ], + "x-ms-request-id": [ + "d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "x-ms-correlation-request-id": [ + "d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011034Z:d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14930" + ], + "x-ms-request-id": [ + "d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "x-ms-correlation-request-id": [ + "d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011034Z:d7bc12ef-2faf-4b3a-8f10-bad1c860c272" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14929" + ], + "x-ms-request-id": [ + "1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "x-ms-correlation-request-id": [ + "1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011050Z:1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14929" + ], + "x-ms-request-id": [ + "1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "x-ms-correlation-request-id": [ + "1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011050Z:1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14929" + ], + "x-ms-request-id": [ + "1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "x-ms-correlation-request-id": [ + "1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011050Z:1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14929" + ], + "x-ms-request-id": [ + "1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "x-ms-correlation-request-id": [ + "1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011050Z:1e0e7e96-03c2-4f9c-809b-d3fabc36de0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:10:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14928" + ], + "x-ms-request-id": [ + "50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "x-ms-correlation-request-id": [ + "50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011105Z:50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:11:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14928" + ], + "x-ms-request-id": [ + "50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "x-ms-correlation-request-id": [ + "50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011105Z:50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:11:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14928" + ], + "x-ms-request-id": [ + "50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "x-ms-correlation-request-id": [ + "50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011105Z:50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:11:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14928" + ], + "x-ms-request-id": [ + "50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "x-ms-correlation-request-id": [ + "50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011105Z:50bf19df-a5a3-4e27-92c3-abf527f5e857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:11:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "16b3404b-b679-412d-b386-f3d74686ebec" + ], + "x-ms-correlation-request-id": [ + "16b3404b-b679-412d-b386-f3d74686ebec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011121Z:16b3404b-b679-412d-b386-f3d74686ebec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:11:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "16b3404b-b679-412d-b386-f3d74686ebec" + ], + "x-ms-correlation-request-id": [ + "16b3404b-b679-412d-b386-f3d74686ebec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011121Z:16b3404b-b679-412d-b386-f3d74686ebec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:11:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "16b3404b-b679-412d-b386-f3d74686ebec" + ], + "x-ms-correlation-request-id": [ + "16b3404b-b679-412d-b386-f3d74686ebec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011121Z:16b3404b-b679-412d-b386-f3d74686ebec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:11:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxODU3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T0RVM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "16b3404b-b679-412d-b386-f3d74686ebec" + ], + "x-ms-correlation-request-id": [ + "16b3404b-b679-412d-b386-f3d74686ebec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011121Z:16b3404b-b679-412d-b386-f3d74686ebec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:11:20 GMT" + ] + }, + "StatusCode": 200 } ], "Names": { "TestVMExtensionOperations": [ - "pslibtest9333", - "pslibtest333", - "as6913" + "pslibtest1857", + "pslibtest6155", + "as8176" ], "CreatePublicIP": [ - "azsmnet870", - "azsmnet3187" + "azsmnet7275", + "azsmnet672" ], "CreateVNET": [ - "azsmnet9582", - "azsmnet6359" + "azsmnet7349", + "azsmnet5291" ], "CreateNIC": [ - "azsmnet8382", - "azsmnet2222" + "azsmnet1240", + "azsmnet7209" ], "CreateDefaultVMInput": [ - "pslibtest258", - "pslibtest9601", - "pslibtest889", - "vm7982" + "pslibtest8698", + "pslibtest7252", + "pslibtest9283", + "vm2003", + "Microsoft.Compute/virtualMachines625" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json index 28e40d9539faa..ca0dc1fdd57b5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efbe6364-f2bd-48c5-88ac-77e37d1cea59" + "db165ad1-cdd7-4333-8a05-19dbc214a89a" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-correlation-request-id": [ - "3a6f8930-d8a1-4a3f-bacb-68dea42c233d" + "f250f4e0-10a2-4a0e-a58d-adecffa11500" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192127Z:3a6f8930-d8a1-4a3f-bacb-68dea42c233d" + "WESTUS:20150714T195633Z:f250f4e0-10a2-4a0e-a58d-adecffa11500" ], "Date": [ - "Tue, 16 Jun 2015 19:21:26 GMT" + "Tue, 14 Jul 2015 19:56:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest4058_1?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwNThfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1\",\r\n \"name\": \"pslibtest4058_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "190" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,107 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "30cefc64-4d1d-409d-a328-da69a5a62de8" - ], - "x-ms-correlation-request-id": [ - "30cefc64-4d1d-409d-a328-da69a5a62de8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192129Z:30cefc64-4d1d-409d-a328-da69a5a62de8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Jun 2015 19:21:28 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest4058_1?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwNThfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1\",\r\n \"name\": \"pslibtest4058_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "190" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "db165ad1-cdd7-4333-8a05-19dbc214a89a" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "4a4fff7e-e7c9-4d3f-812a-bfbb893d786a" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" ], "x-ms-correlation-request-id": [ - "4a4fff7e-e7c9-4d3f-812a-bfbb893d786a" + "f250f4e0-10a2-4a0e-a58d-adecffa11500" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192211Z:4a4fff7e-e7c9-4d3f-812a-bfbb893d786a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150714T195633Z:f250f4e0-10a2-4a0e-a58d-adecffa11500" ], "Date": [ - "Tue, 16 Jun 2015 19:22:10 GMT" + "Tue, 14 Jul 2015 19:56:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Storage/storageAccounts/pslibtest4832?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDQ4MzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "5f471e23-eda0-4d51-befc-45d378a869d3" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +128,48 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dbdc354f-d201-431a-8109-dc1e77317c87" + "db165ad1-cdd7-4333-8a05-19dbc214a89a" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/dbdc354f-d201-431a-8109-dc1e77317c87?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" ], "x-ms-correlation-request-id": [ - "984f56b6-f6b3-4e14-86f4-b46152561936" + "f250f4e0-10a2-4a0e-a58d-adecffa11500" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192133Z:984f56b6-f6b3-4e14-86f4-b46152561936" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T195633Z:f250f4e0-10a2-4a0e-a58d-adecffa11500" ], "Date": [ - "Tue, 16 Jun 2015 19:21:32 GMT" + "Tue, 14 Jul 2015 19:56:33 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/dbdc354f-d201-431a-8109-dc1e77317c87?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2RiZGMzNTRmLWQyMDEtNDMxYS04MTA5LWRjMWU3NzMxN2M4Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "db4b3937-8ebe-4810-991b-525f23fcda7c" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4cc79bc3-c272-4889-8a7e-a1ab9fa3d666" + "db165ad1-cdd7-4333-8a05-19dbc214a89a" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/dbdc354f-d201-431a-8109-dc1e77317c87?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-correlation-request-id": [ - "9b9ee012-2e3d-4d40-b80f-21d124bf7be1" + "f250f4e0-10a2-4a0e-a58d-adecffa11500" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192134Z:9b9ee012-2e3d-4d40-b80f-21d124bf7be1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T195633Z:f250f4e0-10a2-4a0e-a58d-adecffa11500" ], "Date": [ - "Tue, 16 Jun 2015 19:21:34 GMT" + "Tue, 14 Jul 2015 19:56:33 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/dbdc354f-d201-431a-8109-dc1e77317c87?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2RiZGMzNTRmLWQyMDEtNDMxYS04MTA5LWRjMWU3NzMxN2M4Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "dd8244ef-6b8a-4de1-b7a1-855390ee482a" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1\",\r\n \"name\": \"pslibtest4081_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +238,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "2be475a6-a59f-4bae-9f60-8789b77d1562" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "x-ms-request-id": [ + "68a50b21-f5a5-42dd-a090-30d9f62d5299" ], "x-ms-correlation-request-id": [ - "5d82d6d2-dfac-4c35-8ed5-0de046948c46" + "68a50b21-f5a5-42dd-a090-30d9f62d5299" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192159Z:5d82d6d2-dfac-4c35-8ed5-0de046948c46" + "WESTUS:20150714T195635Z:68a50b21-f5a5-42dd-a090-30d9f62d5299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 19:21:58 GMT" + "Tue, 14 Jul 2015 19:56:35 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "3560bd6f-4221-4397-b0ef-1cf00a2b1944" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Storage/storageAccounts/pslibtest4832\",\r\n \"name\": \"pslibtest4832\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4832.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4832.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4832.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T19:21:31.1124394Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1\",\r\n \"name\": \"pslibtest4081_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "707" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "9eb9522f-8a77-4dde-bfff-b6d5355e1875" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "x-ms-request-id": [ + "68a50b21-f5a5-42dd-a090-30d9f62d5299" ], "x-ms-correlation-request-id": [ - "41648086-5f56-4365-bc6f-e553acd64ddb" + "68a50b21-f5a5-42dd-a090-30d9f62d5299" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192210Z:41648086-5f56-4365-bc6f-e553acd64ddb" + "WESTUS:20150714T195635Z:68a50b21-f5a5-42dd-a090-30d9f62d5299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 19:22:09 GMT" + "Tue, 14 Jul 2015 19:56:35 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/publicIPAddresses/azsmnet8659/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg2NTkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6098\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8659\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/publicIPAddresses/azsmnet8659\",\r\n \"etag\": \"W/\\\"ee058803-6561-474f-8434-6a590a7a19d5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6098\",\r\n \"fqdn\": \"azsmnet6098.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1\",\r\n \"name\": \"pslibtest4081_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "581" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +346,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "b19fe02f-a0ec-40e9-80f5-0d7df87efb6d" + "68a50b21-f5a5-42dd-a090-30d9f62d5299" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/b19fe02f-a0ec-40e9-80f5-0d7df87efb6d?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "68a50b21-f5a5-42dd-a090-30d9f62d5299" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195635Z:68a50b21-f5a5-42dd-a090-30d9f62d5299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +364,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "3bd3502d-6826-4812-a69c-e7256828f1c3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192217Z:3bd3502d-6826-4812-a69c-e7256828f1c3" - ], "Date": [ - "Tue, 16 Jun 2015 19:22:16 GMT" + "Tue, 14 Jul 2015 19:56:35 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/b19fe02f-a0ec-40e9-80f5-0d7df87efb6d?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IxOWZlMDJmLWEwZWMtNDBlOS04MGY1LTBkN2RmODdlZmI2ZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1\",\r\n \"name\": \"pslibtest4081_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +400,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], "x-ms-request-id": [ - "6ba24414-8a31-40c7-9b24-1ac938c3842c" + "68a50b21-f5a5-42dd-a090-30d9f62d5299" + ], + "x-ms-correlation-request-id": [ + "68a50b21-f5a5-42dd-a090-30d9f62d5299" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195635Z:68a50b21-f5a5-42dd-a090-30d9f62d5299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +418,32 @@ "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": [ - "114fd25c-9a9b-483f-937f-d2b0022e23af" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192218Z:114fd25c-9a9b-483f-937f-d2b0022e23af" - ], "Date": [ - "Tue, 16 Jun 2015 19:22:17 GMT" + "Tue, 14 Jul 2015 19:56:35 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/publicIPAddresses/azsmnet8659/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg2NTkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8659\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/publicIPAddresses/azsmnet8659\",\r\n \"etag\": \"W/\\\"b7f9576e-1b83-4342-8ec1-fa4aaabf6675\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6098\",\r\n \"fqdn\": \"azsmnet6098.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1\",\r\n \"name\": \"pslibtest4081_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "582" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,57 +454,50 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], "x-ms-request-id": [ - "283f973c-70d8-4672-a7f6-5ff98121b537" + "65d561ef-22cc-470b-8b93-abd3947ca54a" ], - "Strict-Transport-Security": [ + "x-ms-correlation-request-id": [ + "65d561ef-22cc-470b-8b93-abd3947ca54a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195718Z:65d561ef-22cc-470b-8b93-abd3947ca54a" + ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"b7f9576e-1b83-4342-8ec1-fa4aaabf6675\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "f3d424c0-2093-41f7-9367-acb8022a65c9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192218Z:f3d424c0-2093-41f7-9367-acb8022a65c9" - ], "Date": [ - "Tue, 16 Jun 2015 19:22:17 GMT" + "Tue, 14 Jul 2015 19:57:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/virtualnetworks/azsmnet5299?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ1Mjk5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5250\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5299\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/virtualNetworks/azsmnet5299\",\r\n \"etag\": \"W/\\\"258ec127-b1c7-4bd9-a768-0c617ffb418a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5250\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/virtualNetworks/azsmnet5299/subnets/azsmnet5250\",\r\n \"etag\": \"W/\\\"258ec127-b1c7-4bd9-a768-0c617ffb418a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1\",\r\n \"name\": \"pslibtest4081_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "963" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,14 +508,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-request-id": [ - "ce61a632-096e-4e1d-a186-e58c21e01be8" + "65d561ef-22cc-470b-8b93-abd3947ca54a" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/ce61a632-096e-4e1d-a186-e58c21e01be8?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "65d561ef-22cc-470b-8b93-abd3947ca54a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195718Z:65d561ef-22cc-470b-8b93-abd3947ca54a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,42 +526,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "e9bf3f52-7145-46f3-8673-b617b4dd34cf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192222Z:e9bf3f52-7145-46f3-8673-b617b4dd34cf" - ], "Date": [ - "Tue, 16 Jun 2015 19:22:21 GMT" + "Tue, 14 Jul 2015 19:57:18 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/ce61a632-096e-4e1d-a186-e58c21e01be8?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlNjFhNjMyLTA5NmUtNGUxZC1hMTg2LWU1OGMyMWUwMWJlOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1\",\r\n \"name\": \"pslibtest4081_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,8 +562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], "x-ms-request-id": [ - "cdf13aee-e0eb-45bf-a4df-6d16dc55ab43" + "65d561ef-22cc-470b-8b93-abd3947ca54a" + ], + "x-ms-correlation-request-id": [ + "65d561ef-22cc-470b-8b93-abd3947ca54a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195718Z:65d561ef-22cc-470b-8b93-abd3947ca54a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,39 +580,32 @@ "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": [ - "f2b29279-3724-47b5-a6a5-1caa28883204" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192222Z:f2b29279-3724-47b5-a6a5-1caa28883204" - ], "Date": [ - "Tue, 16 Jun 2015 19:22:21 GMT" + "Tue, 14 Jul 2015 19:57:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/virtualnetworks/azsmnet5299/subnets/azsmnet5250?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ1Mjk5L3N1Ym5ldHMvYXpzbW5ldDUyNTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5250\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/virtualNetworks/azsmnet5299/subnets/azsmnet5250\",\r\n \"etag\": \"W/\\\"e91dbb48-d127-4a3c-a64a-a17668bfaa26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1\",\r\n \"name\": \"pslibtest4081_1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], "x-ms-request-id": [ - "333af055-7a9e-4a00-a462-2363b31ecb22" + "65d561ef-22cc-470b-8b93-abd3947ca54a" + ], + "x-ms-correlation-request-id": [ + "65d561ef-22cc-470b-8b93-abd3947ca54a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195718Z:65d561ef-22cc-470b-8b93-abd3947ca54a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,48 +634,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"e91dbb48-d127-4a3c-a64a-a17668bfaa26\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "7adace56-67a2-4f14-ba7d-eb96c146ba49" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192223Z:7adace56-67a2-4f14-ba7d-eb96c146ba49" - ], "Date": [ - "Tue, 16 Jun 2015 19:22:22 GMT" + "Tue, 14 Jul 2015 19:57:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDgxMzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDgzODg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/virtualNetworks/azsmnet5299/subnets/azsmnet5250\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/publicIPAddresses/azsmnet8659\"\r\n }\r\n },\r\n \"name\": \"azsmnet6240\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet8132\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "720" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8132\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132\",\r\n \"etag\": \"W/\\\"a553800a-f25d-4aa8-b356-583ae0594e4a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6240\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132/ipConfigurations/azsmnet6240\",\r\n \"etag\": \"W/\\\"a553800a-f25d-4aa8-b356-583ae0594e4a\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/publicIPAddresses/azsmnet8659\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/virtualNetworks/azsmnet5299/subnets/azsmnet5250\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1332" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -776,54 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "aab5485d-6e82-4547-ab84-764acb0636ed" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/aab5485d-6e82-4547-ab84-764acb0636ed?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "d5ecaf64-7a2d-497d-a933-4ab8817a79b5" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/d5ecaf64-7a2d-497d-a933-4ab8817a79b5?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "1f2c2e7b-d545-437d-96d5-55ab12f2925e" + "d9699af4-215e-4fac-946a-cdad1db78fe3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192227Z:1f2c2e7b-d545-437d-96d5-55ab12f2925e" + "WESTUS:20150714T195641Z:d9699af4-215e-4fac-946a-cdad1db78fe3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:27 GMT" + "Tue, 14 Jul 2015 19:56:41 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/aab5485d-6e82-4547-ab84-764acb0636ed?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FhYjU0ODVkLTZlODItNDU0Ny1hYjg0LTc2NGFjYjA2MzZlZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDgzODg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,48 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "416a0cd1-a220-452d-9c9c-e58197be5619" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "d5ecaf64-7a2d-497d-a933-4ab8817a79b5" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/d5ecaf64-7a2d-497d-a933-4ab8817a79b5?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "6edb5543-e83d-4a63-bfbb-21d2e0826137" + "d9699af4-215e-4fac-946a-cdad1db78fe3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192227Z:6edb5543-e83d-4a63-bfbb-21d2e0826137" + "WESTUS:20150714T195641Z:d9699af4-215e-4fac-946a-cdad1db78fe3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:27 GMT" + "Tue, 14 Jul 2015 19:56:41 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDgxMzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDgzODg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8132\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132\",\r\n \"etag\": \"W/\\\"a553800a-f25d-4aa8-b356-583ae0594e4a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6240\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132/ipConfigurations/azsmnet6240\",\r\n \"etag\": \"W/\\\"a553800a-f25d-4aa8-b356-583ae0594e4a\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/publicIPAddresses/azsmnet8659\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/virtualNetworks/azsmnet5299/subnets/azsmnet5250\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1332" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,57 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "2416245d-daf2-4961-b0a4-8f251fad5e56" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "d5ecaf64-7a2d-497d-a933-4ab8817a79b5" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"a553800a-f25d-4aa8-b356-583ae0594e4a\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/d5ecaf64-7a2d-497d-a933-4ab8817a79b5?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "5f4fc798-01d2-4383-94a2-57e95f3a344e" + "d9699af4-215e-4fac-946a-cdad1db78fe3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192228Z:5f4fc798-01d2-4383-94a2-57e95f3a344e" + "WESTUS:20150714T195641Z:d9699af4-215e-4fac-946a-cdad1db78fe3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:28 GMT" + "Tue, 14 Jul 2015 19:56:41 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/availabilitySets/as3250?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczMyNTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDgzODg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as3250\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "133" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/availabilitySets/as3250\",\r\n \"name\": \"as3250\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "405" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -947,54 +862,54 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "25" ], "x-ms-request-id": [ - "b16c4e98-86a5-4dd4-9b49-124686f34205" + "d5ecaf64-7a2d-497d-a933-4ab8817a79b5" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/d5ecaf64-7a2d-497d-a933-4ab8817a79b5?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "819650c1-cb92-4c75-bd4d-b9461e7422c5" + "d9699af4-215e-4fac-946a-cdad1db78fe3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192232Z:819650c1-cb92-4c75-bd4d-b9461e7422c5" + "WESTUS:20150714T195641Z:d9699af4-215e-4fac-946a-cdad1db78fe3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:32 GMT" + "Tue, 14 Jul 2015 19:56:41 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/virtualMachines/vm4972?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNDk3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4832.blob.core.windows.net/pslibtest3752/ospslibtest460.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4058_1\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/availabilitySets/as3250\"\r\n }\r\n },\r\n \"name\": \"vm4972\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/d5ecaf64-7a2d-497d-a933-4ab8817a79b5?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q1ZWNhZjY0LTdhMmQtNDk3ZC1hOTMzLTRhYjg4MTdhNzliNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1326" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/availabilitySets/AS3250\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4832.blob.core.windows.net/pslibtest3752/ospslibtest460.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/virtualMachines/vm4972\",\r\n \"name\": \"vm4972\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1585" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,14 +920,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/970a4741-e375-4f05-8a5e-d68232d40857?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "970a4741-e375-4f05-8a5e-d68232d40857" + "d3b6b9a5-4b83-4621-88d1-8451f338e167" ], "Cache-Control": [ "no-cache" @@ -1021,35 +930,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-correlation-request-id": [ - "4ed83b6f-9339-41b0-ade0-f4f123173471" + "2cfdb091-f4aa-4fe6-8ae2-f8b780540e6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192236Z:4ed83b6f-9339-41b0-ade0-f4f123173471" + "WESTUS:20150714T195707Z:2cfdb091-f4aa-4fe6-8ae2-f8b780540e6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:35 GMT" + "Tue, 14 Jul 2015 19:57:07 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/970a4741-e375-4f05-8a5e-d68232d40857?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3MGE0NzQxLWUzNzUtNGYwNS04YTVlLWQ2ODIzMmQ0MDg1Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/d5ecaf64-7a2d-497d-a933-4ab8817a79b5?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q1ZWNhZjY0LTdhMmQtNDk3ZC1hOTMzLTRhYjg4MTdhNzliNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"970a4741-e375-4f05-8a5e-d68232d40857\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:22:34.2526775-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1060,11 +972,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "02152bf7-7a64-4139-968d-32e46bb4ae54" + "d3b6b9a5-4b83-4621-88d1-8451f338e167" ], "Cache-Control": [ "no-cache" @@ -1074,34 +983,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14992" ], "x-ms-correlation-request-id": [ - "638f4312-dfd4-41cf-af6b-d5e5c4f05785" + "2cfdb091-f4aa-4fe6-8ae2-f8b780540e6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192236Z:638f4312-dfd4-41cf-af6b-d5e5c4f05785" + "WESTUS:20150714T195707Z:2cfdb091-f4aa-4fe6-8ae2-f8b780540e6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:36 GMT" + "Tue, 14 Jul 2015 19:57:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/virtualMachines/vm4972?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNDk3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/d5ecaf64-7a2d-497d-a933-4ab8817a79b5?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q1ZWNhZjY0LTdhMmQtNDk3ZC1hOTMzLTRhYjg4MTdhNzliNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/availabilitySets/AS3250\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4832.blob.core.windows.net/pslibtest3752/ospslibtest460.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Compute/virtualMachines/vm4972\",\r\n \"name\": \"vm4972\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1585" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1112,11 +1024,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "2d793cbd-9889-4b50-91b7-a9e7de0c978d" + "d3b6b9a5-4b83-4621-88d1-8451f338e167" ], "Cache-Control": [ "no-cache" @@ -1126,40 +1035,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14992" ], "x-ms-correlation-request-id": [ - "4ac8db79-0c4f-4b3a-afc0-e6c69f35d47e" + "2cfdb091-f4aa-4fe6-8ae2-f8b780540e6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192237Z:4ac8db79-0c4f-4b3a-afc0-e6c69f35d47e" + "WESTUS:20150714T195707Z:2cfdb091-f4aa-4fe6-8ae2-f8b780540e6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:37 GMT" + "Tue, 14 Jul 2015 19:57:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest4058_2?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwNThfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/d5ecaf64-7a2d-497d-a933-4ab8817a79b5?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q1ZWNhZjY0LTdhMmQtNDk3ZC1hOTMzLTRhYjg4MTdhNzliNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2\",\r\n \"name\": \"pslibtest4058_2\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1170,50 +1076,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], "x-ms-request-id": [ - "833172d5-4b7b-41a5-8e46-f309d83ae048" + "d3b6b9a5-4b83-4621-88d1-8451f338e167" + ], + "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": [ - "833172d5-4b7b-41a5-8e46-f309d83ae048" + "2cfdb091-f4aa-4fe6-8ae2-f8b780540e6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192238Z:833172d5-4b7b-41a5-8e46-f309d83ae048" + "WESTUS:20150714T195707Z:2cfdb091-f4aa-4fe6-8ae2-f8b780540e6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 16 Jun 2015 19:22:38 GMT" + "Tue, 14 Jul 2015 19:57:07 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/publicIPAddresses/azsmnet3773/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3NzMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2030\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "212" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3773\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/publicIPAddresses/azsmnet3773\",\r\n \"etag\": \"W/\\\"73893a81-f1ca-4579-9f63-e8d4da28aa97\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2030\",\r\n \"fqdn\": \"azsmnet2030.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388\",\r\n \"name\": \"pslibtest8388\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8388.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8388.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8388.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:56:37.9783325Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "581" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,17 +1128,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "334426b7-28e3-41b4-b885-3dfed2c81b2f" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/334426b7-28e3-41b4-b885-3dfed2c81b2f?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91b998ad-20ff-4f51-98b0-26600823659a" ], "Cache-Control": [ "no-cache" @@ -1243,38 +1138,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], "x-ms-correlation-request-id": [ - "0fa9081b-bbfb-495b-9879-88ad2dade956" + "f84611ca-c9c2-473f-932c-63c6dd8b192d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192241Z:0fa9081b-bbfb-495b-9879-88ad2dade956" + "WESTUS:20150714T195717Z:f84611ca-c9c2-473f-932c-63c6dd8b192d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:41 GMT" + "Tue, 14 Jul 2015 19:57:16 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/334426b7-28e3-41b4-b885-3dfed2c81b2f?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzNDQyNmI3LTI4ZTMtNDFiNC1iODg1LTNkZmVkMmM4MWIyZj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388\",\r\n \"name\": \"pslibtest8388\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8388.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8388.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8388.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:56:37.9783325Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1286,10 +1181,7 @@ "no-cache" ], "x-ms-request-id": [ - "27b564c3-5176-4c2f-894c-f31749b10e31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91b998ad-20ff-4f51-98b0-26600823659a" ], "Cache-Control": [ "no-cache" @@ -1299,34 +1191,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14991" ], "x-ms-correlation-request-id": [ - "f482f1c7-218a-4100-b4ac-90c169238f43" + "f84611ca-c9c2-473f-932c-63c6dd8b192d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192242Z:f482f1c7-218a-4100-b4ac-90c169238f43" + "WESTUS:20150714T195717Z:f84611ca-c9c2-473f-932c-63c6dd8b192d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:42 GMT" + "Tue, 14 Jul 2015 19:57:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/publicIPAddresses/azsmnet3773/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3NzMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3773\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/publicIPAddresses/azsmnet3773\",\r\n \"etag\": \"W/\\\"16a642ca-e20a-4989-8e54-22f55c081a1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2030\",\r\n \"fqdn\": \"azsmnet2030.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388\",\r\n \"name\": \"pslibtest8388\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8388.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8388.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8388.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:56:37.9783325Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "582" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1338,56 +1233,47 @@ "no-cache" ], "x-ms-request-id": [ - "87fc11a2-23b1-464f-9cec-c122d36f9d51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91b998ad-20ff-4f51-98b0-26600823659a" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"16a642ca-e20a-4989-8e54-22f55c081a1c\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14991" ], "x-ms-correlation-request-id": [ - "7a030962-d70c-4b66-8512-48b1ed6f85d5" + "f84611ca-c9c2-473f-932c-63c6dd8b192d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192243Z:7a030962-d70c-4b66-8512-48b1ed6f85d5" + "WESTUS:20150714T195717Z:f84611ca-c9c2-473f-932c-63c6dd8b192d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:42 GMT" + "Tue, 14 Jul 2015 19:57:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/virtualnetworks/azsmnet6319?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2MzE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet256\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "421" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6319\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/virtualNetworks/azsmnet6319\",\r\n \"etag\": \"W/\\\"3d573e06-8f96-4949-b5da-55647f92c327\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet256\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/virtualNetworks/azsmnet6319/subnets/azsmnet256\",\r\n \"etag\": \"W/\\\"3d573e06-8f96-4949-b5da-55647f92c327\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388\",\r\n \"name\": \"pslibtest8388\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8388.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8388.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8388.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:56:37.9783325Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,17 +1284,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "ccb8fc22-7b0d-4742-bf00-2201e166646a" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/ccb8fc22-7b0d-4742-bf00-2201e166646a?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91b998ad-20ff-4f51-98b0-26600823659a" ], "Cache-Control": [ "no-cache" @@ -1417,38 +1294,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], "x-ms-correlation-request-id": [ - "d0268965-60dd-4e52-9c87-d282efd16b2b" + "f84611ca-c9c2-473f-932c-63c6dd8b192d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192245Z:d0268965-60dd-4e52-9c87-d282efd16b2b" + "WESTUS:20150714T195717Z:f84611ca-c9c2-473f-932c-63c6dd8b192d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:45 GMT" + "Tue, 14 Jul 2015 19:57:16 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/ccb8fc22-7b0d-4742-bf00-2201e166646a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NjYjhmYzIyLTdiMGQtNDc0Mi1iZjAwLTIyMDFlMTY2NjQ2YT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDgzODg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388\",\r\n \"name\": \"pslibtest8388\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8388.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8388.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8388.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:56:37.9783325Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1460,10 +1337,7 @@ "no-cache" ], "x-ms-request-id": [ - "4fe1cdb2-b8cb-45c1-96e1-ba0f44cdfeb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "62cc97dd-4ed5-4cd8-a01b-d97055f815d8" ], "Cache-Control": [ "no-cache" @@ -1473,34 +1347,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14990" ], "x-ms-correlation-request-id": [ - "07989b4b-01f8-40e1-ba9d-f8ab5778958b" + "f47ef90f-13c1-40a2-8d0d-77f951095e84" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192246Z:07989b4b-01f8-40e1-ba9d-f8ab5778958b" + "WESTUS:20150714T195717Z:f47ef90f-13c1-40a2-8d0d-77f951095e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:46 GMT" + "Tue, 14 Jul 2015 19:57:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/virtualnetworks/azsmnet6319/subnets/azsmnet256?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2MzE5L3N1Ym5ldHMvYXpzbW5ldDI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDgzODg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet256\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/virtualNetworks/azsmnet6319/subnets/azsmnet256\",\r\n \"etag\": \"W/\\\"d954ecd6-2f00-47c8-a993-c6608ff0894f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388\",\r\n \"name\": \"pslibtest8388\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8388.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8388.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8388.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:56:37.9783325Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1512,56 +1389,47 @@ "no-cache" ], "x-ms-request-id": [ - "13d32274-d77c-4e87-a2f0-7c84638c0123" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "62cc97dd-4ed5-4cd8-a01b-d97055f815d8" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"d954ecd6-2f00-47c8-a993-c6608ff0894f\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14990" ], "x-ms-correlation-request-id": [ - "80e93d42-32d2-4c36-a1b7-a97bbb008f64" + "f47ef90f-13c1-40a2-8d0d-77f951095e84" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192246Z:80e93d42-32d2-4c36-a1b7-a97bbb008f64" + "WESTUS:20150714T195717Z:f47ef90f-13c1-40a2-8d0d-77f951095e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:46 GMT" + "Tue, 14 Jul 2015 19:57:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDM1OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/virtualNetworks/azsmnet6319/subnets/azsmnet256\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/publicIPAddresses/azsmnet3773\"\r\n }\r\n },\r\n \"name\": \"azsmnet2500\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet358\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDgzODg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "718" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet358\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358\",\r\n \"etag\": \"W/\\\"31fc376e-4dc1-4357-a070-7b176abd3803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2500\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358/ipConfigurations/azsmnet2500\",\r\n \"etag\": \"W/\\\"31fc376e-4dc1-4357-a070-7b176abd3803\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/publicIPAddresses/azsmnet3773\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/virtualNetworks/azsmnet6319/subnets/azsmnet256\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388\",\r\n \"name\": \"pslibtest8388\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8388.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8388.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8388.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:56:37.9783325Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1328" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1573,13 +1441,7 @@ "no-cache" ], "x-ms-request-id": [ - "d894321f-0971-42c7-b8d9-a4568aa5340d" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/d894321f-0971-42c7-b8d9-a4568aa5340d?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "62cc97dd-4ed5-4cd8-a01b-d97055f815d8" ], "Cache-Control": [ "no-cache" @@ -1588,38 +1450,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-correlation-request-id": [ - "ebe75d50-6824-4d7f-b6f9-ead21ed6f130" + "f47ef90f-13c1-40a2-8d0d-77f951095e84" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192250Z:ebe75d50-6824-4d7f-b6f9-ead21ed6f130" + "WESTUS:20150714T195717Z:f47ef90f-13c1-40a2-8d0d-77f951095e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:49 GMT" + "Tue, 14 Jul 2015 19:57:17 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/d894321f-0971-42c7-b8d9-a4568aa5340d?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q4OTQzMjFmLTA5NzEtNDJjNy1iOGQ5LWE0NTY4YWE1MzQwZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzbGlidGVzdDgzODg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Storage/storageAccounts/pslibtest8388\",\r\n \"name\": \"pslibtest8388\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8388.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8388.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8388.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:56:37.9783325Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1631,10 +1493,7 @@ "no-cache" ], "x-ms-request-id": [ - "47dca7af-3ea6-4eae-a022-f7edad97a843" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "62cc97dd-4ed5-4cd8-a01b-d97055f815d8" ], "Cache-Control": [ "no-cache" @@ -1644,34 +1503,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14990" ], "x-ms-correlation-request-id": [ - "9e7e9e5a-7dda-48ab-b1a5-927c73b958a3" + "f47ef90f-13c1-40a2-8d0d-77f951095e84" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192251Z:9e7e9e5a-7dda-48ab-b1a5-927c73b958a3" + "WESTUS:20150714T195717Z:f47ef90f-13c1-40a2-8d0d-77f951095e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:22:50 GMT" + "Tue, 14 Jul 2015 19:57:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDM1OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet358\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358\",\r\n \"etag\": \"W/\\\"31fc376e-4dc1-4357-a070-7b176abd3803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2500\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358/ipConfigurations/azsmnet2500\",\r\n \"etag\": \"W/\\\"31fc376e-4dc1-4357-a070-7b176abd3803\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/publicIPAddresses/azsmnet3773\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/virtualNetworks/azsmnet6319/subnets/azsmnet256\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"266f0845-3133-43ff-b586-eea870255ac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1328" + "581" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,8 +1550,14 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "dd57f221-2cb7-4208-84d3-6ead3e53a4a5" + "fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1691,48 +1565,45 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"31fc376e-4dc1-4357-a070-7b176abd3803\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "173c0098-bddf-470d-bc86-934f84a5c730" + "c89309de-90cd-43c1-9090-177a3d1e9030" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192251Z:173c0098-bddf-470d-bc86-934f84a5c730" + "WESTUS:20150714T195725Z:c89309de-90cd-43c1-9090-177a3d1e9030" ], "Date": [ - "Tue, 16 Jun 2015 19:22:50 GMT" + "Tue, 14 Jul 2015 19:57:24 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/availabilitySets/as3250?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczMyNTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as3250\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "133" + "212" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/availabilitySets/as3250\",\r\n \"name\": \"as3250\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"266f0845-3133-43ff-b586-eea870255ac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "405" + "581" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1743,11 +1614,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "7c150692-8db5-43d7-bee9-b4065a69b9c6" + "fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1757,43 +1634,19542 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1195" ], "x-ms-correlation-request-id": [ - "26dab06c-8d77-432e-b5ad-c3773c1a1943" + "c89309de-90cd-43c1-9090-177a3d1e9030" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195725Z:c89309de-90cd-43c1-9090-177a3d1e9030" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:24 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"266f0845-3133-43ff-b586-eea870255ac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "c89309de-90cd-43c1-9090-177a3d1e9030" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195725Z:c89309de-90cd-43c1-9090-177a3d1e9030" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:24 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"266f0845-3133-43ff-b586-eea870255ac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "c89309de-90cd-43c1-9090-177a3d1e9030" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195725Z:c89309de-90cd-43c1-9090-177a3d1e9030" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:24 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZjZTU0ZWJhLWZhMmEtNDhhYy1hMzhhLTk3YWM5ZjBjZDRiMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0db8f508-9bbe-40bc-b75c-8bf1189877ef" + ], + "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": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "b00b22a1-814d-43bb-bcb7-c5775a9afef9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:b00b22a1-814d-43bb-bcb7-c5775a9afef9" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZjZTU0ZWJhLWZhMmEtNDhhYy1hMzhhLTk3YWM5ZjBjZDRiMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0db8f508-9bbe-40bc-b75c-8bf1189877ef" + ], + "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": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "b00b22a1-814d-43bb-bcb7-c5775a9afef9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:b00b22a1-814d-43bb-bcb7-c5775a9afef9" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZjZTU0ZWJhLWZhMmEtNDhhYy1hMzhhLTk3YWM5ZjBjZDRiMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0db8f508-9bbe-40bc-b75c-8bf1189877ef" + ], + "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": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "b00b22a1-814d-43bb-bcb7-c5775a9afef9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:b00b22a1-814d-43bb-bcb7-c5775a9afef9" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fce54eba-fa2a-48ac-a38a-97ac9f0cd4b0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZjZTU0ZWJhLWZhMmEtNDhhYy1hMzhhLTk3YWM5ZjBjZDRiMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0db8f508-9bbe-40bc-b75c-8bf1189877ef" + ], + "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": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "b00b22a1-814d-43bb-bcb7-c5775a9afef9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:b00b22a1-814d-43bb-bcb7-c5775a9afef9" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f20a8a9-073d-4dcb-adb4-7c0ff2596101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "059521ce-5083-4c6f-924d-9d4ae5c87084" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:059521ce-5083-4c6f-924d-9d4ae5c87084" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f20a8a9-073d-4dcb-adb4-7c0ff2596101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "059521ce-5083-4c6f-924d-9d4ae5c87084" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:059521ce-5083-4c6f-924d-9d4ae5c87084" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f20a8a9-073d-4dcb-adb4-7c0ff2596101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "059521ce-5083-4c6f-924d-9d4ae5c87084" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:059521ce-5083-4c6f-924d-9d4ae5c87084" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f20a8a9-073d-4dcb-adb4-7c0ff2596101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "059521ce-5083-4c6f-924d-9d4ae5c87084" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:059521ce-5083-4c6f-924d-9d4ae5c87084" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "199d2c46-e12a-4eab-966e-e4ea6ba3efca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "efd4c9a9-436e-4379-bf82-cb5bd9affeca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:efd4c9a9-436e-4379-bf82-cb5bd9affeca" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "199d2c46-e12a-4eab-966e-e4ea6ba3efca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "efd4c9a9-436e-4379-bf82-cb5bd9affeca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:efd4c9a9-436e-4379-bf82-cb5bd9affeca" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "199d2c46-e12a-4eab-966e-e4ea6ba3efca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "efd4c9a9-436e-4379-bf82-cb5bd9affeca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:efd4c9a9-436e-4379-bf82-cb5bd9affeca" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI2ODYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2686\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/publicIPAddresses/azsmnet2686\",\r\n \"etag\": \"W/\\\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4199\",\r\n \"fqdn\": \"azsmnet4199.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "199d2c46-e12a-4eab-966e-e4ea6ba3efca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"90848a72-808c-4b0e-aa8a-5a3ed5d7e13f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "efd4c9a9-436e-4379-bf82-cb5bd9affeca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195736Z:efd4c9a9-436e-4379-bf82-cb5bd9affeca" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692\",\r\n \"etag\": \"W/\\\"ec65946c-9aaf-48d5-af3b-b493a8eb30f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"ec65946c-9aaf-48d5-af3b-b493a8eb30f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1d75d7b2-b12b-4a3b-b942-a8405ea4d559" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195740Z:1d75d7b2-b12b-4a3b-b942-a8405ea4d559" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:39 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692\",\r\n \"etag\": \"W/\\\"ec65946c-9aaf-48d5-af3b-b493a8eb30f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"ec65946c-9aaf-48d5-af3b-b493a8eb30f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1d75d7b2-b12b-4a3b-b942-a8405ea4d559" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195740Z:1d75d7b2-b12b-4a3b-b942-a8405ea4d559" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:39 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692\",\r\n \"etag\": \"W/\\\"ec65946c-9aaf-48d5-af3b-b493a8eb30f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"ec65946c-9aaf-48d5-af3b-b493a8eb30f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1d75d7b2-b12b-4a3b-b942-a8405ea4d559" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195740Z:1d75d7b2-b12b-4a3b-b942-a8405ea4d559" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:39 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692\",\r\n \"etag\": \"W/\\\"ec65946c-9aaf-48d5-af3b-b493a8eb30f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"ec65946c-9aaf-48d5-af3b-b493a8eb30f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1d75d7b2-b12b-4a3b-b942-a8405ea4d559" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195740Z:1d75d7b2-b12b-4a3b-b942-a8405ea4d559" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:39 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBkNWFmOWQ0LWNmY2UtNDExOC1hZmI4LWIzYjFmZDAwYjJlNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5057dad-56ee-49be-827a-a86b7251e963" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "4a2275b2-fd15-4271-aca2-ea69c9df1b58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:4a2275b2-fd15-4271-aca2-ea69c9df1b58" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBkNWFmOWQ0LWNmY2UtNDExOC1hZmI4LWIzYjFmZDAwYjJlNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5057dad-56ee-49be-827a-a86b7251e963" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "4a2275b2-fd15-4271-aca2-ea69c9df1b58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:4a2275b2-fd15-4271-aca2-ea69c9df1b58" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBkNWFmOWQ0LWNmY2UtNDExOC1hZmI4LWIzYjFmZDAwYjJlNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5057dad-56ee-49be-827a-a86b7251e963" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "4a2275b2-fd15-4271-aca2-ea69c9df1b58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:4a2275b2-fd15-4271-aca2-ea69c9df1b58" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0d5af9d4-cfce-4118-afb8-b3b1fd00b2e5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBkNWFmOWQ0LWNmY2UtNDExOC1hZmI4LWIzYjFmZDAwYjJlNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5057dad-56ee-49be-827a-a86b7251e963" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "4a2275b2-fd15-4271-aca2-ea69c9df1b58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:4a2275b2-fd15-4271-aca2-ea69c9df1b58" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55ff0188-cb86-4424-9217-21ef6f0802ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "a6dfd298-0f3a-4e2f-88af-7fc3e8f0eeaf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:a6dfd298-0f3a-4e2f-88af-7fc3e8f0eeaf" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55ff0188-cb86-4424-9217-21ef6f0802ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "a6dfd298-0f3a-4e2f-88af-7fc3e8f0eeaf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:a6dfd298-0f3a-4e2f-88af-7fc3e8f0eeaf" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55ff0188-cb86-4424-9217-21ef6f0802ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "a6dfd298-0f3a-4e2f-88af-7fc3e8f0eeaf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:a6dfd298-0f3a-4e2f-88af-7fc3e8f0eeaf" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55ff0188-cb86-4424-9217-21ef6f0802ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "a6dfd298-0f3a-4e2f-88af-7fc3e8f0eeaf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:a6dfd298-0f3a-4e2f-88af-7fc3e8f0eeaf" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692/subnets/azsmnet6028?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTIvc3VibmV0cy9henNtbmV0NjAyOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9345bc48-bd50-4a9f-8dce-d5b3e08f9503" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "650260a0-ea5c-451e-8055-6aae31951cdd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:650260a0-ea5c-451e-8055-6aae31951cdd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692/subnets/azsmnet6028?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTIvc3VibmV0cy9henNtbmV0NjAyOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9345bc48-bd50-4a9f-8dce-d5b3e08f9503" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "650260a0-ea5c-451e-8055-6aae31951cdd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:650260a0-ea5c-451e-8055-6aae31951cdd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692/subnets/azsmnet6028?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTIvc3VibmV0cy9henNtbmV0NjAyOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9345bc48-bd50-4a9f-8dce-d5b3e08f9503" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "650260a0-ea5c-451e-8055-6aae31951cdd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:650260a0-ea5c-451e-8055-6aae31951cdd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualnetworks/azsmnet692/subnets/azsmnet6028?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQ2OTIvc3VibmV0cy9henNtbmV0NjAyOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6028\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9345bc48-bd50-4a9f-8dce-d5b3e08f9503" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "650260a0-ea5c-451e-8055-6aae31951cdd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195751Z:650260a0-ea5c-451e-8055-6aae31951cdd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDE2Mzg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "728" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1638\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638/ipConfigurations/azsmnet6071\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5dfc7931-76c2-45d8-b8ff-e31a13b9de69" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/5dfc7931-76c2-45d8-b8ff-e31a13b9de69?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "c3d498fd-92ca-49eb-b32b-ded0837a3811" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195757Z:c3d498fd-92ca-49eb-b32b-ded0837a3811" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDE2Mzg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "728" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1638\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638/ipConfigurations/azsmnet6071\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5dfc7931-76c2-45d8-b8ff-e31a13b9de69" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/5dfc7931-76c2-45d8-b8ff-e31a13b9de69?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "c3d498fd-92ca-49eb-b32b-ded0837a3811" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195757Z:c3d498fd-92ca-49eb-b32b-ded0837a3811" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDE2Mzg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "728" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1638\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638/ipConfigurations/azsmnet6071\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5dfc7931-76c2-45d8-b8ff-e31a13b9de69" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/5dfc7931-76c2-45d8-b8ff-e31a13b9de69?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "c3d498fd-92ca-49eb-b32b-ded0837a3811" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195757Z:c3d498fd-92ca-49eb-b32b-ded0837a3811" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDE2Mzg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6028\",\r\n \"etag\": \"W/\\\"21bbde02-74ed-4784-a8a5-fc2e26d893ee\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "728" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1638\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638/ipConfigurations/azsmnet6071\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5dfc7931-76c2-45d8-b8ff-e31a13b9de69" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/5dfc7931-76c2-45d8-b8ff-e31a13b9de69?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "c3d498fd-92ca-49eb-b32b-ded0837a3811" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195757Z:c3d498fd-92ca-49eb-b32b-ded0837a3811" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDE2Mzg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1638\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638/ipConfigurations/azsmnet6071\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a239d3e-a268-4abf-8238-f013dcb258e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"14787b2c-9a1d-44b0-b153-fbf66010d0df\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "d04529d2-0193-484d-a467-eff336ae4977" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195757Z:d04529d2-0193-484d-a467-eff336ae4977" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDE2Mzg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1638\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638/ipConfigurations/azsmnet6071\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a239d3e-a268-4abf-8238-f013dcb258e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"14787b2c-9a1d-44b0-b153-fbf66010d0df\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "d04529d2-0193-484d-a467-eff336ae4977" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195757Z:d04529d2-0193-484d-a467-eff336ae4977" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDE2Mzg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1638\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638/ipConfigurations/azsmnet6071\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a239d3e-a268-4abf-8238-f013dcb258e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"14787b2c-9a1d-44b0-b153-fbf66010d0df\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "d04529d2-0193-484d-a467-eff336ae4977" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195757Z:d04529d2-0193-484d-a467-eff336ae4977" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDE2Mzg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1638\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6071\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638/ipConfigurations/azsmnet6071\",\r\n \"etag\": \"W/\\\"14787b2c-9a1d-44b0-b153-fbf66010d0df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/virtualNetworks/azsmnet692/subnets/azsmnet6028\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a239d3e-a268-4abf-8238-f013dcb258e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"14787b2c-9a1d-44b0-b153-fbf66010d0df\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "d04529d2-0193-484d-a467-eff336ae4977" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195757Z:d04529d2-0193-484d-a467-eff336ae4977" + ], + "Date": [ + "Tue, 14 Jul 2015 19:57:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczE2MjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620\",\r\n \"name\": \"as1620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b3449020-ca3f-4092-8f80-97997a14e8df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "cf9f6f1e-15e5-4567-8442-4a7b8f657f4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195801Z:cf9f6f1e-15e5-4567-8442-4a7b8f657f4e" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczE2MjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620\",\r\n \"name\": \"as1620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b3449020-ca3f-4092-8f80-97997a14e8df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "cf9f6f1e-15e5-4567-8442-4a7b8f657f4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195801Z:cf9f6f1e-15e5-4567-8442-4a7b8f657f4e" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczE2MjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620\",\r\n \"name\": \"as1620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b3449020-ca3f-4092-8f80-97997a14e8df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "cf9f6f1e-15e5-4567-8442-4a7b8f657f4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195801Z:cf9f6f1e-15e5-4567-8442-4a7b8f657f4e" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczE2MjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620\",\r\n \"name\": \"as1620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b3449020-ca3f-4092-8f80-97997a14e8df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "cf9f6f1e-15e5-4567-8442-4a7b8f657f4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195801Z:cf9f6f1e-15e5-4567-8442-4a7b8f657f4e" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4081_1\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1586" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "01075867-feba-464b-ad81-80cb8b54bb15" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "fd2ee24b-4a38-4bba-b81b-c5b04f7addb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195805Z:fd2ee24b-4a38-4bba-b81b-c5b04f7addb2" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4081_1\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1586" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "01075867-feba-464b-ad81-80cb8b54bb15" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "fd2ee24b-4a38-4bba-b81b-c5b04f7addb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195805Z:fd2ee24b-4a38-4bba-b81b-c5b04f7addb2" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4081_1\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1586" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "01075867-feba-464b-ad81-80cb8b54bb15" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "fd2ee24b-4a38-4bba-b81b-c5b04f7addb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195805Z:fd2ee24b-4a38-4bba-b81b-c5b04f7addb2" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4081_1\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/as1620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1586" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "01075867-feba-464b-ad81-80cb8b54bb15" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "fd2ee24b-4a38-4bba-b81b-c5b04f7addb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195805Z:fd2ee24b-4a38-4bba-b81b-c5b04f7addb2" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f7c01340-be09-4c5f-974c-77db73dcf788" + ], + "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": [ + "cb702b4d-806d-4525-ab4f-38bb09e1e1b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195836Z:cb702b4d-806d-4525-ab4f-38bb09e1e1b7" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f7c01340-be09-4c5f-974c-77db73dcf788" + ], + "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": [ + "cb702b4d-806d-4525-ab4f-38bb09e1e1b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195836Z:cb702b4d-806d-4525-ab4f-38bb09e1e1b7" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f7c01340-be09-4c5f-974c-77db73dcf788" + ], + "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": [ + "cb702b4d-806d-4525-ab4f-38bb09e1e1b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195836Z:cb702b4d-806d-4525-ab4f-38bb09e1e1b7" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f7c01340-be09-4c5f-974c-77db73dcf788" + ], + "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": [ + "cb702b4d-806d-4525-ab4f-38bb09e1e1b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195836Z:cb702b4d-806d-4525-ab4f-38bb09e1e1b7" + ], + "Date": [ + "Tue, 14 Jul 2015 19:58:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "956abe97-d946-492c-962f-78f66a561ef6" + ], + "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": [ + "25d0affb-103f-4fe9-9285-6d8e64447247" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195906Z:25d0affb-103f-4fe9-9285-6d8e64447247" + ], + "Date": [ + "Tue, 14 Jul 2015 19:59:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "956abe97-d946-492c-962f-78f66a561ef6" + ], + "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": [ + "25d0affb-103f-4fe9-9285-6d8e64447247" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195906Z:25d0affb-103f-4fe9-9285-6d8e64447247" + ], + "Date": [ + "Tue, 14 Jul 2015 19:59:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "956abe97-d946-492c-962f-78f66a561ef6" + ], + "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": [ + "25d0affb-103f-4fe9-9285-6d8e64447247" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195906Z:25d0affb-103f-4fe9-9285-6d8e64447247" + ], + "Date": [ + "Tue, 14 Jul 2015 19:59:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "956abe97-d946-492c-962f-78f66a561ef6" + ], + "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": [ + "25d0affb-103f-4fe9-9285-6d8e64447247" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195906Z:25d0affb-103f-4fe9-9285-6d8e64447247" + ], + "Date": [ + "Tue, 14 Jul 2015 19:59:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5c191f7a-f6d2-42be-971a-13910108e2ad" + ], + "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": [ + "79c00e07-b5ce-43ff-8811-cf71b2bc7595" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195937Z:79c00e07-b5ce-43ff-8811-cf71b2bc7595" + ], + "Date": [ + "Tue, 14 Jul 2015 19:59:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5c191f7a-f6d2-42be-971a-13910108e2ad" + ], + "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": [ + "79c00e07-b5ce-43ff-8811-cf71b2bc7595" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195937Z:79c00e07-b5ce-43ff-8811-cf71b2bc7595" + ], + "Date": [ + "Tue, 14 Jul 2015 19:59:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5c191f7a-f6d2-42be-971a-13910108e2ad" + ], + "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": [ + "79c00e07-b5ce-43ff-8811-cf71b2bc7595" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195937Z:79c00e07-b5ce-43ff-8811-cf71b2bc7595" + ], + "Date": [ + "Tue, 14 Jul 2015 19:59:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5c191f7a-f6d2-42be-971a-13910108e2ad" + ], + "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": [ + "79c00e07-b5ce-43ff-8811-cf71b2bc7595" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195937Z:79c00e07-b5ce-43ff-8811-cf71b2bc7595" + ], + "Date": [ + "Tue, 14 Jul 2015 19:59:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7d446581-c22d-4234-8db2-222c5f970d7c" + ], + "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": [ + "1c9313a9-6949-458f-88ee-391787d74875" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200008Z:1c9313a9-6949-458f-88ee-391787d74875" + ], + "Date": [ + "Tue, 14 Jul 2015 20:00:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7d446581-c22d-4234-8db2-222c5f970d7c" + ], + "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": [ + "1c9313a9-6949-458f-88ee-391787d74875" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200008Z:1c9313a9-6949-458f-88ee-391787d74875" + ], + "Date": [ + "Tue, 14 Jul 2015 20:00:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7d446581-c22d-4234-8db2-222c5f970d7c" + ], + "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": [ + "1c9313a9-6949-458f-88ee-391787d74875" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200008Z:1c9313a9-6949-458f-88ee-391787d74875" + ], + "Date": [ + "Tue, 14 Jul 2015 20:00:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7d446581-c22d-4234-8db2-222c5f970d7c" + ], + "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": [ + "1c9313a9-6949-458f-88ee-391787d74875" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200008Z:1c9313a9-6949-458f-88ee-391787d74875" + ], + "Date": [ + "Tue, 14 Jul 2015 20:00:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "162b4bad-a945-4698-958f-2e2cf6132513" + ], + "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": [ + "0d58ef49-4b6c-4fcf-9802-c02c041de635" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200039Z:0d58ef49-4b6c-4fcf-9802-c02c041de635" + ], + "Date": [ + "Tue, 14 Jul 2015 20:00:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "162b4bad-a945-4698-958f-2e2cf6132513" + ], + "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": [ + "0d58ef49-4b6c-4fcf-9802-c02c041de635" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200039Z:0d58ef49-4b6c-4fcf-9802-c02c041de635" + ], + "Date": [ + "Tue, 14 Jul 2015 20:00:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "162b4bad-a945-4698-958f-2e2cf6132513" + ], + "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": [ + "0d58ef49-4b6c-4fcf-9802-c02c041de635" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200039Z:0d58ef49-4b6c-4fcf-9802-c02c041de635" + ], + "Date": [ + "Tue, 14 Jul 2015 20:00:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "162b4bad-a945-4698-958f-2e2cf6132513" + ], + "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": [ + "0d58ef49-4b6c-4fcf-9802-c02c041de635" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200039Z:0d58ef49-4b6c-4fcf-9802-c02c041de635" + ], + "Date": [ + "Tue, 14 Jul 2015 20:00:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ac6a292c-574a-4d6a-b062-316f23c0b924" + ], + "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": [ + "5c57e66c-a51c-41ed-a3f7-cb2c7311c226" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200109Z:5c57e66c-a51c-41ed-a3f7-cb2c7311c226" + ], + "Date": [ + "Tue, 14 Jul 2015 20:01:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ac6a292c-574a-4d6a-b062-316f23c0b924" + ], + "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": [ + "5c57e66c-a51c-41ed-a3f7-cb2c7311c226" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200109Z:5c57e66c-a51c-41ed-a3f7-cb2c7311c226" + ], + "Date": [ + "Tue, 14 Jul 2015 20:01:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ac6a292c-574a-4d6a-b062-316f23c0b924" + ], + "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": [ + "5c57e66c-a51c-41ed-a3f7-cb2c7311c226" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200109Z:5c57e66c-a51c-41ed-a3f7-cb2c7311c226" + ], + "Date": [ + "Tue, 14 Jul 2015 20:01:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ac6a292c-574a-4d6a-b062-316f23c0b924" + ], + "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": [ + "5c57e66c-a51c-41ed-a3f7-cb2c7311c226" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200109Z:5c57e66c-a51c-41ed-a3f7-cb2c7311c226" + ], + "Date": [ + "Tue, 14 Jul 2015 20:01:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b115d534-ccb5-4003-9c98-c7ed004a9408" + ], + "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": [ + "5d66d11e-85e4-44a1-95ce-ca2159282ad1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200140Z:5d66d11e-85e4-44a1-95ce-ca2159282ad1" + ], + "Date": [ + "Tue, 14 Jul 2015 20:01:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b115d534-ccb5-4003-9c98-c7ed004a9408" + ], + "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": [ + "5d66d11e-85e4-44a1-95ce-ca2159282ad1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200140Z:5d66d11e-85e4-44a1-95ce-ca2159282ad1" + ], + "Date": [ + "Tue, 14 Jul 2015 20:01:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b115d534-ccb5-4003-9c98-c7ed004a9408" + ], + "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": [ + "5d66d11e-85e4-44a1-95ce-ca2159282ad1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200140Z:5d66d11e-85e4-44a1-95ce-ca2159282ad1" + ], + "Date": [ + "Tue, 14 Jul 2015 20:01:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b115d534-ccb5-4003-9c98-c7ed004a9408" + ], + "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": [ + "5d66d11e-85e4-44a1-95ce-ca2159282ad1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200140Z:5d66d11e-85e4-44a1-95ce-ca2159282ad1" + ], + "Date": [ + "Tue, 14 Jul 2015 20:01:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c03327e-dee2-4ab0-9e0f-48a148faeafb" + ], + "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": [ + "8815dac2-4649-4bb8-aea1-717805a4cf55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200211Z:8815dac2-4649-4bb8-aea1-717805a4cf55" + ], + "Date": [ + "Tue, 14 Jul 2015 20:02:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c03327e-dee2-4ab0-9e0f-48a148faeafb" + ], + "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": [ + "8815dac2-4649-4bb8-aea1-717805a4cf55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200211Z:8815dac2-4649-4bb8-aea1-717805a4cf55" + ], + "Date": [ + "Tue, 14 Jul 2015 20:02:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c03327e-dee2-4ab0-9e0f-48a148faeafb" + ], + "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": [ + "8815dac2-4649-4bb8-aea1-717805a4cf55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200211Z:8815dac2-4649-4bb8-aea1-717805a4cf55" + ], + "Date": [ + "Tue, 14 Jul 2015 20:02:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c03327e-dee2-4ab0-9e0f-48a148faeafb" + ], + "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": [ + "8815dac2-4649-4bb8-aea1-717805a4cf55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200211Z:8815dac2-4649-4bb8-aea1-717805a4cf55" + ], + "Date": [ + "Tue, 14 Jul 2015 20:02:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "79febd24-fdb0-44ec-b613-ddfd01f62883" + ], + "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": [ + "559268c4-ec22-458d-ad05-cce672f9dae6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200241Z:559268c4-ec22-458d-ad05-cce672f9dae6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:02:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "79febd24-fdb0-44ec-b613-ddfd01f62883" + ], + "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": [ + "559268c4-ec22-458d-ad05-cce672f9dae6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200241Z:559268c4-ec22-458d-ad05-cce672f9dae6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:02:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "79febd24-fdb0-44ec-b613-ddfd01f62883" + ], + "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": [ + "559268c4-ec22-458d-ad05-cce672f9dae6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200241Z:559268c4-ec22-458d-ad05-cce672f9dae6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:02:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "79febd24-fdb0-44ec-b613-ddfd01f62883" + ], + "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": [ + "559268c4-ec22-458d-ad05-cce672f9dae6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200241Z:559268c4-ec22-458d-ad05-cce672f9dae6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:02:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b80896ec-f1fb-4535-816f-55476b5e18aa" + ], + "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": [ + "4392599d-137a-4c77-abb0-0523cf97d0ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200312Z:4392599d-137a-4c77-abb0-0523cf97d0ce" + ], + "Date": [ + "Tue, 14 Jul 2015 20:03:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b80896ec-f1fb-4535-816f-55476b5e18aa" + ], + "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": [ + "4392599d-137a-4c77-abb0-0523cf97d0ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200312Z:4392599d-137a-4c77-abb0-0523cf97d0ce" + ], + "Date": [ + "Tue, 14 Jul 2015 20:03:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b80896ec-f1fb-4535-816f-55476b5e18aa" + ], + "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": [ + "4392599d-137a-4c77-abb0-0523cf97d0ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200312Z:4392599d-137a-4c77-abb0-0523cf97d0ce" + ], + "Date": [ + "Tue, 14 Jul 2015 20:03:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b80896ec-f1fb-4535-816f-55476b5e18aa" + ], + "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": [ + "4392599d-137a-4c77-abb0-0523cf97d0ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200312Z:4392599d-137a-4c77-abb0-0523cf97d0ce" + ], + "Date": [ + "Tue, 14 Jul 2015 20:03:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d54bc0cd-d51a-407b-ad33-20a782489001" + ], + "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": [ + "aca65d9c-f619-44f8-80e6-c4fbc66d1774" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200343Z:aca65d9c-f619-44f8-80e6-c4fbc66d1774" + ], + "Date": [ + "Tue, 14 Jul 2015 20:03:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d54bc0cd-d51a-407b-ad33-20a782489001" + ], + "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": [ + "aca65d9c-f619-44f8-80e6-c4fbc66d1774" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200343Z:aca65d9c-f619-44f8-80e6-c4fbc66d1774" + ], + "Date": [ + "Tue, 14 Jul 2015 20:03:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d54bc0cd-d51a-407b-ad33-20a782489001" + ], + "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": [ + "aca65d9c-f619-44f8-80e6-c4fbc66d1774" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200343Z:aca65d9c-f619-44f8-80e6-c4fbc66d1774" + ], + "Date": [ + "Tue, 14 Jul 2015 20:03:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d54bc0cd-d51a-407b-ad33-20a782489001" + ], + "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": [ + "aca65d9c-f619-44f8-80e6-c4fbc66d1774" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200343Z:aca65d9c-f619-44f8-80e6-c4fbc66d1774" + ], + "Date": [ + "Tue, 14 Jul 2015 20:03:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9e653cf2-45a9-47ac-97f6-6ab451c9cfcc" + ], + "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": [ + "9f829e88-6fae-4605-944d-94d50353a1fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200413Z:9f829e88-6fae-4605-944d-94d50353a1fa" + ], + "Date": [ + "Tue, 14 Jul 2015 20:04:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9e653cf2-45a9-47ac-97f6-6ab451c9cfcc" + ], + "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": [ + "9f829e88-6fae-4605-944d-94d50353a1fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200413Z:9f829e88-6fae-4605-944d-94d50353a1fa" + ], + "Date": [ + "Tue, 14 Jul 2015 20:04:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9e653cf2-45a9-47ac-97f6-6ab451c9cfcc" + ], + "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": [ + "9f829e88-6fae-4605-944d-94d50353a1fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200413Z:9f829e88-6fae-4605-944d-94d50353a1fa" + ], + "Date": [ + "Tue, 14 Jul 2015 20:04:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9e653cf2-45a9-47ac-97f6-6ab451c9cfcc" + ], + "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": [ + "9f829e88-6fae-4605-944d-94d50353a1fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200413Z:9f829e88-6fae-4605-944d-94d50353a1fa" + ], + "Date": [ + "Tue, 14 Jul 2015 20:04:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4450785f-7a97-4871-91d9-cccb7f56edae" + ], + "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": [ + "848bdf78-53d7-4af6-81e9-1f893a808fa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200444Z:848bdf78-53d7-4af6-81e9-1f893a808fa8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:04:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4450785f-7a97-4871-91d9-cccb7f56edae" + ], + "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": [ + "848bdf78-53d7-4af6-81e9-1f893a808fa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200444Z:848bdf78-53d7-4af6-81e9-1f893a808fa8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:04:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4450785f-7a97-4871-91d9-cccb7f56edae" + ], + "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": [ + "848bdf78-53d7-4af6-81e9-1f893a808fa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200444Z:848bdf78-53d7-4af6-81e9-1f893a808fa8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:04:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4450785f-7a97-4871-91d9-cccb7f56edae" + ], + "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": [ + "848bdf78-53d7-4af6-81e9-1f893a808fa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200444Z:848bdf78-53d7-4af6-81e9-1f893a808fa8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:04:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e88bff61-7a0e-439b-b8e5-c4c470cdfc90" + ], + "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": [ + "7b4ecc2e-b32b-4767-aa17-fcfd0cf627c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200515Z:7b4ecc2e-b32b-4767-aa17-fcfd0cf627c6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:05:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e88bff61-7a0e-439b-b8e5-c4c470cdfc90" + ], + "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": [ + "7b4ecc2e-b32b-4767-aa17-fcfd0cf627c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200515Z:7b4ecc2e-b32b-4767-aa17-fcfd0cf627c6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:05:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e88bff61-7a0e-439b-b8e5-c4c470cdfc90" + ], + "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": [ + "7b4ecc2e-b32b-4767-aa17-fcfd0cf627c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200515Z:7b4ecc2e-b32b-4767-aa17-fcfd0cf627c6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:05:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e88bff61-7a0e-439b-b8e5-c4c470cdfc90" + ], + "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": [ + "7b4ecc2e-b32b-4767-aa17-fcfd0cf627c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200515Z:7b4ecc2e-b32b-4767-aa17-fcfd0cf627c6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:05:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cd3633b8-c9ce-4901-8541-347007a14dd1" + ], + "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": [ + "dbbb5182-7f7d-452d-a647-cd96cf344983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200545Z:dbbb5182-7f7d-452d-a647-cd96cf344983" + ], + "Date": [ + "Tue, 14 Jul 2015 20:05:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cd3633b8-c9ce-4901-8541-347007a14dd1" + ], + "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": [ + "dbbb5182-7f7d-452d-a647-cd96cf344983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200545Z:dbbb5182-7f7d-452d-a647-cd96cf344983" + ], + "Date": [ + "Tue, 14 Jul 2015 20:05:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cd3633b8-c9ce-4901-8541-347007a14dd1" + ], + "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": [ + "dbbb5182-7f7d-452d-a647-cd96cf344983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200545Z:dbbb5182-7f7d-452d-a647-cd96cf344983" + ], + "Date": [ + "Tue, 14 Jul 2015 20:05:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cd3633b8-c9ce-4901-8541-347007a14dd1" + ], + "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": [ + "dbbb5182-7f7d-452d-a647-cd96cf344983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200545Z:dbbb5182-7f7d-452d-a647-cd96cf344983" + ], + "Date": [ + "Tue, 14 Jul 2015 20:05:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ec52020c-0eef-428d-91cd-549953c5e6ff" + ], + "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": [ + "b587b40b-db56-4b5c-a872-99d160a288fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200616Z:b587b40b-db56-4b5c-a872-99d160a288fd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:06:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ec52020c-0eef-428d-91cd-549953c5e6ff" + ], + "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": [ + "b587b40b-db56-4b5c-a872-99d160a288fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200616Z:b587b40b-db56-4b5c-a872-99d160a288fd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:06:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ec52020c-0eef-428d-91cd-549953c5e6ff" + ], + "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": [ + "b587b40b-db56-4b5c-a872-99d160a288fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200616Z:b587b40b-db56-4b5c-a872-99d160a288fd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:06:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ec52020c-0eef-428d-91cd-549953c5e6ff" + ], + "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": [ + "b587b40b-db56-4b5c-a872-99d160a288fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200616Z:b587b40b-db56-4b5c-a872-99d160a288fd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:06:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e634d2e9-e41e-4dd1-a5e3-bd5b74892806" + ], + "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": [ + "75fe3407-bc8d-4fe9-ba75-524ae5dc5949" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200647Z:75fe3407-bc8d-4fe9-ba75-524ae5dc5949" + ], + "Date": [ + "Tue, 14 Jul 2015 20:06:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e634d2e9-e41e-4dd1-a5e3-bd5b74892806" + ], + "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": [ + "75fe3407-bc8d-4fe9-ba75-524ae5dc5949" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200647Z:75fe3407-bc8d-4fe9-ba75-524ae5dc5949" + ], + "Date": [ + "Tue, 14 Jul 2015 20:06:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e634d2e9-e41e-4dd1-a5e3-bd5b74892806" + ], + "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": [ + "75fe3407-bc8d-4fe9-ba75-524ae5dc5949" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200647Z:75fe3407-bc8d-4fe9-ba75-524ae5dc5949" + ], + "Date": [ + "Tue, 14 Jul 2015 20:06:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e634d2e9-e41e-4dd1-a5e3-bd5b74892806" + ], + "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": [ + "75fe3407-bc8d-4fe9-ba75-524ae5dc5949" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200647Z:75fe3407-bc8d-4fe9-ba75-524ae5dc5949" + ], + "Date": [ + "Tue, 14 Jul 2015 20:06:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "29bc640e-cfc1-401e-befa-2631279fc6b9" + ], + "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": [ + "ea16a746-3202-42d3-9954-fbfe002ba2f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200718Z:ea16a746-3202-42d3-9954-fbfe002ba2f8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:07:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "29bc640e-cfc1-401e-befa-2631279fc6b9" + ], + "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": [ + "ea16a746-3202-42d3-9954-fbfe002ba2f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200718Z:ea16a746-3202-42d3-9954-fbfe002ba2f8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:07:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "29bc640e-cfc1-401e-befa-2631279fc6b9" + ], + "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": [ + "ea16a746-3202-42d3-9954-fbfe002ba2f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200718Z:ea16a746-3202-42d3-9954-fbfe002ba2f8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:07:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "29bc640e-cfc1-401e-befa-2631279fc6b9" + ], + "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": [ + "ea16a746-3202-42d3-9954-fbfe002ba2f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200718Z:ea16a746-3202-42d3-9954-fbfe002ba2f8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:07:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "664747b3-19aa-490c-ae1e-3d259b6484c6" + ], + "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": [ + "6c1848bf-fc9e-4b32-ad3b-06564f6f102d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200748Z:6c1848bf-fc9e-4b32-ad3b-06564f6f102d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "664747b3-19aa-490c-ae1e-3d259b6484c6" + ], + "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": [ + "6c1848bf-fc9e-4b32-ad3b-06564f6f102d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200748Z:6c1848bf-fc9e-4b32-ad3b-06564f6f102d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "664747b3-19aa-490c-ae1e-3d259b6484c6" + ], + "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": [ + "6c1848bf-fc9e-4b32-ad3b-06564f6f102d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200748Z:6c1848bf-fc9e-4b32-ad3b-06564f6f102d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "664747b3-19aa-490c-ae1e-3d259b6484c6" + ], + "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": [ + "6c1848bf-fc9e-4b32-ad3b-06564f6f102d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200748Z:6c1848bf-fc9e-4b32-ad3b-06564f6f102d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\",\r\n \"endTime\": \"2015-07-14T13:07:59.3995834-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f9ddb80e-1e56-4275-b6d7-e4b6deade34b" + ], + "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": [ + "333ff86e-2407-453e-aca9-d79c66dc7575" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200819Z:333ff86e-2407-453e-aca9-d79c66dc7575" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\",\r\n \"endTime\": \"2015-07-14T13:07:59.3995834-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f9ddb80e-1e56-4275-b6d7-e4b6deade34b" + ], + "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": [ + "333ff86e-2407-453e-aca9-d79c66dc7575" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200819Z:333ff86e-2407-453e-aca9-d79c66dc7575" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\",\r\n \"endTime\": \"2015-07-14T13:07:59.3995834-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f9ddb80e-1e56-4275-b6d7-e4b6deade34b" + ], + "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": [ + "333ff86e-2407-453e-aca9-d79c66dc7575" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200819Z:333ff86e-2407-453e-aca9-d79c66dc7575" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/01075867-feba-464b-ad81-80cb8b54bb15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAxMDc1ODY3LWZlYmEtNDY0Yi1hZDgxLTgwY2I4YjU0YmIxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"01075867-feba-464b-ad81-80cb8b54bb15\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:58:03.0638418-07:00\",\r\n \"endTime\": \"2015-07-14T13:07:59.3995834-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f9ddb80e-1e56-4275-b6d7-e4b6deade34b" + ], + "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": [ + "333ff86e-2407-453e-aca9-d79c66dc7575" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200819Z:333ff86e-2407-453e-aca9-d79c66dc7575" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a35a95c7-ad4d-43fa-b432-9ae5f3308441" + ], + "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": [ + "0c07a44a-44d3-44f1-903b-4410e68747d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200820Z:0c07a44a-44d3-44f1-903b-4410e68747d8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a35a95c7-ad4d-43fa-b432-9ae5f3308441" + ], + "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": [ + "0c07a44a-44d3-44f1-903b-4410e68747d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200820Z:0c07a44a-44d3-44f1-903b-4410e68747d8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a35a95c7-ad4d-43fa-b432-9ae5f3308441" + ], + "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": [ + "0c07a44a-44d3-44f1-903b-4410e68747d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200820Z:0c07a44a-44d3-44f1-903b-4410e68747d8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a35a95c7-ad4d-43fa-b432-9ae5f3308441" + ], + "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": [ + "0c07a44a-44d3-44f1-903b-4410e68747d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200820Z:0c07a44a-44d3-44f1-903b-4410e68747d8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "13f289c2-055b-4779-8084-b79eca2e24c4" + ], + "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": [ + "7c9f3b73-4eca-44ce-94cb-1e683feb3436" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200820Z:7c9f3b73-4eca-44ce-94cb-1e683feb3436" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "13f289c2-055b-4779-8084-b79eca2e24c4" + ], + "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": [ + "7c9f3b73-4eca-44ce-94cb-1e683feb3436" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200820Z:7c9f3b73-4eca-44ce-94cb-1e683feb3436" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "13f289c2-055b-4779-8084-b79eca2e24c4" + ], + "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": [ + "7c9f3b73-4eca-44ce-94cb-1e683feb3436" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200820Z:7c9f3b73-4eca-44ce-94cb-1e683feb3436" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMTgxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "13f289c2-055b-4779-8084-b79eca2e24c4" + ], + "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": [ + "7c9f3b73-4eca-44ce-94cb-1e683feb3436" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200820Z:7c9f3b73-4eca-44ce-94cb-1e683feb3436" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_2?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2\",\r\n \"name\": \"pslibtest4081_2\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "67c74030-1209-4cee-8b93-1ab955369154" + ], + "x-ms-correlation-request-id": [ + "67c74030-1209-4cee-8b93-1ab955369154" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200823Z:67c74030-1209-4cee-8b93-1ab955369154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_2?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2\",\r\n \"name\": \"pslibtest4081_2\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "67c74030-1209-4cee-8b93-1ab955369154" + ], + "x-ms-correlation-request-id": [ + "67c74030-1209-4cee-8b93-1ab955369154" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200823Z:67c74030-1209-4cee-8b93-1ab955369154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_2?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2\",\r\n \"name\": \"pslibtest4081_2\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "67c74030-1209-4cee-8b93-1ab955369154" + ], + "x-ms-correlation-request-id": [ + "67c74030-1209-4cee-8b93-1ab955369154" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200823Z:67c74030-1209-4cee-8b93-1ab955369154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_2?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2\",\r\n \"name\": \"pslibtest4081_2\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "67c74030-1209-4cee-8b93-1ab955369154" + ], + "x-ms-correlation-request-id": [ + "67c74030-1209-4cee-8b93-1ab955369154" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200823Z:67c74030-1209-4cee-8b93-1ab955369154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"43806487-964a-4016-8030-3cadbc04decb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c764ec2d-dff1-450d-be82-920f07a9d387" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c764ec2d-dff1-450d-be82-920f07a9d387?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "a3b05cae-2678-4c92-bbe7-ba3df9ff910d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200828Z:a3b05cae-2678-4c92-bbe7-ba3df9ff910d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:28 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"43806487-964a-4016-8030-3cadbc04decb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c764ec2d-dff1-450d-be82-920f07a9d387" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c764ec2d-dff1-450d-be82-920f07a9d387?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "a3b05cae-2678-4c92-bbe7-ba3df9ff910d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200828Z:a3b05cae-2678-4c92-bbe7-ba3df9ff910d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:28 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"43806487-964a-4016-8030-3cadbc04decb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c764ec2d-dff1-450d-be82-920f07a9d387" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c764ec2d-dff1-450d-be82-920f07a9d387?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "a3b05cae-2678-4c92-bbe7-ba3df9ff910d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200828Z:a3b05cae-2678-4c92-bbe7-ba3df9ff910d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:28 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"43806487-964a-4016-8030-3cadbc04decb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c764ec2d-dff1-450d-be82-920f07a9d387" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c764ec2d-dff1-450d-be82-920f07a9d387?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "a3b05cae-2678-4c92-bbe7-ba3df9ff910d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200828Z:a3b05cae-2678-4c92-bbe7-ba3df9ff910d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:28 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c764ec2d-dff1-450d-be82-920f07a9d387?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M3NjRlYzJkLWRmZjEtNDUwZC1iZTgyLTkyMGYwN2E5ZDM4Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1d6b867-8ffb-456c-a933-a0ea5f2133bf" + ], + "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": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "c9d55c0e-1050-4f1e-ac91-76b85bbe51ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:c9d55c0e-1050-4f1e-ac91-76b85bbe51ac" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c764ec2d-dff1-450d-be82-920f07a9d387?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M3NjRlYzJkLWRmZjEtNDUwZC1iZTgyLTkyMGYwN2E5ZDM4Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1d6b867-8ffb-456c-a933-a0ea5f2133bf" + ], + "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": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "c9d55c0e-1050-4f1e-ac91-76b85bbe51ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:c9d55c0e-1050-4f1e-ac91-76b85bbe51ac" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c764ec2d-dff1-450d-be82-920f07a9d387?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M3NjRlYzJkLWRmZjEtNDUwZC1iZTgyLTkyMGYwN2E5ZDM4Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1d6b867-8ffb-456c-a933-a0ea5f2133bf" + ], + "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": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "c9d55c0e-1050-4f1e-ac91-76b85bbe51ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:c9d55c0e-1050-4f1e-ac91-76b85bbe51ac" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c764ec2d-dff1-450d-be82-920f07a9d387?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M3NjRlYzJkLWRmZjEtNDUwZC1iZTgyLTkyMGYwN2E5ZDM4Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1d6b867-8ffb-456c-a933-a0ea5f2133bf" + ], + "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": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "c9d55c0e-1050-4f1e-ac91-76b85bbe51ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:c9d55c0e-1050-4f1e-ac91-76b85bbe51ac" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"c4894836-beba-46ec-bbe7-d6e234aecff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9df58642-c679-467e-9588-cad7354f9327" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c4894836-beba-46ec-bbe7-d6e234aecff5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "d6322890-da81-4fa5-8154-a816408db751" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:d6322890-da81-4fa5-8154-a816408db751" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"c4894836-beba-46ec-bbe7-d6e234aecff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9df58642-c679-467e-9588-cad7354f9327" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c4894836-beba-46ec-bbe7-d6e234aecff5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "d6322890-da81-4fa5-8154-a816408db751" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:d6322890-da81-4fa5-8154-a816408db751" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"c4894836-beba-46ec-bbe7-d6e234aecff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9df58642-c679-467e-9588-cad7354f9327" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c4894836-beba-46ec-bbe7-d6e234aecff5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "d6322890-da81-4fa5-8154-a816408db751" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:d6322890-da81-4fa5-8154-a816408db751" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"c4894836-beba-46ec-bbe7-d6e234aecff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9df58642-c679-467e-9588-cad7354f9327" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c4894836-beba-46ec-bbe7-d6e234aecff5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "d6322890-da81-4fa5-8154-a816408db751" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:d6322890-da81-4fa5-8154-a816408db751" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"c4894836-beba-46ec-bbe7-d6e234aecff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "91d69442-7782-41f1-98f7-175261f587e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c4894836-beba-46ec-bbe7-d6e234aecff5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "5347fb72-4a93-4e59-8587-c9085ad189f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:5347fb72-4a93-4e59-8587-c9085ad189f6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"c4894836-beba-46ec-bbe7-d6e234aecff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "91d69442-7782-41f1-98f7-175261f587e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c4894836-beba-46ec-bbe7-d6e234aecff5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "5347fb72-4a93-4e59-8587-c9085ad189f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:5347fb72-4a93-4e59-8587-c9085ad189f6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"c4894836-beba-46ec-bbe7-d6e234aecff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "91d69442-7782-41f1-98f7-175261f587e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c4894836-beba-46ec-bbe7-d6e234aecff5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "5347fb72-4a93-4e59-8587-c9085ad189f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:5347fb72-4a93-4e59-8587-c9085ad189f6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDk3MjcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9727\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/publicIPAddresses/azsmnet9727\",\r\n \"etag\": \"W/\\\"c4894836-beba-46ec-bbe7-d6e234aecff5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5644\",\r\n \"fqdn\": \"azsmnet5644.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "91d69442-7782-41f1-98f7-175261f587e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c4894836-beba-46ec-bbe7-d6e234aecff5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "5347fb72-4a93-4e59-8587-c9085ad189f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200839Z:5347fb72-4a93-4e59-8587-c9085ad189f6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1037\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037\",\r\n \"etag\": \"W/\\\"fd2444c1-cd37-4c9f-9ac4-f507497e9c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"fd2444c1-cd37-4c9f-9ac4-f507497e9c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf737da1-40b1-4ec6-ad8e-4493ded64d02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cf737da1-40b1-4ec6-ad8e-4493ded64d02?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "c02290fc-e5c4-438c-b2b8-122567e6d9f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200843Z:c02290fc-e5c4-438c-b2b8-122567e6d9f6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1037\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037\",\r\n \"etag\": \"W/\\\"fd2444c1-cd37-4c9f-9ac4-f507497e9c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"fd2444c1-cd37-4c9f-9ac4-f507497e9c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf737da1-40b1-4ec6-ad8e-4493ded64d02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cf737da1-40b1-4ec6-ad8e-4493ded64d02?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "c02290fc-e5c4-438c-b2b8-122567e6d9f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200843Z:c02290fc-e5c4-438c-b2b8-122567e6d9f6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1037\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037\",\r\n \"etag\": \"W/\\\"fd2444c1-cd37-4c9f-9ac4-f507497e9c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"fd2444c1-cd37-4c9f-9ac4-f507497e9c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf737da1-40b1-4ec6-ad8e-4493ded64d02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cf737da1-40b1-4ec6-ad8e-4493ded64d02?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "c02290fc-e5c4-438c-b2b8-122567e6d9f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200843Z:c02290fc-e5c4-438c-b2b8-122567e6d9f6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1037\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037\",\r\n \"etag\": \"W/\\\"fd2444c1-cd37-4c9f-9ac4-f507497e9c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"fd2444c1-cd37-4c9f-9ac4-f507497e9c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf737da1-40b1-4ec6-ad8e-4493ded64d02" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cf737da1-40b1-4ec6-ad8e-4493ded64d02?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "c02290fc-e5c4-438c-b2b8-122567e6d9f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200843Z:c02290fc-e5c4-438c-b2b8-122567e6d9f6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cf737da1-40b1-4ec6-ad8e-4493ded64d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmNzM3ZGExLTQwYjEtNGVjNi1hZDhlLTQ0OTNkZWQ2NGQwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8bc52214-e216-416e-8693-8b07e8ff011e" + ], + "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": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "680dd7fa-08f0-4ed6-9445-e64e08cf23b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200853Z:680dd7fa-08f0-4ed6-9445-e64e08cf23b5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cf737da1-40b1-4ec6-ad8e-4493ded64d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmNzM3ZGExLTQwYjEtNGVjNi1hZDhlLTQ0OTNkZWQ2NGQwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8bc52214-e216-416e-8693-8b07e8ff011e" + ], + "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": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "680dd7fa-08f0-4ed6-9445-e64e08cf23b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200853Z:680dd7fa-08f0-4ed6-9445-e64e08cf23b5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cf737da1-40b1-4ec6-ad8e-4493ded64d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmNzM3ZGExLTQwYjEtNGVjNi1hZDhlLTQ0OTNkZWQ2NGQwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8bc52214-e216-416e-8693-8b07e8ff011e" + ], + "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": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "680dd7fa-08f0-4ed6-9445-e64e08cf23b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200853Z:680dd7fa-08f0-4ed6-9445-e64e08cf23b5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cf737da1-40b1-4ec6-ad8e-4493ded64d02?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmNzM3ZGExLTQwYjEtNGVjNi1hZDhlLTQ0OTNkZWQ2NGQwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8bc52214-e216-416e-8693-8b07e8ff011e" + ], + "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": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "680dd7fa-08f0-4ed6-9445-e64e08cf23b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200853Z:680dd7fa-08f0-4ed6-9445-e64e08cf23b5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1037\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "965" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd1d7096-c2d3-43e0-8e6a-621bf1b91406" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"085f9377-307a-400c-b2a1-5500147fde9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "f20ba33e-45b7-4243-87ac-b8997f202b0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200854Z:f20ba33e-45b7-4243-87ac-b8997f202b0b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1037\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "965" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd1d7096-c2d3-43e0-8e6a-621bf1b91406" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"085f9377-307a-400c-b2a1-5500147fde9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "f20ba33e-45b7-4243-87ac-b8997f202b0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200854Z:f20ba33e-45b7-4243-87ac-b8997f202b0b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1037\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "965" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd1d7096-c2d3-43e0-8e6a-621bf1b91406" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"085f9377-307a-400c-b2a1-5500147fde9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "f20ba33e-45b7-4243-87ac-b8997f202b0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200854Z:f20ba33e-45b7-4243-87ac-b8997f202b0b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1037\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "965" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd1d7096-c2d3-43e0-8e6a-621bf1b91406" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"085f9377-307a-400c-b2a1-5500147fde9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "f20ba33e-45b7-4243-87ac-b8997f202b0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200854Z:f20ba33e-45b7-4243-87ac-b8997f202b0b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037/subnets/azsmnet8847?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3L3N1Ym5ldHMvYXpzbW5ldDg4NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c44423cf-ee64-4450-83ea-62718e484107" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"085f9377-307a-400c-b2a1-5500147fde9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "af2a22fe-3133-4ea1-8a8e-63848d9d51fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200854Z:af2a22fe-3133-4ea1-8a8e-63848d9d51fb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037/subnets/azsmnet8847?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3L3N1Ym5ldHMvYXpzbW5ldDg4NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c44423cf-ee64-4450-83ea-62718e484107" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"085f9377-307a-400c-b2a1-5500147fde9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "af2a22fe-3133-4ea1-8a8e-63848d9d51fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200854Z:af2a22fe-3133-4ea1-8a8e-63848d9d51fb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037/subnets/azsmnet8847?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3L3N1Ym5ldHMvYXpzbW5ldDg4NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c44423cf-ee64-4450-83ea-62718e484107" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"085f9377-307a-400c-b2a1-5500147fde9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "af2a22fe-3133-4ea1-8a8e-63848d9d51fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200854Z:af2a22fe-3133-4ea1-8a8e-63848d9d51fb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualnetworks/azsmnet1037/subnets/azsmnet8847?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL2F6c21uZXQxMDM3L3N1Ym5ldHMvYXpzbW5ldDg4NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8847\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c44423cf-ee64-4450-83ea-62718e484107" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"085f9377-307a-400c-b2a1-5500147fde9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "af2a22fe-3133-4ea1-8a8e-63848d9d51fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200854Z:af2a22fe-3133-4ea1-8a8e-63848d9d51fb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "729" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2404\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404/ipConfigurations/azsmnet7441\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0999ac41-1c8c-4825-9795-ca26082773e3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0999ac41-1c8c-4825-9795-ca26082773e3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "ffe64087-7e48-4002-8247-e1f19395f958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200858Z:ffe64087-7e48-4002-8247-e1f19395f958" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "729" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2404\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404/ipConfigurations/azsmnet7441\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0999ac41-1c8c-4825-9795-ca26082773e3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0999ac41-1c8c-4825-9795-ca26082773e3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "ffe64087-7e48-4002-8247-e1f19395f958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200858Z:ffe64087-7e48-4002-8247-e1f19395f958" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "729" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2404\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404/ipConfigurations/azsmnet7441\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0999ac41-1c8c-4825-9795-ca26082773e3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0999ac41-1c8c-4825-9795-ca26082773e3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "ffe64087-7e48-4002-8247-e1f19395f958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200858Z:ffe64087-7e48-4002-8247-e1f19395f958" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet8847\",\r\n \"etag\": \"W/\\\"085f9377-307a-400c-b2a1-5500147fde9b\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "729" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2404\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404/ipConfigurations/azsmnet7441\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0999ac41-1c8c-4825-9795-ca26082773e3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0999ac41-1c8c-4825-9795-ca26082773e3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "ffe64087-7e48-4002-8247-e1f19395f958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200858Z:ffe64087-7e48-4002-8247-e1f19395f958" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2404\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404/ipConfigurations/azsmnet7441\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4c197ee1-8d48-4a37-8fce-eb2ad61e49ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "b3925881-4429-4c70-9621-7be2688fa700" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200858Z:b3925881-4429-4c70-9621-7be2688fa700" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2404\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404/ipConfigurations/azsmnet7441\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4c197ee1-8d48-4a37-8fce-eb2ad61e49ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "b3925881-4429-4c70-9621-7be2688fa700" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200858Z:b3925881-4429-4c70-9621-7be2688fa700" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2404\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404/ipConfigurations/azsmnet7441\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4c197ee1-8d48-4a37-8fce-eb2ad61e49ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "b3925881-4429-4c70-9621-7be2688fa700" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200858Z:b3925881-4429-4c70-9621-7be2688fa700" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet2404\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7441\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404/ipConfigurations/azsmnet7441\",\r\n \"etag\": \"W/\\\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/virtualNetworks/azsmnet1037/subnets/azsmnet8847\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1158" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4c197ee1-8d48-4a37-8fce-eb2ad61e49ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"18ccda49-18c2-44f1-bac5-43169e4e3b0d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "b3925881-4429-4c70-9621-7be2688fa700" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200858Z:b3925881-4429-4c70-9621-7be2688fa700" + ], + "Date": [ + "Tue, 14 Jul 2015 20:08:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczE2MjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620\",\r\n \"name\": \"as1620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5a8badea-103b-443c-a36d-f2513c365d71" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "8015da6c-1d4e-4c82-9067-b7fcc4daf685" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200902Z:8015da6c-1d4e-4c82-9067-b7fcc4daf685" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczE2MjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620\",\r\n \"name\": \"as1620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5a8badea-103b-443c-a36d-f2513c365d71" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "8015da6c-1d4e-4c82-9067-b7fcc4daf685" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200902Z:8015da6c-1d4e-4c82-9067-b7fcc4daf685" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczE2MjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620\",\r\n \"name\": \"as1620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5a8badea-103b-443c-a36d-f2513c365d71" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "8015da6c-1d4e-4c82-9067-b7fcc4daf685" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200902Z:8015da6c-1d4e-4c82-9067-b7fcc4daf685" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczE2MjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620\",\r\n \"name\": \"as1620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5a8badea-103b-443c-a36d-f2513c365d71" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "8015da6c-1d4e-4c82-9067-b7fcc4daf685" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200902Z:8015da6c-1d4e-4c82-9067-b7fcc4daf685" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4081_2\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bd9da831-6963-4f6c-a5bb-c842ca6b6eed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "905c5e61-3457-46d3-b27d-1c79f71a2706" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200905Z:905c5e61-3457-46d3-b27d-1c79f71a2706" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4081_2\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bd9da831-6963-4f6c-a5bb-c842ca6b6eed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "905c5e61-3457-46d3-b27d-1c79f71a2706" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200905Z:905c5e61-3457-46d3-b27d-1c79f71a2706" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4081_2\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bd9da831-6963-4f6c-a5bb-c842ca6b6eed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "905c5e61-3457-46d3-b27d-1c79f71a2706" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200905Z:905c5e61-3457-46d3-b27d-1c79f71a2706" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4081_2\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/as1620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bd9da831-6963-4f6c-a5bb-c842ca6b6eed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "905c5e61-3457-46d3-b27d-1c79f71a2706" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200905Z:905c5e61-3457-46d3-b27d-1c79f71a2706" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a38081f6-4f4f-498e-b087-44da7b0d6add" + ], + "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": [ + "4d75fd7b-4f7f-42b3-90ca-56c60ef07b42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200936Z:4d75fd7b-4f7f-42b3-90ca-56c60ef07b42" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a38081f6-4f4f-498e-b087-44da7b0d6add" + ], + "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": [ + "4d75fd7b-4f7f-42b3-90ca-56c60ef07b42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200936Z:4d75fd7b-4f7f-42b3-90ca-56c60ef07b42" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a38081f6-4f4f-498e-b087-44da7b0d6add" + ], + "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": [ + "4d75fd7b-4f7f-42b3-90ca-56c60ef07b42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200936Z:4d75fd7b-4f7f-42b3-90ca-56c60ef07b42" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a38081f6-4f4f-498e-b087-44da7b0d6add" + ], + "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": [ + "4d75fd7b-4f7f-42b3-90ca-56c60ef07b42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T200936Z:4d75fd7b-4f7f-42b3-90ca-56c60ef07b42" + ], + "Date": [ + "Tue, 14 Jul 2015 20:09:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b5a73eab-9748-47ee-bbd5-313f9b900062" + ], + "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": [ + "02064b61-9384-4d93-81db-b34195744577" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201007Z:02064b61-9384-4d93-81db-b34195744577" + ], + "Date": [ + "Tue, 14 Jul 2015 20:10:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b5a73eab-9748-47ee-bbd5-313f9b900062" + ], + "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": [ + "02064b61-9384-4d93-81db-b34195744577" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201007Z:02064b61-9384-4d93-81db-b34195744577" + ], + "Date": [ + "Tue, 14 Jul 2015 20:10:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b5a73eab-9748-47ee-bbd5-313f9b900062" + ], + "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": [ + "02064b61-9384-4d93-81db-b34195744577" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201007Z:02064b61-9384-4d93-81db-b34195744577" + ], + "Date": [ + "Tue, 14 Jul 2015 20:10:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b5a73eab-9748-47ee-bbd5-313f9b900062" + ], + "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": [ + "02064b61-9384-4d93-81db-b34195744577" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201007Z:02064b61-9384-4d93-81db-b34195744577" + ], + "Date": [ + "Tue, 14 Jul 2015 20:10:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "06e37e71-47fb-4766-aea3-b72944c2aa41" + ], + "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": [ + "01aacb4f-2406-451d-9eb3-5c76011e0ba5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201038Z:01aacb4f-2406-451d-9eb3-5c76011e0ba5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:10:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "06e37e71-47fb-4766-aea3-b72944c2aa41" + ], + "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": [ + "01aacb4f-2406-451d-9eb3-5c76011e0ba5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201038Z:01aacb4f-2406-451d-9eb3-5c76011e0ba5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:10:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "06e37e71-47fb-4766-aea3-b72944c2aa41" + ], + "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": [ + "01aacb4f-2406-451d-9eb3-5c76011e0ba5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201038Z:01aacb4f-2406-451d-9eb3-5c76011e0ba5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:10:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "06e37e71-47fb-4766-aea3-b72944c2aa41" + ], + "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": [ + "01aacb4f-2406-451d-9eb3-5c76011e0ba5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201038Z:01aacb4f-2406-451d-9eb3-5c76011e0ba5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:10:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1f1bab8f-2a7f-42ba-9010-d9726a4ce6eb" + ], + "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": [ + "abc21f77-6b3a-4192-9fd6-2201b58be9fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201109Z:abc21f77-6b3a-4192-9fd6-2201b58be9fd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:11:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1f1bab8f-2a7f-42ba-9010-d9726a4ce6eb" + ], + "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": [ + "abc21f77-6b3a-4192-9fd6-2201b58be9fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201109Z:abc21f77-6b3a-4192-9fd6-2201b58be9fd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:11:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1f1bab8f-2a7f-42ba-9010-d9726a4ce6eb" + ], + "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": [ + "abc21f77-6b3a-4192-9fd6-2201b58be9fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201109Z:abc21f77-6b3a-4192-9fd6-2201b58be9fd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:11:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1f1bab8f-2a7f-42ba-9010-d9726a4ce6eb" + ], + "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": [ + "abc21f77-6b3a-4192-9fd6-2201b58be9fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201109Z:abc21f77-6b3a-4192-9fd6-2201b58be9fd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:11:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e79758fd-6c3a-47a9-b985-a1e87289a2e9" + ], + "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": [ + "50e1dd0d-a5a9-4e5c-b3dc-e272cee3b5a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201140Z:50e1dd0d-a5a9-4e5c-b3dc-e272cee3b5a2" + ], + "Date": [ + "Tue, 14 Jul 2015 20:11:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e79758fd-6c3a-47a9-b985-a1e87289a2e9" + ], + "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": [ + "50e1dd0d-a5a9-4e5c-b3dc-e272cee3b5a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201140Z:50e1dd0d-a5a9-4e5c-b3dc-e272cee3b5a2" + ], + "Date": [ + "Tue, 14 Jul 2015 20:11:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e79758fd-6c3a-47a9-b985-a1e87289a2e9" + ], + "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": [ + "50e1dd0d-a5a9-4e5c-b3dc-e272cee3b5a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201140Z:50e1dd0d-a5a9-4e5c-b3dc-e272cee3b5a2" + ], + "Date": [ + "Tue, 14 Jul 2015 20:11:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e79758fd-6c3a-47a9-b985-a1e87289a2e9" + ], + "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": [ + "50e1dd0d-a5a9-4e5c-b3dc-e272cee3b5a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201140Z:50e1dd0d-a5a9-4e5c-b3dc-e272cee3b5a2" + ], + "Date": [ + "Tue, 14 Jul 2015 20:11:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6378c8a4-fd50-4f30-a501-2bdffe12886f" + ], + "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": [ + "1ebd122b-594d-4b73-8b75-f847ddf464b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201210Z:1ebd122b-594d-4b73-8b75-f847ddf464b3" + ], + "Date": [ + "Tue, 14 Jul 2015 20:12:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6378c8a4-fd50-4f30-a501-2bdffe12886f" + ], + "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": [ + "1ebd122b-594d-4b73-8b75-f847ddf464b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201210Z:1ebd122b-594d-4b73-8b75-f847ddf464b3" + ], + "Date": [ + "Tue, 14 Jul 2015 20:12:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6378c8a4-fd50-4f30-a501-2bdffe12886f" + ], + "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": [ + "1ebd122b-594d-4b73-8b75-f847ddf464b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201210Z:1ebd122b-594d-4b73-8b75-f847ddf464b3" + ], + "Date": [ + "Tue, 14 Jul 2015 20:12:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6378c8a4-fd50-4f30-a501-2bdffe12886f" + ], + "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": [ + "1ebd122b-594d-4b73-8b75-f847ddf464b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201210Z:1ebd122b-594d-4b73-8b75-f847ddf464b3" + ], + "Date": [ + "Tue, 14 Jul 2015 20:12:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "57d864f4-c3ea-4d25-bec8-d341e513f20a" + ], + "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": [ + "addf57d4-3584-45be-8665-1e33e4b7befe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201241Z:addf57d4-3584-45be-8665-1e33e4b7befe" + ], + "Date": [ + "Tue, 14 Jul 2015 20:12:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "57d864f4-c3ea-4d25-bec8-d341e513f20a" + ], + "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": [ + "addf57d4-3584-45be-8665-1e33e4b7befe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201241Z:addf57d4-3584-45be-8665-1e33e4b7befe" + ], + "Date": [ + "Tue, 14 Jul 2015 20:12:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "57d864f4-c3ea-4d25-bec8-d341e513f20a" + ], + "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": [ + "addf57d4-3584-45be-8665-1e33e4b7befe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201241Z:addf57d4-3584-45be-8665-1e33e4b7befe" + ], + "Date": [ + "Tue, 14 Jul 2015 20:12:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "57d864f4-c3ea-4d25-bec8-d341e513f20a" + ], + "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": [ + "addf57d4-3584-45be-8665-1e33e4b7befe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201241Z:addf57d4-3584-45be-8665-1e33e4b7befe" + ], + "Date": [ + "Tue, 14 Jul 2015 20:12:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "80d1f057-0b9c-4908-97e7-0a343357b71f" + ], + "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": [ + "0baf8c94-0d09-4ff2-bc4f-6e53b342209b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201312Z:0baf8c94-0d09-4ff2-bc4f-6e53b342209b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:13:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "80d1f057-0b9c-4908-97e7-0a343357b71f" + ], + "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": [ + "0baf8c94-0d09-4ff2-bc4f-6e53b342209b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201312Z:0baf8c94-0d09-4ff2-bc4f-6e53b342209b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:13:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "80d1f057-0b9c-4908-97e7-0a343357b71f" + ], + "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": [ + "0baf8c94-0d09-4ff2-bc4f-6e53b342209b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201312Z:0baf8c94-0d09-4ff2-bc4f-6e53b342209b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:13:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "80d1f057-0b9c-4908-97e7-0a343357b71f" + ], + "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": [ + "0baf8c94-0d09-4ff2-bc4f-6e53b342209b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201312Z:0baf8c94-0d09-4ff2-bc4f-6e53b342209b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:13:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9dee9d7c-232d-49ea-95fc-c580f79faa6a" + ], + "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": [ + "3ee7a88d-2652-4e15-bc60-75cbb1737643" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201343Z:3ee7a88d-2652-4e15-bc60-75cbb1737643" + ], + "Date": [ + "Tue, 14 Jul 2015 20:13:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9dee9d7c-232d-49ea-95fc-c580f79faa6a" + ], + "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": [ + "3ee7a88d-2652-4e15-bc60-75cbb1737643" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201343Z:3ee7a88d-2652-4e15-bc60-75cbb1737643" + ], + "Date": [ + "Tue, 14 Jul 2015 20:13:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9dee9d7c-232d-49ea-95fc-c580f79faa6a" + ], + "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": [ + "3ee7a88d-2652-4e15-bc60-75cbb1737643" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201343Z:3ee7a88d-2652-4e15-bc60-75cbb1737643" + ], + "Date": [ + "Tue, 14 Jul 2015 20:13:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9dee9d7c-232d-49ea-95fc-c580f79faa6a" + ], + "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": [ + "3ee7a88d-2652-4e15-bc60-75cbb1737643" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201343Z:3ee7a88d-2652-4e15-bc60-75cbb1737643" + ], + "Date": [ + "Tue, 14 Jul 2015 20:13:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c6cfa41-25b9-4645-ada9-6314ffbffb7a" + ], + "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": [ + "bc184d4a-031f-45bd-b504-dcbdb1f48975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201413Z:bc184d4a-031f-45bd-b504-dcbdb1f48975" + ], + "Date": [ + "Tue, 14 Jul 2015 20:14:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c6cfa41-25b9-4645-ada9-6314ffbffb7a" + ], + "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": [ + "bc184d4a-031f-45bd-b504-dcbdb1f48975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201413Z:bc184d4a-031f-45bd-b504-dcbdb1f48975" + ], + "Date": [ + "Tue, 14 Jul 2015 20:14:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c6cfa41-25b9-4645-ada9-6314ffbffb7a" + ], + "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": [ + "bc184d4a-031f-45bd-b504-dcbdb1f48975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201413Z:bc184d4a-031f-45bd-b504-dcbdb1f48975" + ], + "Date": [ + "Tue, 14 Jul 2015 20:14:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c6cfa41-25b9-4645-ada9-6314ffbffb7a" + ], + "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": [ + "bc184d4a-031f-45bd-b504-dcbdb1f48975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201413Z:bc184d4a-031f-45bd-b504-dcbdb1f48975" + ], + "Date": [ + "Tue, 14 Jul 2015 20:14:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "abc24cbd-e91e-443f-8279-e961ed887963" + ], + "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": [ + "1b3067b2-90cb-4934-9f36-85cde50ff2a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201444Z:1b3067b2-90cb-4934-9f36-85cde50ff2a3" + ], + "Date": [ + "Tue, 14 Jul 2015 20:14:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "abc24cbd-e91e-443f-8279-e961ed887963" + ], + "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": [ + "1b3067b2-90cb-4934-9f36-85cde50ff2a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201444Z:1b3067b2-90cb-4934-9f36-85cde50ff2a3" + ], + "Date": [ + "Tue, 14 Jul 2015 20:14:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "abc24cbd-e91e-443f-8279-e961ed887963" + ], + "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": [ + "1b3067b2-90cb-4934-9f36-85cde50ff2a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201444Z:1b3067b2-90cb-4934-9f36-85cde50ff2a3" + ], + "Date": [ + "Tue, 14 Jul 2015 20:14:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "abc24cbd-e91e-443f-8279-e961ed887963" + ], + "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": [ + "1b3067b2-90cb-4934-9f36-85cde50ff2a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201444Z:1b3067b2-90cb-4934-9f36-85cde50ff2a3" + ], + "Date": [ + "Tue, 14 Jul 2015 20:14:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d42f91ca-e824-4cc6-9dfc-e5b6ccd76254" + ], + "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": [ + "d446fdc5-80fb-47c6-a862-3c02ad0f1d96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201515Z:d446fdc5-80fb-47c6-a862-3c02ad0f1d96" + ], + "Date": [ + "Tue, 14 Jul 2015 20:15:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d42f91ca-e824-4cc6-9dfc-e5b6ccd76254" + ], + "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": [ + "d446fdc5-80fb-47c6-a862-3c02ad0f1d96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201515Z:d446fdc5-80fb-47c6-a862-3c02ad0f1d96" + ], + "Date": [ + "Tue, 14 Jul 2015 20:15:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d42f91ca-e824-4cc6-9dfc-e5b6ccd76254" + ], + "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": [ + "d446fdc5-80fb-47c6-a862-3c02ad0f1d96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201515Z:d446fdc5-80fb-47c6-a862-3c02ad0f1d96" + ], + "Date": [ + "Tue, 14 Jul 2015 20:15:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d42f91ca-e824-4cc6-9dfc-e5b6ccd76254" + ], + "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": [ + "d446fdc5-80fb-47c6-a862-3c02ad0f1d96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201515Z:d446fdc5-80fb-47c6-a862-3c02ad0f1d96" + ], + "Date": [ + "Tue, 14 Jul 2015 20:15:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "49832177-f57e-409d-8040-97dd1fb1e128" + ], + "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": [ + "21c985d1-b5b1-4fc6-997f-0b9b7ac6e51a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201546Z:21c985d1-b5b1-4fc6-997f-0b9b7ac6e51a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:15:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "49832177-f57e-409d-8040-97dd1fb1e128" + ], + "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": [ + "21c985d1-b5b1-4fc6-997f-0b9b7ac6e51a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201546Z:21c985d1-b5b1-4fc6-997f-0b9b7ac6e51a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:15:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "49832177-f57e-409d-8040-97dd1fb1e128" + ], + "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": [ + "21c985d1-b5b1-4fc6-997f-0b9b7ac6e51a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201546Z:21c985d1-b5b1-4fc6-997f-0b9b7ac6e51a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:15:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "49832177-f57e-409d-8040-97dd1fb1e128" + ], + "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": [ + "21c985d1-b5b1-4fc6-997f-0b9b7ac6e51a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201546Z:21c985d1-b5b1-4fc6-997f-0b9b7ac6e51a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:15:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "90ff8709-86c3-43ad-9c4d-803d3ee9ca7b" + ], + "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": [ + "3673de1a-ab98-4270-a781-8f504e3465cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201616Z:3673de1a-ab98-4270-a781-8f504e3465cd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "90ff8709-86c3-43ad-9c4d-803d3ee9ca7b" + ], + "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": [ + "3673de1a-ab98-4270-a781-8f504e3465cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201616Z:3673de1a-ab98-4270-a781-8f504e3465cd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "90ff8709-86c3-43ad-9c4d-803d3ee9ca7b" + ], + "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": [ + "3673de1a-ab98-4270-a781-8f504e3465cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201616Z:3673de1a-ab98-4270-a781-8f504e3465cd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "90ff8709-86c3-43ad-9c4d-803d3ee9ca7b" + ], + "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": [ + "3673de1a-ab98-4270-a781-8f504e3465cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201616Z:3673de1a-ab98-4270-a781-8f504e3465cd" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\",\r\n \"endTime\": \"2015-07-14T13:16:25.7029556-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "edbfd88e-256e-4185-b70b-19f0f0ad7d00" + ], + "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": [ + "17cf3a0d-9a53-4ecf-9488-a46b90b88e1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201647Z:17cf3a0d-9a53-4ecf-9488-a46b90b88e1b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\",\r\n \"endTime\": \"2015-07-14T13:16:25.7029556-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "edbfd88e-256e-4185-b70b-19f0f0ad7d00" + ], + "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": [ + "17cf3a0d-9a53-4ecf-9488-a46b90b88e1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201647Z:17cf3a0d-9a53-4ecf-9488-a46b90b88e1b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\",\r\n \"endTime\": \"2015-07-14T13:16:25.7029556-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "edbfd88e-256e-4185-b70b-19f0f0ad7d00" + ], + "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": [ + "17cf3a0d-9a53-4ecf-9488-a46b90b88e1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201647Z:17cf3a0d-9a53-4ecf-9488-a46b90b88e1b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/bd9da831-6963-4f6c-a5bb-c842ca6b6eed?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkOWRhODMxLTY5NjMtNGY2Yy1hNWJiLWM4NDJjYTZiNmVlZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"bd9da831-6963-4f6c-a5bb-c842ca6b6eed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:09:03.4629046-07:00\",\r\n \"endTime\": \"2015-07-14T13:16:25.7029556-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "edbfd88e-256e-4185-b70b-19f0f0ad7d00" + ], + "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": [ + "17cf3a0d-9a53-4ecf-9488-a46b90b88e1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201647Z:17cf3a0d-9a53-4ecf-9488-a46b90b88e1b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5b881650-b959-412c-8bc3-8549b982df97" + ], + "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": [ + "00ef2cc3-3194-4bcf-b0c6-695d70f67575" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201648Z:00ef2cc3-3194-4bcf-b0c6-695d70f67575" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5b881650-b959-412c-8bc3-8549b982df97" + ], + "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": [ + "00ef2cc3-3194-4bcf-b0c6-695d70f67575" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201648Z:00ef2cc3-3194-4bcf-b0c6-695d70f67575" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5b881650-b959-412c-8bc3-8549b982df97" + ], + "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": [ + "00ef2cc3-3194-4bcf-b0c6-695d70f67575" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201648Z:00ef2cc3-3194-4bcf-b0c6-695d70f67575" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5b881650-b959-412c-8bc3-8549b982df97" + ], + "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": [ + "00ef2cc3-3194-4bcf-b0c6-695d70f67575" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201648Z:00ef2cc3-3194-4bcf-b0c6-695d70f67575" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "728a24ac-c847-4adf-94c1-3329a8758911" + ], + "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": [ + "58370579-741a-4536-a6d9-d136eca65761" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201648Z:58370579-741a-4536-a6d9-d136eca65761" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "728a24ac-c847-4adf-94c1-3329a8758911" + ], + "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": [ + "58370579-741a-4536-a6d9-d136eca65761" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201648Z:58370579-741a-4536-a6d9-d136eca65761" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "728a24ac-c847-4adf-94c1-3329a8758911" + ], + "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": [ + "58370579-741a-4536-a6d9-d136eca65761" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201648Z:58370579-741a-4536-a6d9-d136eca65761" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwODFfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjk0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "728a24ac-c847-4adf-94c1-3329a8758911" + ], + "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": [ + "58370579-741a-4536-a6d9-d136eca65761" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201648Z:58370579-741a-4536-a6d9-d136eca65761" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6e6a2f8b-306c-44fe-a019-5f4f66e08a14" + ], + "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": [ + "ed3170dd-6400-4dab-9858-261cebc4f46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201649Z:ed3170dd-6400-4dab-9858-261cebc4f46e" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6e6a2f8b-306c-44fe-a019-5f4f66e08a14" + ], + "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": [ + "ed3170dd-6400-4dab-9858-261cebc4f46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201649Z:ed3170dd-6400-4dab-9858-261cebc4f46e" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6e6a2f8b-306c-44fe-a019-5f4f66e08a14" + ], + "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": [ + "ed3170dd-6400-4dab-9858-261cebc4f46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201649Z:ed3170dd-6400-4dab-9858-261cebc4f46e" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_1/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest8257/ospslibtest2265.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_1/providers/Microsoft.Network/networkInterfaces/azsmnet1638\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_1/providers/Microsoft.Compute/virtualMachines/vm1819\",\r\n \"name\": \"vm1819\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_2/providers/Microsoft.Compute/availabilitySets/AS1620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8388.blob.core.windows.net/pslibtest6623/ospslibtest1266.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest4081_2/providers/Microsoft.Network/networkInterfaces/azsmnet2404\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/PSLIBTEST4081_2/providers/Microsoft.Compute/virtualMachines/vm694\",\r\n \"name\": \"vm694\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6e6a2f8b-306c-44fe-a019-5f4f66e08a14" + ], + "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": [ + "ed3170dd-6400-4dab-9858-261cebc4f46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201649Z:ed3170dd-6400-4dab-9858-261cebc4f46e" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_2?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1184" + ], + "x-ms-request-id": [ + "7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "x-ms-correlation-request-id": [ + "7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201653Z:7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_2?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1184" + ], + "x-ms-request-id": [ + "7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "x-ms-correlation-request-id": [ + "7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201653Z:7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_2?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1184" + ], + "x-ms-request-id": [ + "7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "x-ms-correlation-request-id": [ + "7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201653Z:7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_2?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1184" + ], + "x-ms-request-id": [ + "7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "x-ms-correlation-request-id": [ + "7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201653Z:7a099f51-704f-4364-b28e-9c82da28ccee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:16:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14935" + ], + "x-ms-request-id": [ + "11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "x-ms-correlation-request-id": [ + "11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201709Z:11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14935" + ], + "x-ms-request-id": [ + "11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "x-ms-correlation-request-id": [ + "11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201709Z:11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14935" + ], + "x-ms-request-id": [ + "11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "x-ms-correlation-request-id": [ + "11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201709Z:11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14935" + ], + "x-ms-request-id": [ + "11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "x-ms-correlation-request-id": [ + "11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201709Z:11da0865-7883-4949-82dc-4bbfb84f08e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14934" + ], + "x-ms-request-id": [ + "d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "x-ms-correlation-request-id": [ + "d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201724Z:d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14934" + ], + "x-ms-request-id": [ + "d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "x-ms-correlation-request-id": [ + "d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201724Z:d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14934" + ], + "x-ms-request-id": [ + "d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "x-ms-correlation-request-id": [ + "d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201724Z:d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14934" + ], + "x-ms-request-id": [ + "d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "x-ms-correlation-request-id": [ + "d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201724Z:d0803b2d-d2b8-4813-be06-8063cb7a629e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14933" + ], + "x-ms-request-id": [ + "a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "x-ms-correlation-request-id": [ + "a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201740Z:a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14933" + ], + "x-ms-request-id": [ + "a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "x-ms-correlation-request-id": [ + "a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201740Z:a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14933" + ], + "x-ms-request-id": [ + "a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "x-ms-correlation-request-id": [ + "a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201740Z:a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14933" + ], + "x-ms-request-id": [ + "a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "x-ms-correlation-request-id": [ + "a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201740Z:a72ad9f8-238e-4507-b691-a6eb09b23b21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14932" + ], + "x-ms-request-id": [ + "938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "x-ms-correlation-request-id": [ + "938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201755Z:938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14932" + ], + "x-ms-request-id": [ + "938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "x-ms-correlation-request-id": [ + "938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201755Z:938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14932" + ], + "x-ms-request-id": [ + "938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "x-ms-correlation-request-id": [ + "938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201755Z:938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14932" + ], + "x-ms-request-id": [ + "938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "x-ms-correlation-request-id": [ + "938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201755Z:938ba298-315d-41b9-92a4-a6b687a7ff94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:17:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14931" + ], + "x-ms-request-id": [ + "3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "x-ms-correlation-request-id": [ + "3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201810Z:3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14931" + ], + "x-ms-request-id": [ + "3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "x-ms-correlation-request-id": [ + "3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201810Z:3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14931" + ], + "x-ms-request-id": [ + "3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "x-ms-correlation-request-id": [ + "3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201810Z:3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14931" + ], + "x-ms-request-id": [ + "3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "x-ms-correlation-request-id": [ + "3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201810Z:3aa62732-56a7-48ed-9712-e1d4d9856bc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14930" + ], + "x-ms-request-id": [ + "393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "x-ms-correlation-request-id": [ + "393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201826Z:393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14930" + ], + "x-ms-request-id": [ + "393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "x-ms-correlation-request-id": [ + "393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201826Z:393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14930" + ], + "x-ms-request-id": [ + "393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "x-ms-correlation-request-id": [ + "393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201826Z:393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14930" + ], + "x-ms-request-id": [ + "393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "x-ms-correlation-request-id": [ + "393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201826Z:393b47b2-3e66-464e-9dae-99f0ac4a9b2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14929" + ], + "x-ms-request-id": [ + "e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "x-ms-correlation-request-id": [ + "e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201841Z:e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14929" + ], + "x-ms-request-id": [ + "e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "x-ms-correlation-request-id": [ + "e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201841Z:e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14929" + ], + "x-ms-request-id": [ + "e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "x-ms-correlation-request-id": [ + "e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201841Z:e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14929" + ], + "x-ms-request-id": [ + "e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "x-ms-correlation-request-id": [ + "e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201841Z:e40a319a-9433-4908-b6a3-56cf1e78c3bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14928" + ], + "x-ms-request-id": [ + "4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "x-ms-correlation-request-id": [ + "4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201857Z:4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14928" + ], + "x-ms-request-id": [ + "4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "x-ms-correlation-request-id": [ + "4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201857Z:4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14928" + ], + "x-ms-request-id": [ + "4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "x-ms-correlation-request-id": [ + "4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201857Z:4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14928" + ], + "x-ms-request-id": [ + "4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "x-ms-correlation-request-id": [ + "4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201857Z:4051c394-0b02-42b8-94c9-d711f560a70e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:18:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14925" + ], + "x-ms-request-id": [ + "78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "x-ms-correlation-request-id": [ + "78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201912Z:78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14925" + ], + "x-ms-request-id": [ + "78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "x-ms-correlation-request-id": [ + "78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201912Z:78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14925" + ], + "x-ms-request-id": [ + "78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "x-ms-correlation-request-id": [ + "78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201912Z:78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14925" + ], + "x-ms-request-id": [ + "78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "x-ms-correlation-request-id": [ + "78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201912Z:78d36499-8f0b-4d8e-a7fd-1af01d2381c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14924" + ], + "x-ms-request-id": [ + "b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "x-ms-correlation-request-id": [ + "b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201928Z:b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14924" + ], + "x-ms-request-id": [ + "b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "x-ms-correlation-request-id": [ + "b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201928Z:b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14924" + ], + "x-ms-request-id": [ + "b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "x-ms-correlation-request-id": [ + "b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201928Z:b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14924" + ], + "x-ms-request-id": [ + "b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "x-ms-correlation-request-id": [ + "b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201928Z:b132cbe7-ce82-4445-9581-b7cfe4fedaa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14923" + ], + "x-ms-request-id": [ + "a863513a-750d-44d1-8f18-ed0720afed34" + ], + "x-ms-correlation-request-id": [ + "a863513a-750d-44d1-8f18-ed0720afed34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201943Z:a863513a-750d-44d1-8f18-ed0720afed34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14923" + ], + "x-ms-request-id": [ + "a863513a-750d-44d1-8f18-ed0720afed34" + ], + "x-ms-correlation-request-id": [ + "a863513a-750d-44d1-8f18-ed0720afed34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201943Z:a863513a-750d-44d1-8f18-ed0720afed34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14923" + ], + "x-ms-request-id": [ + "a863513a-750d-44d1-8f18-ed0720afed34" + ], + "x-ms-correlation-request-id": [ + "a863513a-750d-44d1-8f18-ed0720afed34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201943Z:a863513a-750d-44d1-8f18-ed0720afed34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14923" + ], + "x-ms-request-id": [ + "a863513a-750d-44d1-8f18-ed0720afed34" + ], + "x-ms-correlation-request-id": [ + "a863513a-750d-44d1-8f18-ed0720afed34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201943Z:a863513a-750d-44d1-8f18-ed0720afed34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14922" + ], + "x-ms-request-id": [ + "f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "x-ms-correlation-request-id": [ + "f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201959Z:f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14922" + ], + "x-ms-request-id": [ + "f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "x-ms-correlation-request-id": [ + "f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201959Z:f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14922" + ], + "x-ms-request-id": [ + "f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "x-ms-correlation-request-id": [ + "f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201959Z:f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14922" + ], + "x-ms-request-id": [ + "f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "x-ms-correlation-request-id": [ + "f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T201959Z:f24016e2-577f-451b-afa5-76000a24dcc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:19:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14921" + ], + "x-ms-request-id": [ + "47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "x-ms-correlation-request-id": [ + "47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202014Z:47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14921" + ], + "x-ms-request-id": [ + "47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "x-ms-correlation-request-id": [ + "47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202014Z:47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14921" + ], + "x-ms-request-id": [ + "47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "x-ms-correlation-request-id": [ + "47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202014Z:47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14921" + ], + "x-ms-request-id": [ + "47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "x-ms-correlation-request-id": [ + "47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202014Z:47a62c1c-8505-4ad8-a9fb-cb424956bcbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14920" + ], + "x-ms-request-id": [ + "e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "x-ms-correlation-request-id": [ + "e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202029Z:e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14920" + ], + "x-ms-request-id": [ + "e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "x-ms-correlation-request-id": [ + "e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202029Z:e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14920" + ], + "x-ms-request-id": [ + "e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "x-ms-correlation-request-id": [ + "e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202029Z:e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14920" + ], + "x-ms-request-id": [ + "e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "x-ms-correlation-request-id": [ + "e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202029Z:e7c6344f-19a0-405d-a095-2b8bdff863f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14919" + ], + "x-ms-request-id": [ + "5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "x-ms-correlation-request-id": [ + "5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202045Z:5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14919" + ], + "x-ms-request-id": [ + "5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "x-ms-correlation-request-id": [ + "5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202045Z:5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14919" + ], + "x-ms-request-id": [ + "5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "x-ms-correlation-request-id": [ + "5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202045Z:5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14919" + ], + "x-ms-request-id": [ + "5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "x-ms-correlation-request-id": [ + "5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202045Z:5177a14c-ac67-4787-895e-8cb039c92c83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:20:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "x-ms-correlation-request-id": [ + "0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202100Z:0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "x-ms-correlation-request-id": [ + "0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202100Z:0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "x-ms-correlation-request-id": [ + "0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202100Z:0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "x-ms-correlation-request-id": [ + "0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202100Z:0959c7b7-c009-440e-a722-e9f22bde1ebc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "x-ms-correlation-request-id": [ + "4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202116Z:4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "x-ms-correlation-request-id": [ + "4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202116Z:4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "x-ms-correlation-request-id": [ + "4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202116Z:4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "x-ms-correlation-request-id": [ + "4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202116Z:4bb829a3-a7f9-4121-8edc-a428a7a4192e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "x-ms-correlation-request-id": [ + "7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202131Z:7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "x-ms-correlation-request-id": [ + "7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202131Z:7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "x-ms-correlation-request-id": [ + "7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202131Z:7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "x-ms-correlation-request-id": [ + "7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202131Z:7eca2d72-1ecf-4d21-84cd-2c6edcaf37b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1183" + ], + "x-ms-request-id": [ + "01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "x-ms-correlation-request-id": [ + "01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202134Z:01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1183" + ], + "x-ms-request-id": [ + "01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "x-ms-correlation-request-id": [ + "01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202134Z:01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1183" + ], + "x-ms-request-id": [ + "01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "x-ms-correlation-request-id": [ + "01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202134Z:01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest4081_1?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwODFfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1183" + ], + "x-ms-request-id": [ + "01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "x-ms-correlation-request-id": [ + "01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202134Z:01afa968-4921-4cdb-8d9d-ad4faa32ea88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "x-ms-correlation-request-id": [ + "f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202150Z:f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "x-ms-correlation-request-id": [ + "f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202150Z:f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "x-ms-correlation-request-id": [ + "f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202150Z:f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "x-ms-correlation-request-id": [ + "f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202150Z:f9cc93e0-b6ac-4e14-87bb-2242e14ea650" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:21:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "x-ms-correlation-request-id": [ + "795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202205Z:795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "x-ms-correlation-request-id": [ + "795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202205Z:795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "x-ms-correlation-request-id": [ + "795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202205Z:795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "x-ms-correlation-request-id": [ + "795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202205Z:795c66ca-a68e-43a7-9439-f12ef877318f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14912" + ], + "x-ms-request-id": [ + "7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "x-ms-correlation-request-id": [ + "7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202221Z:7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14912" + ], + "x-ms-request-id": [ + "7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "x-ms-correlation-request-id": [ + "7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202221Z:7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14912" + ], + "x-ms-request-id": [ + "7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "x-ms-correlation-request-id": [ + "7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202221Z:7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14912" + ], + "x-ms-request-id": [ + "7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "x-ms-correlation-request-id": [ + "7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202221Z:7676bbb3-e786-43e0-9e29-24e7f9d57c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14911" + ], + "x-ms-request-id": [ + "aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "x-ms-correlation-request-id": [ + "aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202236Z:aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14911" + ], + "x-ms-request-id": [ + "aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "x-ms-correlation-request-id": [ + "aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202236Z:aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14911" + ], + "x-ms-request-id": [ + "aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "x-ms-correlation-request-id": [ + "aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202236Z:aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14911" + ], + "x-ms-request-id": [ + "aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "x-ms-correlation-request-id": [ + "aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202236Z:aa5e0f86-d1e4-409f-9950-52a164f158a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14908" + ], + "x-ms-request-id": [ + "6296d061-a684-49dd-892e-658f50e1c17b" + ], + "x-ms-correlation-request-id": [ + "6296d061-a684-49dd-892e-658f50e1c17b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202251Z:6296d061-a684-49dd-892e-658f50e1c17b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14908" + ], + "x-ms-request-id": [ + "6296d061-a684-49dd-892e-658f50e1c17b" + ], + "x-ms-correlation-request-id": [ + "6296d061-a684-49dd-892e-658f50e1c17b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202251Z:6296d061-a684-49dd-892e-658f50e1c17b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14908" + ], + "x-ms-request-id": [ + "6296d061-a684-49dd-892e-658f50e1c17b" + ], + "x-ms-correlation-request-id": [ + "6296d061-a684-49dd-892e-658f50e1c17b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202251Z:6296d061-a684-49dd-892e-658f50e1c17b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:22:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "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-reads": [ + "14908" + ], + "x-ms-request-id": [ + "6296d061-a684-49dd-892e-658f50e1c17b" + ], + "x-ms-correlation-request-id": [ + "6296d061-a684-49dd-892e-658f50e1c17b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202251Z:6296d061-a684-49dd-892e-658f50e1c17b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T192254Z:26dab06c-8d77-432e-b5ad-c3773c1a1943" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:22:54 GMT" + "Tue, 14 Jul 2015 20:22:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/virtualMachines/vm3407?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMzQwNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4832.blob.core.windows.net/pslibtest6772/ospslibtest5696.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest4058_2\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/availabilitySets/as3250\"\r\n }\r\n },\r\n \"name\": \"vm3407\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1326" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/availabilitySets/AS3250\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4832.blob.core.windows.net/pslibtest6772/ospslibtest5696.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/virtualMachines/vm3407\",\r\n \"name\": \"vm3407\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "1585" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1801,54 +21177,50 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/6286d0e9-9014-42bd-a28a-f52ede5bcafc?api-version=2015-06-15" + "Retry-After": [ + "15" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" ], "x-ms-request-id": [ - "6286d0e9-9014-42bd-a28a-f52ede5bcafc" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "f941816e-3f21-4257-b578-6209d268b8ec" ], "x-ms-correlation-request-id": [ - "c6d748a1-d4b5-430d-ba12-b943540100aa" + "f941816e-3f21-4257-b578-6209d268b8ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192258Z:c6d748a1-d4b5-430d-ba12-b943540100aa" + "WESTUS:20150714T202307Z:f941816e-3f21-4257-b578-6209d268b8ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:22:57 GMT" + "Tue, 14 Jul 2015 20:23:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/6286d0e9-9014-42bd-a28a-f52ede5bcafc?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYyODZkMGU5LTkwMTQtNDJiZC1hMjhhLWY1MmVkZTViY2FmYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"6286d0e9-9014-42bd-a28a-f52ede5bcafc\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:22:56.6434586-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1856,51 +21228,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "3599f10c-3afa-4658-88a6-fa2c92a1ec35" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14907" + ], + "x-ms-request-id": [ + "f941816e-3f21-4257-b578-6209d268b8ec" ], "x-ms-correlation-request-id": [ - "8d0d2b6d-8bec-4209-83da-210dedc1759a" + "f941816e-3f21-4257-b578-6209d268b8ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192259Z:8d0d2b6d-8bec-4209-83da-210dedc1759a" + "WESTUS:20150714T202307Z:f941816e-3f21-4257-b578-6209d268b8ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:22:58 GMT" + "Tue, 14 Jul 2015 20:23:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/virtualMachines/vm3407?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDQwNThfMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMzQwNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/availabilitySets/AS3250\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4832.blob.core.windows.net/pslibtest6772/ospslibtest5696.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Compute/virtualMachines/vm3407\",\r\n \"name\": \"vm3407\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "1585" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1908,51 +21279,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "73c06863-7315-40fa-b132-d1f4b04f6e16" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14907" + ], + "x-ms-request-id": [ + "f941816e-3f21-4257-b578-6209d268b8ec" ], "x-ms-correlation-request-id": [ - "8d439642-5f14-44b5-a416-8c5867ff65ba" + "f941816e-3f21-4257-b578-6209d268b8ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192259Z:8d439642-5f14-44b5-a416-8c5867ff65ba" + "WESTUS:20150714T202307Z:f941816e-3f21-4257-b578-6209d268b8ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:22:58 GMT" + "Tue, 14 Jul 2015 20:23:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/ccfebd33-45cd-4e22-9389-98982441aa5d/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201412.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"rpsupdemovm-os-20150326-030006-266220\",\r\n \"vhd\": {\r\n \"uri\": \"http://rpsupdemo.blob.core.windows.net/vhds/rpsupdemovm-os-20150326-030006-266220.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"rpsupdemovm\",\r\n \"adminUsername\": \"aarons\",\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/azurermtemplatese7f2/providers/Microsoft.Network/networkInterfaces/rpsupnic\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/AZURERMTEMPLATESE7F2/providers/Microsoft.Compute/virtualMachines/rpsupdemovm/extensions/rpsupext\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/AZURERMTEMPLATESE7F2/providers/Microsoft.Compute/virtualMachines/rpsupdemovm\",\r\n \"name\": \"rpsupdemovm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST66781/providers/Microsoft.Compute/availabilitySets/AS9451\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/ccfebd33-45cd-4e22-9389-98982441aa5d/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm1236-os-20150416-011521-982969\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2785.blob.core.windows.net/pslibtest4143/vm1236-os-20150416-011521-982969.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dd1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2785.blob.core.windows.net/pslibtest4143/pslibtest7558.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest66781/providers/Microsoft.Network/networkInterfaces/azsmnet9796\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST66781/providers/Microsoft.Compute/virtualMachines/vm1236\",\r\n \"name\": \"vm1236\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST14692/providers/Microsoft.Compute/availabilitySets/AS4370\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2335.blob.core.windows.net/pslibtest5690/ospslibtest5733.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest14692/providers/Microsoft.Network/networkInterfaces/azsmnet9768\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST14692/providers/Microsoft.Compute/virtualMachines/vm2672\",\r\n \"name\": \"vm2672\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST37032/providers/Microsoft.Compute/availabilitySets/AS6861\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3752.blob.core.windows.net/pslibtest1101/ospslibtest9761.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest37032/providers/Microsoft.Network/networkInterfaces/azsmnet5585\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST37032/providers/Microsoft.Compute/virtualMachines/vm578\",\r\n \"name\": \"vm578\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST4058_1/providers/Microsoft.Compute/availabilitySets/AS3250\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4832.blob.core.windows.net/pslibtest3752/ospslibtest460.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_1/providers/Microsoft.Network/networkInterfaces/azsmnet8132\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST4058_1/providers/Microsoft.Compute/virtualMachines/vm4972\",\r\n \"name\": \"vm4972\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST4058_2/providers/Microsoft.Compute/availabilitySets/AS3250\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4832.blob.core.windows.net/pslibtest6772/ospslibtest5696.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest4058_2/providers/Microsoft.Network/networkInterfaces/azsmnet358\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST4058_2/providers/Microsoft.Compute/virtualMachines/vm3407\",\r\n \"name\": \"vm3407\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST53032/providers/Microsoft.Compute/availabilitySets/AS4436\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/ccfebd33-45cd-4e22-9389-98982441aa5d/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7634.blob.core.windows.net/pslibtest9399/ospslibtest4666.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest53032/providers/Microsoft.Network/networkInterfaces/azsmnet3406\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST53032/providers/Microsoft.Compute/virtualMachines/vm6710\",\r\n \"name\": \"vm6710\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST882/providers/Microsoft.Compute/availabilitySets/AS8028\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/ccfebd33-45cd-4e22-9389-98982441aa5d/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3923.blob.core.windows.net/pslibtest3698/ospslibtest580.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest882/providers/Microsoft.Network/networkInterfaces/azsmnet3058\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST882/providers/Microsoft.Compute/virtualMachines/vm3973\",\r\n \"name\": \"vm3973\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST9333/providers/Microsoft.Compute/availabilitySets/AS6913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest333.blob.core.windows.net/pslibtest258/ospslibtest889.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest9333/providers/Microsoft.Network/networkInterfaces/azsmnet8382\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/PSLIBTEST9333/providers/Microsoft.Compute/virtualMachines/vm7982\",\r\n \"name\": \"vm7982\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "11186" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1960,21 +21330,20 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "cefd9dfd-85e1-4784-9e16-0443fee188fe", - "7bb156e7-12d4-4dd1-808b-bd7b41bad0ca" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14907" ], "x-ms-request-id": [ - "f6bef0c1-c4e0-44ca-83fc-35f968ca3f6f" + "f941816e-3f21-4257-b578-6209d268b8ec" ], "x-ms-correlation-request-id": [ - "f6bef0c1-c4e0-44ca-83fc-35f968ca3f6f" + "f941816e-3f21-4257-b578-6209d268b8ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192259Z:f6bef0c1-c4e0-44ca-83fc-35f968ca3f6f" + "WESTUS:20150714T202307Z:f941816e-3f21-4257-b578-6209d268b8ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1983,15 +21352,18 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:22:59 GMT" + "Tue, 14 Jul 2015 20:23:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest4058_2?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwNThfMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -2012,17 +21384,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" ], "x-ms-request-id": [ - "ad527936-b4c4-4eb3-993a-caf288e70367" + "95b9d160-bdfd-431f-9805-6bb37104ac28" ], "x-ms-correlation-request-id": [ - "ad527936-b4c4-4eb3-993a-caf288e70367" + "95b9d160-bdfd-431f-9805-6bb37104ac28" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192301Z:ad527936-b4c4-4eb3-993a-caf288e70367" + "WESTUS:20150714T202322Z:95b9d160-bdfd-431f-9805-6bb37104ac28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,23 +21403,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:23:01 GMT" + "Tue, 14 Jul 2015 20:23:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2067,16 +21436,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14906" ], "x-ms-request-id": [ - "94e09c49-9304-4cbd-90d7-908ce14e0269" + "95b9d160-bdfd-431f-9805-6bb37104ac28" ], "x-ms-correlation-request-id": [ - "94e09c49-9304-4cbd-90d7-908ce14e0269" + "95b9d160-bdfd-431f-9805-6bb37104ac28" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192302Z:94e09c49-9304-4cbd-90d7-908ce14e0269" + "WESTUS:20150714T202322Z:95b9d160-bdfd-431f-9805-6bb37104ac28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2085,23 +21454,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:23:01 GMT" + "Tue, 14 Jul 2015 20:23:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2121,16 +21487,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14906" ], "x-ms-request-id": [ - "8fdf5666-3fa3-4674-a00a-cc28815ba388" + "95b9d160-bdfd-431f-9805-6bb37104ac28" ], "x-ms-correlation-request-id": [ - "8fdf5666-3fa3-4674-a00a-cc28815ba388" + "95b9d160-bdfd-431f-9805-6bb37104ac28" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192317Z:8fdf5666-3fa3-4674-a00a-cc28815ba388" + "WESTUS:20150714T202322Z:95b9d160-bdfd-431f-9805-6bb37104ac28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2139,23 +21505,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:23:16 GMT" + "Tue, 14 Jul 2015 20:23:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2175,16 +21538,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14906" ], "x-ms-request-id": [ - "ade25720-d610-49c6-9170-0c239e6375ec" + "95b9d160-bdfd-431f-9805-6bb37104ac28" ], "x-ms-correlation-request-id": [ - "ade25720-d610-49c6-9170-0c239e6375ec" + "95b9d160-bdfd-431f-9805-6bb37104ac28" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192333Z:ade25720-d610-49c6-9170-0c239e6375ec" + "WESTUS:20150714T202322Z:95b9d160-bdfd-431f-9805-6bb37104ac28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2193,23 +21556,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:23:32 GMT" + "Tue, 14 Jul 2015 20:23:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2229,16 +21589,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14905" ], "x-ms-request-id": [ - "bfd7275d-649e-4c34-8ec1-b1a31e0449e5" + "6231d9c6-5027-4b7b-84ab-667695f29094" ], "x-ms-correlation-request-id": [ - "bfd7275d-649e-4c34-8ec1-b1a31e0449e5" + "6231d9c6-5027-4b7b-84ab-667695f29094" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192348Z:bfd7275d-649e-4c34-8ec1-b1a31e0449e5" + "WESTUS:20150714T202338Z:6231d9c6-5027-4b7b-84ab-667695f29094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2247,23 +21607,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:23:48 GMT" + "Tue, 14 Jul 2015 20:23:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2283,16 +21640,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14905" ], "x-ms-request-id": [ - "a23c6a6d-611e-4450-a450-480471e52636" + "6231d9c6-5027-4b7b-84ab-667695f29094" ], "x-ms-correlation-request-id": [ - "a23c6a6d-611e-4450-a450-480471e52636" + "6231d9c6-5027-4b7b-84ab-667695f29094" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192404Z:a23c6a6d-611e-4450-a450-480471e52636" + "WESTUS:20150714T202338Z:6231d9c6-5027-4b7b-84ab-667695f29094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2301,23 +21658,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:24:03 GMT" + "Tue, 14 Jul 2015 20:23:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2337,16 +21691,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14905" ], "x-ms-request-id": [ - "13bc38c1-ffd0-47b0-a8ac-998718359b3e" + "6231d9c6-5027-4b7b-84ab-667695f29094" ], "x-ms-correlation-request-id": [ - "13bc38c1-ffd0-47b0-a8ac-998718359b3e" + "6231d9c6-5027-4b7b-84ab-667695f29094" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192419Z:13bc38c1-ffd0-47b0-a8ac-998718359b3e" + "WESTUS:20150714T202338Z:6231d9c6-5027-4b7b-84ab-667695f29094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2355,23 +21709,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:24:19 GMT" + "Tue, 14 Jul 2015 20:23:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2391,16 +21742,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14905" ], "x-ms-request-id": [ - "3834b3b1-965f-4d9a-b2bb-111458d4411a" + "6231d9c6-5027-4b7b-84ab-667695f29094" ], "x-ms-correlation-request-id": [ - "3834b3b1-965f-4d9a-b2bb-111458d4411a" + "6231d9c6-5027-4b7b-84ab-667695f29094" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192434Z:3834b3b1-965f-4d9a-b2bb-111458d4411a" + "WESTUS:20150714T202338Z:6231d9c6-5027-4b7b-84ab-667695f29094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2409,23 +21760,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:24:34 GMT" + "Tue, 14 Jul 2015 20:23:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2445,16 +21793,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14904" ], "x-ms-request-id": [ - "404f57d8-9445-407f-bcb5-e3c4af187b0e" + "27118376-94a4-4606-b9ed-2c921a95ce97" ], "x-ms-correlation-request-id": [ - "404f57d8-9445-407f-bcb5-e3c4af187b0e" + "27118376-94a4-4606-b9ed-2c921a95ce97" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192450Z:404f57d8-9445-407f-bcb5-e3c4af187b0e" + "WESTUS:20150714T202353Z:27118376-94a4-4606-b9ed-2c921a95ce97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2463,23 +21811,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:24:49 GMT" + "Tue, 14 Jul 2015 20:23:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2499,16 +21844,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14904" ], "x-ms-request-id": [ - "a986b3dd-90be-46d1-b623-9d1d31698deb" + "27118376-94a4-4606-b9ed-2c921a95ce97" ], "x-ms-correlation-request-id": [ - "a986b3dd-90be-46d1-b623-9d1d31698deb" + "27118376-94a4-4606-b9ed-2c921a95ce97" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192505Z:a986b3dd-90be-46d1-b623-9d1d31698deb" + "WESTUS:20150714T202353Z:27118376-94a4-4606-b9ed-2c921a95ce97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2517,23 +21862,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:25:04 GMT" + "Tue, 14 Jul 2015 20:23:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2553,16 +21895,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14904" ], "x-ms-request-id": [ - "313bb36a-0504-4f9f-b2aa-769d7ba42c01" + "27118376-94a4-4606-b9ed-2c921a95ce97" ], "x-ms-correlation-request-id": [ - "313bb36a-0504-4f9f-b2aa-769d7ba42c01" + "27118376-94a4-4606-b9ed-2c921a95ce97" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192521Z:313bb36a-0504-4f9f-b2aa-769d7ba42c01" + "WESTUS:20150714T202353Z:27118376-94a4-4606-b9ed-2c921a95ce97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,23 +21913,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:25:20 GMT" + "Tue, 14 Jul 2015 20:23:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2607,16 +21946,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14904" ], "x-ms-request-id": [ - "7f532eb0-ad72-472b-aaf9-14cdff0a697d" + "27118376-94a4-4606-b9ed-2c921a95ce97" ], "x-ms-correlation-request-id": [ - "7f532eb0-ad72-472b-aaf9-14cdff0a697d" + "27118376-94a4-4606-b9ed-2c921a95ce97" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192536Z:7f532eb0-ad72-472b-aaf9-14cdff0a697d" + "WESTUS:20150714T202353Z:27118376-94a4-4606-b9ed-2c921a95ce97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2625,23 +21964,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:25:35 GMT" + "Tue, 14 Jul 2015 20:23:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2661,16 +21997,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14903" ], "x-ms-request-id": [ - "662cfa73-ca28-45ed-955f-16b52e05a0d9" + "93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "x-ms-correlation-request-id": [ - "662cfa73-ca28-45ed-955f-16b52e05a0d9" + "93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192552Z:662cfa73-ca28-45ed-955f-16b52e05a0d9" + "WESTUS:20150714T202409Z:93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2679,23 +22015,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:25:52 GMT" + "Tue, 14 Jul 2015 20:24:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2715,16 +22048,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14903" ], "x-ms-request-id": [ - "aee6dc73-18fb-419b-8c20-f70ca96b3648" + "93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "x-ms-correlation-request-id": [ - "aee6dc73-18fb-419b-8c20-f70ca96b3648" + "93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192607Z:aee6dc73-18fb-419b-8c20-f70ca96b3648" + "WESTUS:20150714T202409Z:93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2733,23 +22066,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:26:07 GMT" + "Tue, 14 Jul 2015 20:24:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2769,16 +22099,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14903" ], "x-ms-request-id": [ - "e7d3ec71-6b29-48eb-ab18-d7d0811d64c2" + "93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "x-ms-correlation-request-id": [ - "e7d3ec71-6b29-48eb-ab18-d7d0811d64c2" + "93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192622Z:e7d3ec71-6b29-48eb-ab18-d7d0811d64c2" + "WESTUS:20150714T202409Z:93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2787,23 +22117,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:26:22 GMT" + "Tue, 14 Jul 2015 20:24:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2823,16 +22150,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14903" ], "x-ms-request-id": [ - "b5f73b61-3926-4adb-a56d-df5ca54d80ed" + "93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "x-ms-correlation-request-id": [ - "b5f73b61-3926-4adb-a56d-df5ca54d80ed" + "93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192638Z:b5f73b61-3926-4adb-a56d-df5ca54d80ed" + "WESTUS:20150714T202409Z:93b7a070-0533-4d8c-a3ce-ab1be10481c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2841,23 +22168,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:26:38 GMT" + "Tue, 14 Jul 2015 20:24:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2877,16 +22201,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14902" ], "x-ms-request-id": [ - "a0160e40-d7d6-4ba9-9aeb-a5abfcfd8771" + "543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "x-ms-correlation-request-id": [ - "a0160e40-d7d6-4ba9-9aeb-a5abfcfd8771" + "543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192653Z:a0160e40-d7d6-4ba9-9aeb-a5abfcfd8771" + "WESTUS:20150714T202424Z:543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2895,23 +22219,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:26:53 GMT" + "Tue, 14 Jul 2015 20:24:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2931,16 +22252,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14902" ], "x-ms-request-id": [ - "c73fc181-7fac-499f-930f-05d06302e350" + "543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "x-ms-correlation-request-id": [ - "c73fc181-7fac-499f-930f-05d06302e350" + "543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192709Z:c73fc181-7fac-499f-930f-05d06302e350" + "WESTUS:20150714T202424Z:543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2949,23 +22270,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:27:08 GMT" + "Tue, 14 Jul 2015 20:24:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2985,16 +22303,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14902" ], "x-ms-request-id": [ - "de60a551-14e5-41f8-99f0-6f6a30e436d9" + "543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "x-ms-correlation-request-id": [ - "de60a551-14e5-41f8-99f0-6f6a30e436d9" + "543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192724Z:de60a551-14e5-41f8-99f0-6f6a30e436d9" + "WESTUS:20150714T202424Z:543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3003,23 +22321,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:27:23 GMT" + "Tue, 14 Jul 2015 20:24:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3039,16 +22354,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14902" ], "x-ms-request-id": [ - "5ab59794-813c-4194-9781-8b4d32e44d6c" + "543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "x-ms-correlation-request-id": [ - "5ab59794-813c-4194-9781-8b4d32e44d6c" + "543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192740Z:5ab59794-813c-4194-9781-8b4d32e44d6c" + "WESTUS:20150714T202424Z:543bf9ae-895d-41c0-abf0-7ae5b13e5106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3057,23 +22372,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:27:39 GMT" + "Tue, 14 Jul 2015 20:24:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3093,16 +22405,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14901" ], "x-ms-request-id": [ - "ae6038be-d927-4bc5-b07e-113e1291fabf" + "76698bd4-bca8-4104-b967-1ff41a846bd9" ], "x-ms-correlation-request-id": [ - "ae6038be-d927-4bc5-b07e-113e1291fabf" + "76698bd4-bca8-4104-b967-1ff41a846bd9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192755Z:ae6038be-d927-4bc5-b07e-113e1291fabf" + "WESTUS:20150714T202439Z:76698bd4-bca8-4104-b967-1ff41a846bd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3111,23 +22423,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:27:54 GMT" + "Tue, 14 Jul 2015 20:24:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3147,16 +22456,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14901" ], "x-ms-request-id": [ - "3d8d0687-6aea-447f-bee6-7292b55c3458" + "76698bd4-bca8-4104-b967-1ff41a846bd9" ], "x-ms-correlation-request-id": [ - "3d8d0687-6aea-447f-bee6-7292b55c3458" + "76698bd4-bca8-4104-b967-1ff41a846bd9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192810Z:3d8d0687-6aea-447f-bee6-7292b55c3458" + "WESTUS:20150714T202439Z:76698bd4-bca8-4104-b967-1ff41a846bd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3165,23 +22474,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:28:10 GMT" + "Tue, 14 Jul 2015 20:24:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3201,16 +22507,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14901" ], "x-ms-request-id": [ - "ae2930ac-69cf-4af9-9aac-bc1c1c7b8d5d" + "76698bd4-bca8-4104-b967-1ff41a846bd9" ], "x-ms-correlation-request-id": [ - "ae2930ac-69cf-4af9-9aac-bc1c1c7b8d5d" + "76698bd4-bca8-4104-b967-1ff41a846bd9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192826Z:ae2930ac-69cf-4af9-9aac-bc1c1c7b8d5d" + "WESTUS:20150714T202439Z:76698bd4-bca8-4104-b967-1ff41a846bd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3219,23 +22525,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:28:26 GMT" + "Tue, 14 Jul 2015 20:24:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3255,16 +22558,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14901" ], "x-ms-request-id": [ - "8c9d6be2-47f8-4440-b57c-b5a587bb5ad1" + "76698bd4-bca8-4104-b967-1ff41a846bd9" ], "x-ms-correlation-request-id": [ - "8c9d6be2-47f8-4440-b57c-b5a587bb5ad1" + "76698bd4-bca8-4104-b967-1ff41a846bd9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192841Z:8c9d6be2-47f8-4440-b57c-b5a587bb5ad1" + "WESTUS:20150714T202439Z:76698bd4-bca8-4104-b967-1ff41a846bd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3273,23 +22576,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:28:41 GMT" + "Tue, 14 Jul 2015 20:24:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3309,16 +22609,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14900" ], "x-ms-request-id": [ - "8267e9f1-8b9b-4b6a-926d-139970fb6f84" + "86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "x-ms-correlation-request-id": [ - "8267e9f1-8b9b-4b6a-926d-139970fb6f84" + "86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192857Z:8267e9f1-8b9b-4b6a-926d-139970fb6f84" + "WESTUS:20150714T202455Z:86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3327,23 +22627,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:28:57 GMT" + "Tue, 14 Jul 2015 20:24:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3363,16 +22660,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14900" ], "x-ms-request-id": [ - "a5bae6b0-44e4-4098-9a08-4dab4a7422e0" + "86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "x-ms-correlation-request-id": [ - "a5bae6b0-44e4-4098-9a08-4dab4a7422e0" + "86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192912Z:a5bae6b0-44e4-4098-9a08-4dab4a7422e0" + "WESTUS:20150714T202455Z:86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3381,23 +22678,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:29:12 GMT" + "Tue, 14 Jul 2015 20:24:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3417,16 +22711,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14900" ], "x-ms-request-id": [ - "292a2601-0db1-4384-92f1-4b5ae8ba23b8" + "86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "x-ms-correlation-request-id": [ - "292a2601-0db1-4384-92f1-4b5ae8ba23b8" + "86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192928Z:292a2601-0db1-4384-92f1-4b5ae8ba23b8" + "WESTUS:20150714T202455Z:86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3435,23 +22729,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:29:27 GMT" + "Tue, 14 Jul 2015 20:24:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMi1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNaTFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3467,17 +22758,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14900" ], "x-ms-request-id": [ - "b7667083-71fe-4e63-b8c9-1a9342ae091c" + "86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "x-ms-correlation-request-id": [ - "b7667083-71fe-4e63-b8c9-1a9342ae091c" + "86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192943Z:b7667083-71fe-4e63-b8c9-1a9342ae091c" + "WESTUS:20150714T202455Z:86ddbec9-5a53-4c52-baaa-b588dfaecbc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3486,15 +22780,18 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:29:42 GMT" + "Tue, 14 Jul 2015 20:24:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest4058_1?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDQwNThfMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -3515,17 +22812,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" ], "x-ms-request-id": [ - "5ed3c091-4184-405d-a978-94fce6e56c4e" + "b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "x-ms-correlation-request-id": [ - "5ed3c091-4184-405d-a978-94fce6e56c4e" + "b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192946Z:5ed3c091-4184-405d-a978-94fce6e56c4e" + "WESTUS:20150714T202510Z:b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3534,23 +22831,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:29:46 GMT" + "Tue, 14 Jul 2015 20:25:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3570,16 +22864,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14899" ], "x-ms-request-id": [ - "3bf0b9d4-ff7f-471a-8df7-9ea0ed13ef01" + "b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "x-ms-correlation-request-id": [ - "3bf0b9d4-ff7f-471a-8df7-9ea0ed13ef01" + "b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T192946Z:3bf0b9d4-ff7f-471a-8df7-9ea0ed13ef01" + "WESTUS:20150714T202510Z:b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3588,23 +22882,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:29:46 GMT" + "Tue, 14 Jul 2015 20:25:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3624,16 +22915,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14899" ], "x-ms-request-id": [ - "2613a044-9048-4cae-9d77-1838086bb203" + "b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "x-ms-correlation-request-id": [ - "2613a044-9048-4cae-9d77-1838086bb203" + "b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193002Z:2613a044-9048-4cae-9d77-1838086bb203" + "WESTUS:20150714T202510Z:b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3642,23 +22933,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:30:01 GMT" + "Tue, 14 Jul 2015 20:25:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3678,16 +22966,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14899" ], "x-ms-request-id": [ - "a618d7ef-6998-449c-b833-1be57ba06966" + "b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "x-ms-correlation-request-id": [ - "a618d7ef-6998-449c-b833-1be57ba06966" + "b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193017Z:a618d7ef-6998-449c-b833-1be57ba06966" + "WESTUS:20150714T202510Z:b41a358d-1385-4ec5-8dfd-08b620da38b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3696,23 +22984,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:30:16 GMT" + "Tue, 14 Jul 2015 20:25:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3732,16 +23017,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14898" ], "x-ms-request-id": [ - "f3300ad5-d4cb-4338-afb5-50cedaac2437" + "93204358-53a9-4cca-b965-18446c01c58a" ], "x-ms-correlation-request-id": [ - "f3300ad5-d4cb-4338-afb5-50cedaac2437" + "93204358-53a9-4cca-b965-18446c01c58a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193033Z:f3300ad5-d4cb-4338-afb5-50cedaac2437" + "WESTUS:20150714T202526Z:93204358-53a9-4cca-b965-18446c01c58a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3750,23 +23035,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:30:32 GMT" + "Tue, 14 Jul 2015 20:25:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3786,16 +23068,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14898" ], "x-ms-request-id": [ - "1c7695de-3c91-4326-b777-229df1ec4836" + "93204358-53a9-4cca-b965-18446c01c58a" ], "x-ms-correlation-request-id": [ - "1c7695de-3c91-4326-b777-229df1ec4836" + "93204358-53a9-4cca-b965-18446c01c58a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193048Z:1c7695de-3c91-4326-b777-229df1ec4836" + "WESTUS:20150714T202526Z:93204358-53a9-4cca-b965-18446c01c58a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3804,23 +23086,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:30:48 GMT" + "Tue, 14 Jul 2015 20:25:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3840,16 +23119,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14898" ], "x-ms-request-id": [ - "f4e36d28-0546-4ce4-b54b-daad4357c86e" + "93204358-53a9-4cca-b965-18446c01c58a" ], "x-ms-correlation-request-id": [ - "f4e36d28-0546-4ce4-b54b-daad4357c86e" + "93204358-53a9-4cca-b965-18446c01c58a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193103Z:f4e36d28-0546-4ce4-b54b-daad4357c86e" + "WESTUS:20150714T202526Z:93204358-53a9-4cca-b965-18446c01c58a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3858,23 +23137,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:31:03 GMT" + "Tue, 14 Jul 2015 20:25:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3894,16 +23170,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14898" ], "x-ms-request-id": [ - "3c382718-40ca-45be-9507-fabdabdb83f3" + "93204358-53a9-4cca-b965-18446c01c58a" ], "x-ms-correlation-request-id": [ - "3c382718-40ca-45be-9507-fabdabdb83f3" + "93204358-53a9-4cca-b965-18446c01c58a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193119Z:3c382718-40ca-45be-9507-fabdabdb83f3" + "WESTUS:20150714T202526Z:93204358-53a9-4cca-b965-18446c01c58a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3912,23 +23188,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:31:18 GMT" + "Tue, 14 Jul 2015 20:25:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3948,16 +23221,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14897" ], "x-ms-request-id": [ - "023dd3dd-2512-46c0-ac14-039931363312" + "218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "x-ms-correlation-request-id": [ - "023dd3dd-2512-46c0-ac14-039931363312" + "218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193134Z:023dd3dd-2512-46c0-ac14-039931363312" + "WESTUS:20150714T202541Z:218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3966,23 +23239,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:31:34 GMT" + "Tue, 14 Jul 2015 20:25:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4002,16 +23272,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14897" ], "x-ms-request-id": [ - "2350ea28-ed65-4b2a-9035-e810dd332127" + "218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "x-ms-correlation-request-id": [ - "2350ea28-ed65-4b2a-9035-e810dd332127" + "218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193150Z:2350ea28-ed65-4b2a-9035-e810dd332127" + "WESTUS:20150714T202541Z:218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4020,23 +23290,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:31:49 GMT" + "Tue, 14 Jul 2015 20:25:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4056,16 +23323,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14897" ], "x-ms-request-id": [ - "cef21a6c-3fb8-44f7-8ac5-5cfd7fb84567" + "218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "x-ms-correlation-request-id": [ - "cef21a6c-3fb8-44f7-8ac5-5cfd7fb84567" + "218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193205Z:cef21a6c-3fb8-44f7-8ac5-5cfd7fb84567" + "WESTUS:20150714T202541Z:218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4074,23 +23341,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:32:04 GMT" + "Tue, 14 Jul 2015 20:25:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4110,16 +23374,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14897" ], "x-ms-request-id": [ - "cfb0b3a3-02b1-48ec-9420-a70c774a5e15" + "218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "x-ms-correlation-request-id": [ - "cfb0b3a3-02b1-48ec-9420-a70c774a5e15" + "218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193220Z:cfb0b3a3-02b1-48ec-9420-a70c774a5e15" + "WESTUS:20150714T202541Z:218f352c-25c2-4a7d-9f35-402f9a7aee8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4128,23 +23392,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:32:20 GMT" + "Tue, 14 Jul 2015 20:25:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4164,16 +23425,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14896" ], "x-ms-request-id": [ - "6e91f7ad-0605-4c09-a379-a165ee877338" + "b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "x-ms-correlation-request-id": [ - "6e91f7ad-0605-4c09-a379-a165ee877338" + "b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193236Z:6e91f7ad-0605-4c09-a379-a165ee877338" + "WESTUS:20150714T202557Z:b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4182,23 +23443,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:32:35 GMT" + "Tue, 14 Jul 2015 20:25:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4218,16 +23476,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14896" ], "x-ms-request-id": [ - "1c6027ce-860f-4278-a5ae-d13eb1e42a97" + "b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "x-ms-correlation-request-id": [ - "1c6027ce-860f-4278-a5ae-d13eb1e42a97" + "b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193251Z:1c6027ce-860f-4278-a5ae-d13eb1e42a97" + "WESTUS:20150714T202557Z:b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4236,23 +23494,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:32:51 GMT" + "Tue, 14 Jul 2015 20:25:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4272,16 +23527,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14896" ], "x-ms-request-id": [ - "daead228-b6d1-4ab0-a52d-7be03e6d9d25" + "b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "x-ms-correlation-request-id": [ - "daead228-b6d1-4ab0-a52d-7be03e6d9d25" + "b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193307Z:daead228-b6d1-4ab0-a52d-7be03e6d9d25" + "WESTUS:20150714T202557Z:b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4290,23 +23545,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:33:07 GMT" + "Tue, 14 Jul 2015 20:25:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4326,16 +23578,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14896" ], "x-ms-request-id": [ - "5ca7a286-6c8a-4883-8b34-2a4a5cf0b572" + "b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "x-ms-correlation-request-id": [ - "5ca7a286-6c8a-4883-8b34-2a4a5cf0b572" + "b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193322Z:5ca7a286-6c8a-4883-8b34-2a4a5cf0b572" + "WESTUS:20150714T202557Z:b7dc6f06-e665-46a4-a3a7-bcbe3cfa0c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4344,23 +23596,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:33:22 GMT" + "Tue, 14 Jul 2015 20:25:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4376,20 +23625,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14895" ], "x-ms-request-id": [ - "c9817a0a-76f4-4ef4-8248-70a931f77e51" + "7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "x-ms-correlation-request-id": [ - "c9817a0a-76f4-4ef4-8248-70a931f77e51" + "7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193338Z:c9817a0a-76f4-4ef4-8248-70a931f77e51" + "WESTUS:20150714T202612Z:7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4398,23 +23644,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:33:37 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 20:26:12 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4430,20 +23670,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14895" ], "x-ms-request-id": [ - "b3977fbc-483c-4ef8-ab71-543356a01a6e" + "7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "x-ms-correlation-request-id": [ - "b3977fbc-483c-4ef8-ab71-543356a01a6e" + "7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193353Z:b3977fbc-483c-4ef8-ab71-543356a01a6e" + "WESTUS:20150714T202612Z:7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4452,23 +23689,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:33:53 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 20:26:12 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4484,20 +23715,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14895" ], "x-ms-request-id": [ - "12db0743-538c-477d-a8be-834684b08101" + "7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "x-ms-correlation-request-id": [ - "12db0743-538c-477d-a8be-834684b08101" + "7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193408Z:12db0743-538c-477d-a8be-834684b08101" + "WESTUS:20150714T202612Z:7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4506,23 +23734,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:34:08 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 20:26:12 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDU4OjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURVNE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q0MDgxOjVGMS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEwTURneE9qVkdNUzFUVDFWVVNFVkJVMVJCVTBsQklpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR1ZoYzNSaGMybGhJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4539,16 +23761,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14895" ], "x-ms-request-id": [ - "0957e2aa-5c75-4326-9d0f-4b37a0affc32" + "7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "x-ms-correlation-request-id": [ - "0957e2aa-5c75-4326-9d0f-4b37a0affc32" + "7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T193424Z:0957e2aa-5c75-4326-9d0f-4b37a0affc32" + "WESTUS:20150714T202612Z:7488a9ee-55f6-4263-a3e1-c00476c01ab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4557,7 +23779,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 19:34:23 GMT" + "Tue, 14 Jul 2015 20:26:12 GMT" ] }, "StatusCode": 200 @@ -4565,40 +23787,42 @@ ], "Names": { "TestListVMInSubscription": [ - "pslibtest4058", - "as3250", - "pslibtest4832" + "pslibtest4081", + "as1620", + "pslibtest8388" ], "CreatePublicIP": [ - "azsmnet8659", - "azsmnet6098", - "azsmnet3773", - "azsmnet2030" + "azsmnet2686", + "azsmnet4199", + "azsmnet9727", + "azsmnet5644" ], "CreateVNET": [ - "azsmnet5299", - "azsmnet5250", - "azsmnet6319", - "azsmnet256" + "azsmnet692", + "azsmnet6028", + "azsmnet1037", + "azsmnet8847" ], "CreateNIC": [ - "azsmnet8132", - "azsmnet6240", - "azsmnet358", - "azsmnet2500" + "azsmnet1638", + "azsmnet6071", + "azsmnet2404", + "azsmnet7441" ], "CreateDefaultVMInput": [ - "pslibtest3752", - "pslibtest7020", - "pslibtest460", - "vm4972", - "pslibtest6772", - "pslibtest9738", - "pslibtest5696", - "vm3407" + "pslibtest8257", + "pslibtest2483", + "pslibtest2265", + "vm1819", + "Microsoft.Compute/virtualMachines3310", + "pslibtest6623", + "pslibtest7019", + "pslibtest1266", + "vm694", + "Microsoft.Compute/virtualMachines9116" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json index 9b9cb2f2b8ae4..224f4b030f64a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL0Nhbm9uaWNhbC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1VidW50dVNlcnZlci9za3VzLzE1LjA0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL0Nhbm9uaWNhbC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1VidW50dVNlcnZlci9za3VzLzE1LjA0L3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504220\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504220\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504211\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504211\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "296" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5727e49-7e94-425d-a337-3ff087a26996" + "46fa5d26-0778-49c2-9722-d91075873772" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14947" ], "x-ms-correlation-request-id": [ - "f239c3b1-1ce7-46be-874c-224daa9c73aa" + "d66d41d4-5995-4116-9bf6-37cd3a787803" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T194946Z:f239c3b1-1ce7-46be-874c-224daa9c73aa" + "WESTUS:20150714T204146Z:d66d41d4-5995-4116-9bf6-37cd3a787803" ], "Date": [ - "Tue, 16 Jun 2015 19:49:46 GMT" + "Tue, 14 Jul 2015 20:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest3993?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM5OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL0Nhbm9uaWNhbC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1VidW50dVNlcnZlci9za3VzLzE1LjA0L3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993\",\r\n \"name\": \"pslibtest3993\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504211\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504211\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,50 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e78b3ac7-8af8-4040-bcdb-e1b38a802c08" + "46fa5d26-0778-49c2-9722-d91075873772" ], - "x-ms-correlation-request-id": [ - "e78b3ac7-8af8-4040-bcdb-e1b38a802c08" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T194948Z:e78b3ac7-8af8-4040-bcdb-e1b38a802c08" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "d66d41d4-5995-4116-9bf6-37cd3a787803" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204146Z:d66d41d4-5995-4116-9bf6-37cd3a787803" ], "Date": [ - "Tue, 16 Jun 2015 19:49:47 GMT" + "Tue, 14 Jul 2015 20:41:46 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest3993?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM5OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL0Nhbm9uaWNhbC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1VidW50dVNlcnZlci9za3VzLzE1LjA0L3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993\",\r\n \"name\": \"pslibtest3993\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504211\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504211\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,53 +128,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61cac7f9-3535-4216-af79-209c3000313a" + "46fa5d26-0778-49c2-9722-d91075873772" ], - "x-ms-correlation-request-id": [ - "61cac7f9-3535-4216-af79-209c3000313a" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T195115Z:61cac7f9-3535-4216-af79-209c3000313a" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "d66d41d4-5995-4116-9bf6-37cd3a787803" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204146Z:d66d41d4-5995-4116-9bf6-37cd3a787803" ], "Date": [ - "Tue, 16 Jun 2015 19:51:15 GMT" + "Tue, 14 Jul 2015 20:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Storage/storageAccounts/pslibtest6370?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2MzcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL0Nhbm9uaWNhbC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1VidW50dVNlcnZlci9za3VzLzE1LjA0L3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "eb53086f-d365-4f94-b682-64120735f5e6" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504211\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504211\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d0c8011-adb6-4e0a-ad47-7d2d61d34a1e" + "46fa5d26-0778-49c2-9722-d91075873772" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/1d0c8011-adb6-4e0a-ad47-7d2d61d34a1e?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" ], "x-ms-correlation-request-id": [ - "a2393f38-62cb-4c55-b936-77c4d989360f" + "d66d41d4-5995-4116-9bf6-37cd3a787803" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195015Z:a2393f38-62cb-4c55-b936-77c4d989360f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T204146Z:d66d41d4-5995-4116-9bf6-37cd3a787803" ], "Date": [ - "Tue, 16 Jun 2015 19:50:14 GMT" + "Tue, 14 Jul 2015 20:41:46 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/1d0c8011-adb6-4e0a-ad47-7d2d61d34a1e?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzFkMGM4MDExLWFkYjYtNGUwYS1hZDQ3LTdkMmQ2MWQzNGExZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "e2cadefe-9d9b-4adc-b03d-1b398c2dcfb8" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569\",\r\n \"name\": \"pslibtest3569\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +238,50 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-request-id": [ - "3b4c7a06-e987-4f61-8f14-8b918548a880" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/1d0c8011-adb6-4e0a-ad47-7d2d61d34a1e?monitor=true&api-version=2015-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "51218f16-eaa1-4059-bf5c-4f77be250f01" ], "x-ms-correlation-request-id": [ - "d349029b-dfb2-4737-98ec-589a4675354b" + "51218f16-eaa1-4059-bf5c-4f77be250f01" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195017Z:d349029b-dfb2-4737-98ec-589a4675354b" + "WESTUS:20150714T204149Z:51218f16-eaa1-4059-bf5c-4f77be250f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 19:50:16 GMT" + "Tue, 14 Jul 2015 20:41:48 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/1d0c8011-adb6-4e0a-ad47-7d2d61d34a1e?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzFkMGM4MDExLWFkYjYtNGUwYS1hZDQ3LTdkMmQ2MWQzNGExZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "8f0e677e-644c-4fb0-85f3-3235afd799e9" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569\",\r\n \"name\": \"pslibtest3569\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "195a409a-5d1c-4ba3-beb2-71bee9755f64" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "x-ms-request-id": [ + "51218f16-eaa1-4059-bf5c-4f77be250f01" ], "x-ms-correlation-request-id": [ - "48827ee9-5325-4c2b-9680-09b4834038ba" + "51218f16-eaa1-4059-bf5c-4f77be250f01" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195042Z:48827ee9-5325-4c2b-9680-09b4834038ba" + "WESTUS:20150714T204149Z:51218f16-eaa1-4059-bf5c-4f77be250f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 19:50:41 GMT" + "Tue, 14 Jul 2015 20:41:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "10b7d755-277b-4819-a6d6-81335e5b4a5a" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Storage/storageAccounts/pslibtest6370\",\r\n \"name\": \"pslibtest6370\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6370.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6370.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6370.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T19:50:11.1435227Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569\",\r\n \"name\": \"pslibtest3569\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +346,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "e1e6293c-7ae5-4735-b753-a80f03aca4dc" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "x-ms-request-id": [ + "51218f16-eaa1-4059-bf5c-4f77be250f01" ], "x-ms-correlation-request-id": [ - "8069a893-7f4d-4287-83b9-1530d12d8d05" + "51218f16-eaa1-4059-bf5c-4f77be250f01" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195113Z:8069a893-7f4d-4287-83b9-1530d12d8d05" + "WESTUS:20150714T204149Z:51218f16-eaa1-4059-bf5c-4f77be250f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 19:51:13 GMT" + "Tue, 14 Jul 2015 20:41:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/publicIPAddresses/azsmnet1697/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNjk3Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6013\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1697\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/publicIPAddresses/azsmnet1697\",\r\n \"etag\": \"W/\\\"3dc77698-7447-4aa5-bea6-3cc1e891f3ca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6013\",\r\n \"fqdn\": \"azsmnet6013.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569\",\r\n \"name\": \"pslibtest3569\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "579" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +400,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-request-id": [ - "40b80fea-f763-4a19-baba-e71ec88da157" + "51218f16-eaa1-4059-bf5c-4f77be250f01" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/40b80fea-f763-4a19-baba-e71ec88da157?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "51218f16-eaa1-4059-bf5c-4f77be250f01" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204149Z:51218f16-eaa1-4059-bf5c-4f77be250f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +418,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-correlation-request-id": [ - "756ef3a8-f1fa-4f9e-9644-a1940c955a59" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T195123Z:756ef3a8-f1fa-4f9e-9644-a1940c955a59" - ], "Date": [ - "Tue, 16 Jun 2015 19:51:23 GMT" + "Tue, 14 Jul 2015 20:41:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/40b80fea-f763-4a19-baba-e71ec88da157?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwYjgwZmVhLWY3NjMtNGExOS1iYWJhLWU3MWVjODhkYTE1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569\",\r\n \"name\": \"pslibtest3569\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +454,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], "x-ms-request-id": [ - "49b3df3f-31dc-41b4-a04a-a5e16135a467" + "fa104860-df6e-4775-989a-2727ea7ff282" + ], + "x-ms-correlation-request-id": [ + "fa104860-df6e-4775-989a-2727ea7ff282" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204231Z:fa104860-df6e-4775-989a-2727ea7ff282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +472,32 @@ "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": [ - "6bf103ff-635e-453d-b036-50653dddd438" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T195124Z:6bf103ff-635e-453d-b036-50653dddd438" - ], "Date": [ - "Tue, 16 Jun 2015 19:51:23 GMT" + "Tue, 14 Jul 2015 20:42:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/publicIPAddresses/azsmnet1697/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNjk3Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1697\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/publicIPAddresses/azsmnet1697\",\r\n \"etag\": \"W/\\\"a3f00cfe-c8af-473f-b5d5-9ad1f88eadd4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6013\",\r\n \"fqdn\": \"azsmnet6013.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569\",\r\n \"name\": \"pslibtest3569\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,8 +508,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], "x-ms-request-id": [ - "5cdfc5d9-0e0a-462d-8019-f454ecb98efe" + "fa104860-df6e-4775-989a-2727ea7ff282" + ], + "x-ms-correlation-request-id": [ + "fa104860-df6e-4775-989a-2727ea7ff282" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204231Z:fa104860-df6e-4775-989a-2727ea7ff282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,48 +526,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"a3f00cfe-c8af-473f-b5d5-9ad1f88eadd4\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "a6206e95-637b-4e41-895e-d63032a6392f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T195124Z:a6206e95-637b-4e41-895e-d63032a6392f" - ], "Date": [ - "Tue, 16 Jun 2015 19:51:24 GMT" + "Tue, 14 Jul 2015 20:42:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/virtualnetworks/azsmnet558?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTU4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet1520\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet558\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/virtualNetworks/azsmnet558\",\r\n \"etag\": \"W/\\\"1e1877b9-2c55-4ed5-b4d4-7b454cea8e04\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1520\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/virtualNetworks/azsmnet558/subnets/azsmnet1520\",\r\n \"etag\": \"W/\\\"1e1877b9-2c55-4ed5-b4d4-7b454cea8e04\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569\",\r\n \"name\": \"pslibtest3569\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "956" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,14 +562,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" ], "x-ms-request-id": [ - "2c13c83c-a560-49d2-8066-6c834dd22a74" + "fa104860-df6e-4775-989a-2727ea7ff282" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/2c13c83c-a560-49d2-8066-6c834dd22a74?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "fa104860-df6e-4775-989a-2727ea7ff282" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204231Z:fa104860-df6e-4775-989a-2727ea7ff282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,42 +580,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" - ], - "x-ms-correlation-request-id": [ - "281dc51a-eed2-4663-adee-ba29d8646743" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T195128Z:281dc51a-eed2-4663-adee-ba29d8646743" - ], "Date": [ - "Tue, 16 Jun 2015 19:51:27 GMT" + "Tue, 14 Jul 2015 20:42:31 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/2c13c83c-a560-49d2-8066-6c834dd22a74?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJjMTNjODNjLWE1NjAtNDlkMi04MDY2LTZjODM0ZGQyMmE3ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569\",\r\n \"name\": \"pslibtest3569\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], "x-ms-request-id": [ - "3779d852-cf32-40a7-a1a5-09d381d54db3" + "fa104860-df6e-4775-989a-2727ea7ff282" + ], + "x-ms-correlation-request-id": [ + "fa104860-df6e-4775-989a-2727ea7ff282" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204231Z:fa104860-df6e-4775-989a-2727ea7ff282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,39 +634,32 @@ "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": [ - "b8f3953b-9127-428d-bec5-05cd3fce5b66" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T195128Z:b8f3953b-9127-428d-bec5-05cd3fce5b66" - ], "Date": [ - "Tue, 16 Jun 2015 19:51:28 GMT" + "Tue, 14 Jul 2015 20:42:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/virtualnetworks/azsmnet558/subnets/azsmnet1520?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTU4L3N1Ym5ldHMvYXpzbW5ldDE1MjA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2Mzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1520\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/virtualNetworks/azsmnet558/subnets/azsmnet1520\",\r\n \"etag\": \"W/\\\"0566a452-d2ad-44a7-9b7d-16e12f4a225d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "354" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,57 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "970bc00a-04bf-4f07-8123-309fe5f62b0b" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "97193f62-baec-41dd-931b-1a4e6113626f" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"0566a452-d2ad-44a7-9b7d-16e12f4a225d\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/97193f62-baec-41dd-931b-1a4e6113626f?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-correlation-request-id": [ - "72925584-9f47-4352-b20e-c30e994029b6" + "aa596ebb-4f39-45c0-865d-eb4b189d35e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195129Z:72925584-9f47-4352-b20e-c30e994029b6" + "WESTUS:20150714T204154Z:aa596ebb-4f39-45c0-865d-eb4b189d35e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:28 GMT" + "Tue, 14 Jul 2015 20:41:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzMTgwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2Mzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/virtualNetworks/azsmnet558/subnets/azsmnet1520\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/publicIPAddresses/azsmnet1697\"\r\n }\r\n },\r\n \"name\": \"azsmnet1146\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet3180\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "715" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3180\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180\",\r\n \"etag\": \"W/\\\"6d771afc-3a66-4a2a-b5d4-7cc50d054860\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1146\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180/ipConfigurations/azsmnet1146\",\r\n \"etag\": \"W/\\\"6d771afc-3a66-4a2a-b5d4-7cc50d054860\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/publicIPAddresses/azsmnet1697\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/virtualNetworks/azsmnet558/subnets/azsmnet1520\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1323" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -776,54 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "8805f277-4810-46f2-ac66-80d6df5149f2" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/8805f277-4810-46f2-ac66-80d6df5149f2?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "97193f62-baec-41dd-931b-1a4e6113626f" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/97193f62-baec-41dd-931b-1a4e6113626f?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1187" ], "x-ms-correlation-request-id": [ - "bdd65eea-134c-48b7-a54c-ae90ffff0cc3" + "aa596ebb-4f39-45c0-865d-eb4b189d35e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195133Z:bdd65eea-134c-48b7-a54c-ae90ffff0cc3" + "WESTUS:20150714T204154Z:aa596ebb-4f39-45c0-865d-eb4b189d35e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:32 GMT" + "Tue, 14 Jul 2015 20:41:54 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/8805f277-4810-46f2-ac66-80d6df5149f2?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDVmMjc3LTQ4MTAtNDZmMi1hYzY2LTgwZDZkZjUxNDlmMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2Mzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,48 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "7d1e68ae-a50d-4cca-b8ed-f30f9263e82f" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "97193f62-baec-41dd-931b-1a4e6113626f" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/97193f62-baec-41dd-931b-1a4e6113626f?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-correlation-request-id": [ - "398533fa-2efa-4b54-be53-f14944cd55da" + "aa596ebb-4f39-45c0-865d-eb4b189d35e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195134Z:398533fa-2efa-4b54-be53-f14944cd55da" + "WESTUS:20150714T204154Z:aa596ebb-4f39-45c0-865d-eb4b189d35e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:33 GMT" + "Tue, 14 Jul 2015 20:41:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzMTgwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2Mzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3180\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180\",\r\n \"etag\": \"W/\\\"6d771afc-3a66-4a2a-b5d4-7cc50d054860\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1146\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180/ipConfigurations/azsmnet1146\",\r\n \"etag\": \"W/\\\"6d771afc-3a66-4a2a-b5d4-7cc50d054860\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/publicIPAddresses/azsmnet1697\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/virtualNetworks/azsmnet558/subnets/azsmnet1520\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1323" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,57 +862,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "c37c4e48-106a-476b-98b4-04eea336dbcd" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "97193f62-baec-41dd-931b-1a4e6113626f" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"6d771afc-3a66-4a2a-b5d4-7cc50d054860\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/97193f62-baec-41dd-931b-1a4e6113626f?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-correlation-request-id": [ - "29797bc2-fb51-44f2-a11e-5a340ea82756" + "aa596ebb-4f39-45c0-865d-eb4b189d35e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195134Z:29797bc2-fb51-44f2-a11e-5a340ea82756" + "WESTUS:20150714T204154Z:aa596ebb-4f39-45c0-865d-eb4b189d35e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:33 GMT" + "Tue, 14 Jul 2015 20:41:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/availabilitySets/as7396?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3Mzk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as7396\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/97193f62-baec-41dd-931b-1a4e6113626f?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3MTkzZjYyLWJhZWMtNDFkZC05MzFiLTFhNGU2MTEzNjI2Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "133" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/availabilitySets/as7396\",\r\n \"name\": \"as7396\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "403" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -947,11 +920,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "96973f33-fa5b-4e65-8ac3-87b6a295b08d" + "f869bb6f-660f-47ee-92cf-b0018b61f1eb" ], "Cache-Control": [ "no-cache" @@ -960,41 +930,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" ], "x-ms-correlation-request-id": [ - "ea531db8-b70d-4d94-86a3-29180d777668" + "2fc7ff54-5db8-48b6-ac14-d277d234d5a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195138Z:ea531db8-b70d-4d94-86a3-29180d777668" + "WESTUS:20150714T204220Z:2fc7ff54-5db8-48b6-ac14-d277d234d5a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:37 GMT" + "Tue, 14 Jul 2015 20:42:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4OTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504220\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6370.blob.core.windows.net/pslibtest849/ospslibtest9886.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3993\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/availabilitySets/as7396\"\r\n }\r\n },\r\n \"name\": \"vm6896\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/97193f62-baec-41dd-931b-1a4e6113626f?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3MTkzZjYyLWJhZWMtNDFkZC05MzFiLTFhNGU2MTEzNjI2Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "2892" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/availabilitySets/AS7396\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6370.blob.core.windows.net/pslibtest849/ospslibtest9886.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896\",\r\n \"name\": \"vm6896\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3031" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,14 +972,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/64616235-2fbd-40ca-970d-e28aae9d26d4?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "64616235-2fbd-40ca-970d-e28aae9d26d4" + "f869bb6f-660f-47ee-92cf-b0018b61f1eb" ], "Cache-Control": [ "no-cache" @@ -1021,41 +982,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" ], "x-ms-correlation-request-id": [ - "b2b388a7-05d3-408a-b45a-0c514f87ab69" + "2fc7ff54-5db8-48b6-ac14-d277d234d5a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195142Z:b2b388a7-05d3-408a-b45a-0c514f87ab69" + "WESTUS:20150714T204220Z:2fc7ff54-5db8-48b6-ac14-d277d234d5a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:42 GMT" + "Tue, 14 Jul 2015 20:42:19 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4OTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6370.blob.core.windows.net/pslibtest849/ospslibtest9886.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/availabilitySets/AS7396\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896\",\r\n \"name\": \"vm6896\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/97193f62-baec-41dd-931b-1a4e6113626f?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3MTkzZjYyLWJhZWMtNDFkZC05MzFiLTFhNGU2MTEzNjI2Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "3078" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/availabilitySets/AS7396\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6370.blob.core.windows.net/pslibtest849/ospslibtest9886.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896\",\r\n \"name\": \"vm6896\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3031" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1066,14 +1024,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/1a2046ed-409d-4bcb-9ef8-709c7997e784?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "1a2046ed-409d-4bcb-9ef8-709c7997e784" + "f869bb6f-660f-47ee-92cf-b0018b61f1eb" ], "Cache-Control": [ "no-cache" @@ -1082,35 +1034,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" ], "x-ms-correlation-request-id": [ - "80e6594b-9ace-4ade-aec8-5911839ccd83" + "2fc7ff54-5db8-48b6-ac14-d277d234d5a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195145Z:80e6594b-9ace-4ade-aec8-5911839ccd83" + "WESTUS:20150714T204220Z:2fc7ff54-5db8-48b6-ac14-d277d234d5a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:45 GMT" + "Tue, 14 Jul 2015 20:42:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/64616235-2fbd-40ca-970d-e28aae9d26d4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY0NjE2MjM1LTJmYmQtNDBjYS05NzBkLWUyOGFhZTlkMjZkND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/97193f62-baec-41dd-931b-1a4e6113626f?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3MTkzZjYyLWJhZWMtNDFkZC05MzFiLTFhNGU2MTEzNjI2Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"64616235-2fbd-40ca-970d-e28aae9d26d4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:51:40.7951032-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1121,11 +1076,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "38a478c5-6c56-4ef3-89f9-7775a0548900" + "f869bb6f-660f-47ee-92cf-b0018b61f1eb" ], "Cache-Control": [ "no-cache" @@ -1135,34 +1087,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14946" ], "x-ms-correlation-request-id": [ - "0fe35934-a1ab-4cc8-ab5b-eb56b9e5b195" + "2fc7ff54-5db8-48b6-ac14-d277d234d5a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195143Z:0fe35934-a1ab-4cc8-ab5b-eb56b9e5b195" + "WESTUS:20150714T204220Z:2fc7ff54-5db8-48b6-ac14-d277d234d5a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:43 GMT" + "Tue, 14 Jul 2015 20:42:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4OTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/availabilitySets/AS7396\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6370.blob.core.windows.net/pslibtest849/ospslibtest9886.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896\",\r\n \"name\": \"vm6896\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637\",\r\n \"name\": \"pslibtest637\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest637.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest637.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest637.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:41:50.4800914Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3031" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,11 +1128,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "305743dc-458e-4663-af38-dbfc6e24bc58" + "4a035277-bf8c-4bb2-ab5a-270a8003a928" ], "Cache-Control": [ "no-cache" @@ -1187,34 +1139,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14943" ], "x-ms-correlation-request-id": [ - "1e0b913a-2667-4116-b09d-1ff3384d2bab" + "8267b3ec-1e3c-495d-b512-42cb25809521" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195144Z:1e0b913a-2667-4116-b09d-1ff3384d2bab" + "WESTUS:20150714T204230Z:8267b3ec-1e3c-495d-b512-42cb25809521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:44 GMT" + "Tue, 14 Jul 2015 20:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4OTY/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/availabilitySets/AS7396\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504220\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6370.blob.core.windows.net/pslibtest849/ospslibtest9886.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Network/networkInterfaces/azsmnet3180\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-06-16T12:51:44-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T12:51:42.4357386-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896\",\r\n \"name\": \"vm6896\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637\",\r\n \"name\": \"pslibtest637\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest637.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest637.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest637.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:41:50.4800914Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3959" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1225,11 +1180,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "5d9c86e1-a888-4340-9a1c-164ea96c47c7" + "4a035277-bf8c-4bb2-ab5a-270a8003a928" ], "Cache-Control": [ "no-cache" @@ -1239,34 +1191,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14943" ], "x-ms-correlation-request-id": [ - "518197c3-e8d5-432e-8d90-b65a51cb4345" + "8267b3ec-1e3c-495d-b512-42cb25809521" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195144Z:518197c3-e8d5-432e-8d90-b65a51cb4345" + "WESTUS:20150714T204230Z:8267b3ec-1e3c-495d-b512-42cb25809521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:44 GMT" + "Tue, 14 Jul 2015 20:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/1a2046ed-409d-4bcb-9ef8-709c7997e784?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFhMjA0NmVkLTQwOWQtNGJjYi05ZWY4LTcwOWM3OTk3ZTc4ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1a2046ed-409d-4bcb-9ef8-709c7997e784\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:51:44.9045042-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637\",\r\n \"name\": \"pslibtest637\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest637.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest637.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest637.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:41:50.4800914Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1277,11 +1232,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "a4c48e81-24ed-4bae-be25-026834098df5" + "4a035277-bf8c-4bb2-ab5a-270a8003a928" ], "Cache-Control": [ "no-cache" @@ -1291,34 +1243,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14943" ], "x-ms-correlation-request-id": [ - "789d4fce-0c3b-49c8-911c-340d6904638b" + "8267b3ec-1e3c-495d-b512-42cb25809521" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195146Z:789d4fce-0c3b-49c8-911c-340d6904638b" + "WESTUS:20150714T204230Z:8267b3ec-1e3c-495d-b512-42cb25809521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:51:45 GMT" + "Tue, 14 Jul 2015 20:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/1a2046ed-409d-4bcb-9ef8-709c7997e784?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFhMjA0NmVkLTQwOWQtNGJjYi05ZWY4LTcwOWM3OTk3ZTc4ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1a2046ed-409d-4bcb-9ef8-709c7997e784\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:51:44.9045042-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637\",\r\n \"name\": \"pslibtest637\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest637.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest637.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest637.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:41:50.4800914Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,11 +1284,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "0fa6b2e8-3d5e-437b-a819-f5e3d8064567" + "4a035277-bf8c-4bb2-ab5a-270a8003a928" ], "Cache-Control": [ "no-cache" @@ -1343,34 +1295,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14943" ], "x-ms-correlation-request-id": [ - "160fc7db-fffb-49e8-8776-fd9218ecac4c" + "8267b3ec-1e3c-495d-b512-42cb25809521" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195216Z:160fc7db-fffb-49e8-8776-fd9218ecac4c" + "WESTUS:20150714T204230Z:8267b3ec-1e3c-495d-b512-42cb25809521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:52:16 GMT" + "Tue, 14 Jul 2015 20:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/1a2046ed-409d-4bcb-9ef8-709c7997e784?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFhMjA0NmVkLTQwOWQtNGJjYi05ZWY4LTcwOWM3OTk3ZTc4ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2Mzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1a2046ed-409d-4bcb-9ef8-709c7997e784\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:51:44.9045042-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637\",\r\n \"name\": \"pslibtest637\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest637.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest637.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest637.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:41:50.4800914Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1381,11 +1336,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "6fc3b388-4ec4-4403-b01d-a66f069704b5" + "8ffbd4f4-de28-47ba-a1de-269c7227d493" ], "Cache-Control": [ "no-cache" @@ -1395,34 +1347,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14942" ], "x-ms-correlation-request-id": [ - "766f87dc-393e-49e2-b8a2-ffcba05b99e7" + "c68fc9c4-ed23-4adc-85bb-f98aacf2cdf7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195247Z:766f87dc-393e-49e2-b8a2-ffcba05b99e7" + "WESTUS:20150714T204230Z:c68fc9c4-ed23-4adc-85bb-f98aacf2cdf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:52:47 GMT" + "Tue, 14 Jul 2015 20:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/1a2046ed-409d-4bcb-9ef8-709c7997e784?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFhMjA0NmVkLTQwOWQtNGJjYi05ZWY4LTcwOWM3OTk3ZTc4ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2Mzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1a2046ed-409d-4bcb-9ef8-709c7997e784\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:51:44.9045042-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637\",\r\n \"name\": \"pslibtest637\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest637.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest637.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest637.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:41:50.4800914Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1433,11 +1388,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "5e374605-d4c6-4ed3-84a0-ea0c22592ac5" + "8ffbd4f4-de28-47ba-a1de-269c7227d493" ], "Cache-Control": [ "no-cache" @@ -1447,34 +1399,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14942" ], "x-ms-correlation-request-id": [ - "b3262cf0-f175-4689-9662-970fabb21cc2" + "c68fc9c4-ed23-4adc-85bb-f98aacf2cdf7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195318Z:b3262cf0-f175-4689-9662-970fabb21cc2" + "WESTUS:20150714T204230Z:c68fc9c4-ed23-4adc-85bb-f98aacf2cdf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:53:17 GMT" + "Tue, 14 Jul 2015 20:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/1a2046ed-409d-4bcb-9ef8-709c7997e784?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFhMjA0NmVkLTQwOWQtNGJjYi05ZWY4LTcwOWM3OTk3ZTc4ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2Mzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1a2046ed-409d-4bcb-9ef8-709c7997e784\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T12:51:44.9045042-07:00\",\r\n \"endTime\": \"2015-06-16T12:53:48.0146849-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637\",\r\n \"name\": \"pslibtest637\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest637.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest637.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest637.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:41:50.4800914Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1485,11 +1440,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "8ffbd4f4-de28-47ba-a1de-269c7227d493" + ], + "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": [ + "c68fc9c4-ed23-4adc-85bb-f98aacf2cdf7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204230Z:c68fc9c4-ed23-4adc-85bb-f98aacf2cdf7" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Tue, 14 Jul 2015 20:42:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2Mzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Storage/storageAccounts/pslibtest637\",\r\n \"name\": \"pslibtest637\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest637.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest637.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest637.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:41:50.4800914Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "674" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "1c83d7f3-fa86-45d7-9e24-b0533c402134" + "8ffbd4f4-de28-47ba-a1de-269c7227d493" ], "Cache-Control": [ "no-cache" @@ -1499,34 +1503,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14942" ], "x-ms-correlation-request-id": [ - "87552a76-a414-40e4-b040-e110ff03ca16" + "c68fc9c4-ed23-4adc-85bb-f98aacf2cdf7" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195349Z:87552a76-a414-40e4-b040-e110ff03ca16" + "WESTUS:20150714T204230Z:c68fc9c4-ed23-4adc-85bb-f98aacf2cdf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:53:49 GMT" + "Tue, 14 Jul 2015 20:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest3993/providers/Microsoft.Compute/virtualMachines/vm6896?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4OTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"0867927f-6847-4076-ae11-64bb8b31743f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1534,54 +1550,63 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7bb43f71-2e3e-49fb-a388-d0c28c8cadbd" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/87abdaff-d704-4e7e-a8e2-563cf1308ec0?api-version=2015-06-15" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/7bb43f71-2e3e-49fb-a388-d0c28c8cadbd?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "87abdaff-d704-4e7e-a8e2-563cf1308ec0" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/87abdaff-d704-4e7e-a8e2-563cf1308ec0?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1185" ], "x-ms-correlation-request-id": [ - "c198f589-7b44-4f79-97a0-1a1bcbbe6e11" + "80296be3-9d04-41fb-8823-358c3e012a00" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195352Z:c198f589-7b44-4f79-97a0-1a1bcbbe6e11" + "WESTUS:20150714T204237Z:80296be3-9d04-41fb-8823-358c3e012a00" ], "Date": [ - "Tue, 16 Jun 2015 19:53:52 GMT" + "Tue, 14 Jul 2015 20:42:36 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest3993?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM5OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"0867927f-6847-4076-ae11-64bb8b31743f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1590,19 +1615,77 @@ "no-cache" ], "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "10" ], "x-ms-request-id": [ - "a7467ac2-b140-4c86-b631-a580c0469a32" + "7bb43f71-2e3e-49fb-a388-d0c28c8cadbd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/7bb43f71-2e3e-49fb-a388-d0c28c8cadbd?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" ], "x-ms-correlation-request-id": [ - "a7467ac2-b140-4c86-b631-a580c0469a32" + "80296be3-9d04-41fb-8823-358c3e012a00" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T195354Z:a7467ac2-b140-4c86-b631-a580c0469a32" + "WESTUS:20150714T204237Z:80296be3-9d04-41fb-8823-358c3e012a00" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:36 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"0867927f-6847-4076-ae11-64bb8b31743f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7bb43f71-2e3e-49fb-a388-d0c28c8cadbd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/7bb43f71-2e3e-49fb-a388-d0c28c8cadbd?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1610,44 +1693,8423 @@ "Cache-Control": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "80296be3-9d04-41fb-8823-358c3e012a00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204237Z:80296be3-9d04-41fb-8823-358c3e012a00" + ], "Date": [ - "Tue, 16 Jun 2015 19:53:54 GMT" + "Tue, 14 Jul 2015 20:42:36 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzOTkzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"0867927f-6847-4076-ae11-64bb8b31743f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7bb43f71-2e3e-49fb-a388-d0c28c8cadbd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/7bb43f71-2e3e-49fb-a388-d0c28c8cadbd?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "80296be3-9d04-41fb-8823-358c3e012a00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204237Z:80296be3-9d04-41fb-8823-358c3e012a00" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:36 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/7bb43f71-2e3e-49fb-a388-d0c28c8cadbd?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdiYjQzZjcxLTJlM2UtNDlmYi1hMzg4LWQwYzI4YzhjYWRiZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "977a1a31-ae9c-4d26-a1b5-9b734302f1c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "e17e71f2-9447-4afb-8f04-839a3f20b241" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204248Z:e17e71f2-9447-4afb-8f04-839a3f20b241" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/7bb43f71-2e3e-49fb-a388-d0c28c8cadbd?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdiYjQzZjcxLTJlM2UtNDlmYi1hMzg4LWQwYzI4YzhjYWRiZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "977a1a31-ae9c-4d26-a1b5-9b734302f1c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "e17e71f2-9447-4afb-8f04-839a3f20b241" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204248Z:e17e71f2-9447-4afb-8f04-839a3f20b241" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/7bb43f71-2e3e-49fb-a388-d0c28c8cadbd?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdiYjQzZjcxLTJlM2UtNDlmYi1hMzg4LWQwYzI4YzhjYWRiZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "977a1a31-ae9c-4d26-a1b5-9b734302f1c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "e17e71f2-9447-4afb-8f04-839a3f20b241" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204248Z:e17e71f2-9447-4afb-8f04-839a3f20b241" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/7bb43f71-2e3e-49fb-a388-d0c28c8cadbd?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdiYjQzZjcxLTJlM2UtNDlmYi1hMzg4LWQwYzI4YzhjYWRiZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "977a1a31-ae9c-4d26-a1b5-9b734302f1c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "e17e71f2-9447-4afb-8f04-839a3f20b241" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204248Z:e17e71f2-9447-4afb-8f04-839a3f20b241" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c92a480-8af8-44aa-8ccd-226ff9258ff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "8f6f8c6c-f750-4172-bee6-0268a4b0515d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204248Z:8f6f8c6c-f750-4172-bee6-0268a4b0515d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c92a480-8af8-44aa-8ccd-226ff9258ff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "8f6f8c6c-f750-4172-bee6-0268a4b0515d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204248Z:8f6f8c6c-f750-4172-bee6-0268a4b0515d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c92a480-8af8-44aa-8ccd-226ff9258ff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "8f6f8c6c-f750-4172-bee6-0268a4b0515d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204248Z:8f6f8c6c-f750-4172-bee6-0268a4b0515d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c92a480-8af8-44aa-8ccd-226ff9258ff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "8f6f8c6c-f750-4172-bee6-0268a4b0515d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204248Z:8f6f8c6c-f750-4172-bee6-0268a4b0515d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59aa719c-5b76-4eb1-a598-165a9575059c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "77bac45e-42a1-4dfa-bebc-f95932a6aa41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204249Z:77bac45e-42a1-4dfa-bebc-f95932a6aa41" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59aa719c-5b76-4eb1-a598-165a9575059c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "77bac45e-42a1-4dfa-bebc-f95932a6aa41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204249Z:77bac45e-42a1-4dfa-bebc-f95932a6aa41" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59aa719c-5b76-4eb1-a598-165a9575059c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "77bac45e-42a1-4dfa-bebc-f95932a6aa41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204249Z:77bac45e-42a1-4dfa-bebc-f95932a6aa41" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxNzA2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/publicIPAddresses/azsmnet1706\",\r\n \"etag\": \"W/\\\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7628\",\r\n \"fqdn\": \"azsmnet7628.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59aa719c-5b76-4eb1-a598-165a9575059c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"116b5c72-a5f2-465c-952b-8de4bb39b4e9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "77bac45e-42a1-4dfa-bebc-f95932a6aa41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204249Z:77bac45e-42a1-4dfa-bebc-f95932a6aa41" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3730\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730\",\r\n \"etag\": \"W/\\\"ebbfc022-7893-4f98-bd4d-f54a24b666f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"ebbfc022-7893-4f98-bd4d-f54a24b666f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1169e179-3149-44ac-bf44-7f97126013b7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1169e179-3149-44ac-bf44-7f97126013b7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "e502d7bd-677a-4136-8254-b31b2b162132" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204252Z:e502d7bd-677a-4136-8254-b31b2b162132" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3730\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730\",\r\n \"etag\": \"W/\\\"ebbfc022-7893-4f98-bd4d-f54a24b666f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"ebbfc022-7893-4f98-bd4d-f54a24b666f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1169e179-3149-44ac-bf44-7f97126013b7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1169e179-3149-44ac-bf44-7f97126013b7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "e502d7bd-677a-4136-8254-b31b2b162132" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204252Z:e502d7bd-677a-4136-8254-b31b2b162132" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3730\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730\",\r\n \"etag\": \"W/\\\"ebbfc022-7893-4f98-bd4d-f54a24b666f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"ebbfc022-7893-4f98-bd4d-f54a24b666f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1169e179-3149-44ac-bf44-7f97126013b7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1169e179-3149-44ac-bf44-7f97126013b7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "e502d7bd-677a-4136-8254-b31b2b162132" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204252Z:e502d7bd-677a-4136-8254-b31b2b162132" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3730\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730\",\r\n \"etag\": \"W/\\\"ebbfc022-7893-4f98-bd4d-f54a24b666f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"ebbfc022-7893-4f98-bd4d-f54a24b666f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1169e179-3149-44ac-bf44-7f97126013b7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1169e179-3149-44ac-bf44-7f97126013b7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "e502d7bd-677a-4136-8254-b31b2b162132" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204252Z:e502d7bd-677a-4136-8254-b31b2b162132" + ], + "Date": [ + "Tue, 14 Jul 2015 20:42:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1169e179-3149-44ac-bf44-7f97126013b7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExNjllMTc5LTMxNDktNDRhYy1iZjQ0LTdmOTcxMjYwMTNiNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44633001-7c7c-45b0-a52c-712e2bc7bb96" + ], + "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": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "61c4694f-831d-48ea-a69f-d4293b816431" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204303Z:61c4694f-831d-48ea-a69f-d4293b816431" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1169e179-3149-44ac-bf44-7f97126013b7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExNjllMTc5LTMxNDktNDRhYy1iZjQ0LTdmOTcxMjYwMTNiNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44633001-7c7c-45b0-a52c-712e2bc7bb96" + ], + "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": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "61c4694f-831d-48ea-a69f-d4293b816431" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204303Z:61c4694f-831d-48ea-a69f-d4293b816431" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1169e179-3149-44ac-bf44-7f97126013b7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExNjllMTc5LTMxNDktNDRhYy1iZjQ0LTdmOTcxMjYwMTNiNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44633001-7c7c-45b0-a52c-712e2bc7bb96" + ], + "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": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "61c4694f-831d-48ea-a69f-d4293b816431" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204303Z:61c4694f-831d-48ea-a69f-d4293b816431" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1169e179-3149-44ac-bf44-7f97126013b7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExNjllMTc5LTMxNDktNDRhYy1iZjQ0LTdmOTcxMjYwMTNiNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44633001-7c7c-45b0-a52c-712e2bc7bb96" + ], + "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": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "61c4694f-831d-48ea-a69f-d4293b816431" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204303Z:61c4694f-831d-48ea-a69f-d4293b816431" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3730\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a548f4c0-6f1f-42d2-bc60-6a9968d5bc5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3b7420b9-ec4f-44f1-931b-ab596f231514\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "c4cdff31-6ab0-47d5-9d41-61d337620e96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204303Z:c4cdff31-6ab0-47d5-9d41-61d337620e96" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3730\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a548f4c0-6f1f-42d2-bc60-6a9968d5bc5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3b7420b9-ec4f-44f1-931b-ab596f231514\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "c4cdff31-6ab0-47d5-9d41-61d337620e96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204303Z:c4cdff31-6ab0-47d5-9d41-61d337620e96" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3730\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a548f4c0-6f1f-42d2-bc60-6a9968d5bc5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3b7420b9-ec4f-44f1-931b-ab596f231514\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "c4cdff31-6ab0-47d5-9d41-61d337620e96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204303Z:c4cdff31-6ab0-47d5-9d41-61d337620e96" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3730\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a548f4c0-6f1f-42d2-bc60-6a9968d5bc5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3b7420b9-ec4f-44f1-931b-ab596f231514\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "c4cdff31-6ab0-47d5-9d41-61d337620e96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204303Z:c4cdff31-6ab0-47d5-9d41-61d337620e96" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730/subnets/azsmnet6457?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMC9zdWJuZXRzL2F6c21uZXQ2NDU3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff0597f7-4793-4dc6-9dfd-891e45647fd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3b7420b9-ec4f-44f1-931b-ab596f231514\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "256b2aed-c555-4865-8403-4f801cac57cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204304Z:256b2aed-c555-4865-8403-4f801cac57cf" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730/subnets/azsmnet6457?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMC9zdWJuZXRzL2F6c21uZXQ2NDU3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff0597f7-4793-4dc6-9dfd-891e45647fd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3b7420b9-ec4f-44f1-931b-ab596f231514\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "256b2aed-c555-4865-8403-4f801cac57cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204304Z:256b2aed-c555-4865-8403-4f801cac57cf" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730/subnets/azsmnet6457?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMC9zdWJuZXRzL2F6c21uZXQ2NDU3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff0597f7-4793-4dc6-9dfd-891e45647fd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3b7420b9-ec4f-44f1-931b-ab596f231514\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "256b2aed-c555-4865-8403-4f801cac57cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204304Z:256b2aed-c555-4865-8403-4f801cac57cf" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualnetworks/azsmnet3730/subnets/azsmnet6457?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzczMC9zdWJuZXRzL2F6c21uZXQ2NDU3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6457\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff0597f7-4793-4dc6-9dfd-891e45647fd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3b7420b9-ec4f-44f1-931b-ab596f231514\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "256b2aed-c555-4865-8403-4f801cac57cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204304Z:256b2aed-c555-4865-8403-4f801cac57cf" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4NjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8640\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640/ipConfigurations/azsmnet4869\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f79840f7-004b-4b00-8328-5d3daf121384" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/f79840f7-004b-4b00-8328-5d3daf121384?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "73e5dbe7-bb78-4e28-8ff1-c22d4295b0c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204308Z:73e5dbe7-bb78-4e28-8ff1-c22d4295b0c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4NjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8640\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640/ipConfigurations/azsmnet4869\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f79840f7-004b-4b00-8328-5d3daf121384" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/f79840f7-004b-4b00-8328-5d3daf121384?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "73e5dbe7-bb78-4e28-8ff1-c22d4295b0c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204308Z:73e5dbe7-bb78-4e28-8ff1-c22d4295b0c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4NjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8640\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640/ipConfigurations/azsmnet4869\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f79840f7-004b-4b00-8328-5d3daf121384" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/f79840f7-004b-4b00-8328-5d3daf121384?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "73e5dbe7-bb78-4e28-8ff1-c22d4295b0c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204308Z:73e5dbe7-bb78-4e28-8ff1-c22d4295b0c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4NjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6457\",\r\n \"etag\": \"W/\\\"3b7420b9-ec4f-44f1-931b-ab596f231514\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8640\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640/ipConfigurations/azsmnet4869\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f79840f7-004b-4b00-8328-5d3daf121384" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/f79840f7-004b-4b00-8328-5d3daf121384?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "73e5dbe7-bb78-4e28-8ff1-c22d4295b0c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204308Z:73e5dbe7-bb78-4e28-8ff1-c22d4295b0c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4NjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8640\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640/ipConfigurations/azsmnet4869\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b245da9-904b-4c0b-8a8d-089842100bd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"df072663-08cd-41d1-8764-695fe435de23\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "83bd5c13-7c0b-4a68-aae7-75aeba9b7677" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204308Z:83bd5c13-7c0b-4a68-aae7-75aeba9b7677" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4NjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8640\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640/ipConfigurations/azsmnet4869\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b245da9-904b-4c0b-8a8d-089842100bd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"df072663-08cd-41d1-8764-695fe435de23\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "83bd5c13-7c0b-4a68-aae7-75aeba9b7677" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204308Z:83bd5c13-7c0b-4a68-aae7-75aeba9b7677" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4NjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8640\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640/ipConfigurations/azsmnet4869\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b245da9-904b-4c0b-8a8d-089842100bd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"df072663-08cd-41d1-8764-695fe435de23\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "83bd5c13-7c0b-4a68-aae7-75aeba9b7677" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204308Z:83bd5c13-7c0b-4a68-aae7-75aeba9b7677" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4NjQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8640\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4869\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640/ipConfigurations/azsmnet4869\",\r\n \"etag\": \"W/\\\"df072663-08cd-41d1-8764-695fe435de23\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/virtualNetworks/azsmnet3730/subnets/azsmnet6457\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b245da9-904b-4c0b-8a8d-089842100bd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"df072663-08cd-41d1-8764-695fe435de23\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "83bd5c13-7c0b-4a68-aae7-75aeba9b7677" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204308Z:83bd5c13-7c0b-4a68-aae7-75aeba9b7677" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2MzI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327\",\r\n \"name\": \"as6327\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3a60aaa0-adbc-4bf5-89ba-76f6c56e9059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "e9cdd76e-7a20-48c0-a052-ebc37d6805eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204312Z:e9cdd76e-7a20-48c0-a052-ebc37d6805eb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2MzI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327\",\r\n \"name\": \"as6327\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3a60aaa0-adbc-4bf5-89ba-76f6c56e9059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "e9cdd76e-7a20-48c0-a052-ebc37d6805eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204312Z:e9cdd76e-7a20-48c0-a052-ebc37d6805eb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2MzI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327\",\r\n \"name\": \"as6327\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3a60aaa0-adbc-4bf5-89ba-76f6c56e9059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "e9cdd76e-7a20-48c0-a052-ebc37d6805eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204312Z:e9cdd76e-7a20-48c0-a052-ebc37d6805eb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2MzI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327\",\r\n \"name\": \"as6327\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3a60aaa0-adbc-4bf5-89ba-76f6c56e9059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "e9cdd76e-7a20-48c0-a052-ebc37d6805eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204312Z:e9cdd76e-7a20-48c0-a052-ebc37d6805eb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3569\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2823" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3031" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "194396f6-7911-4822-b561-8b3bdc53985d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "8c9ae05a-b67e-4a8a-95e0-fb77544d2c74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204317Z:8c9ae05a-b67e-4a8a-95e0-fb77544d2c74" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3569\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2823" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3031" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "194396f6-7911-4822-b561-8b3bdc53985d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "8c9ae05a-b67e-4a8a-95e0-fb77544d2c74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204317Z:8c9ae05a-b67e-4a8a-95e0-fb77544d2c74" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3569\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2823" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3031" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "194396f6-7911-4822-b561-8b3bdc53985d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "8c9ae05a-b67e-4a8a-95e0-fb77544d2c74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204317Z:8c9ae05a-b67e-4a8a-95e0-fb77544d2c74" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3569\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/as6327\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2823" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3031" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "194396f6-7911-4822-b561-8b3bdc53985d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "8c9ae05a-b67e-4a8a-95e0-fb77544d2c74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204317Z:8c9ae05a-b67e-4a8a-95e0-fb77544d2c74" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2888" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3031" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/70fd2640-dbff-4471-a3a9-92403a12c8dc?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "70fd2640-dbff-4471-a3a9-92403a12c8dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-correlation-request-id": [ + "cca86237-605f-4b9a-8e9c-ef8c98d59c0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204522Z:cca86237-605f-4b9a-8e9c-ef8c98d59c0b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2888" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3031" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/70fd2640-dbff-4471-a3a9-92403a12c8dc?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "70fd2640-dbff-4471-a3a9-92403a12c8dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-correlation-request-id": [ + "cca86237-605f-4b9a-8e9c-ef8c98d59c0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204522Z:cca86237-605f-4b9a-8e9c-ef8c98d59c0b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2888" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3031" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/70fd2640-dbff-4471-a3a9-92403a12c8dc?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "70fd2640-dbff-4471-a3a9-92403a12c8dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-correlation-request-id": [ + "cca86237-605f-4b9a-8e9c-ef8c98d59c0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204522Z:cca86237-605f-4b9a-8e9c-ef8c98d59c0b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2888" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3031" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/70fd2640-dbff-4471-a3a9-92403a12c8dc?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "70fd2640-dbff-4471-a3a9-92403a12c8dc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-correlation-request-id": [ + "cca86237-605f-4b9a-8e9c-ef8c98d59c0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204522Z:cca86237-605f-4b9a-8e9c-ef8c98d59c0b" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "241d6068-4a16-46ce-9616-c7eaa67ac92c" + ], + "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": [ + "0a797fe8-7fc0-46cf-8e57-003e35704756" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204348Z:0a797fe8-7fc0-46cf-8e57-003e35704756" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "241d6068-4a16-46ce-9616-c7eaa67ac92c" + ], + "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": [ + "0a797fe8-7fc0-46cf-8e57-003e35704756" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204348Z:0a797fe8-7fc0-46cf-8e57-003e35704756" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "241d6068-4a16-46ce-9616-c7eaa67ac92c" + ], + "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": [ + "0a797fe8-7fc0-46cf-8e57-003e35704756" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204348Z:0a797fe8-7fc0-46cf-8e57-003e35704756" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "241d6068-4a16-46ce-9616-c7eaa67ac92c" + ], + "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": [ + "0a797fe8-7fc0-46cf-8e57-003e35704756" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204348Z:0a797fe8-7fc0-46cf-8e57-003e35704756" + ], + "Date": [ + "Tue, 14 Jul 2015 20:43:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5913737f-7238-4a4a-a153-91d6fae9116e" + ], + "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": [ + "ac26043e-8a78-49c5-8324-c6e934ea9e14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204419Z:ac26043e-8a78-49c5-8324-c6e934ea9e14" + ], + "Date": [ + "Tue, 14 Jul 2015 20:44:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5913737f-7238-4a4a-a153-91d6fae9116e" + ], + "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": [ + "ac26043e-8a78-49c5-8324-c6e934ea9e14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204419Z:ac26043e-8a78-49c5-8324-c6e934ea9e14" + ], + "Date": [ + "Tue, 14 Jul 2015 20:44:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5913737f-7238-4a4a-a153-91d6fae9116e" + ], + "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": [ + "ac26043e-8a78-49c5-8324-c6e934ea9e14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204419Z:ac26043e-8a78-49c5-8324-c6e934ea9e14" + ], + "Date": [ + "Tue, 14 Jul 2015 20:44:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5913737f-7238-4a4a-a153-91d6fae9116e" + ], + "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": [ + "ac26043e-8a78-49c5-8324-c6e934ea9e14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204419Z:ac26043e-8a78-49c5-8324-c6e934ea9e14" + ], + "Date": [ + "Tue, 14 Jul 2015 20:44:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1c75714f-5263-41ab-928f-7580036e10cb" + ], + "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": [ + "745e2dcf-9824-4a62-b609-f584299f93a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204449Z:745e2dcf-9824-4a62-b609-f584299f93a6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:44:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1c75714f-5263-41ab-928f-7580036e10cb" + ], + "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": [ + "745e2dcf-9824-4a62-b609-f584299f93a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204449Z:745e2dcf-9824-4a62-b609-f584299f93a6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:44:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1c75714f-5263-41ab-928f-7580036e10cb" + ], + "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": [ + "745e2dcf-9824-4a62-b609-f584299f93a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204449Z:745e2dcf-9824-4a62-b609-f584299f93a6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:44:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1c75714f-5263-41ab-928f-7580036e10cb" + ], + "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": [ + "745e2dcf-9824-4a62-b609-f584299f93a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204449Z:745e2dcf-9824-4a62-b609-f584299f93a6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:44:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\",\r\n \"endTime\": \"2015-07-14T13:45:07.7020242-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6036748c-fffa-4e38-9053-24ef98a26285" + ], + "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": [ + "f184f134-767e-4c33-adc0-2cad8b374b93" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204520Z:f184f134-767e-4c33-adc0-2cad8b374b93" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\",\r\n \"endTime\": \"2015-07-14T13:45:07.7020242-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6036748c-fffa-4e38-9053-24ef98a26285" + ], + "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": [ + "f184f134-767e-4c33-adc0-2cad8b374b93" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204520Z:f184f134-767e-4c33-adc0-2cad8b374b93" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\",\r\n \"endTime\": \"2015-07-14T13:45:07.7020242-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6036748c-fffa-4e38-9053-24ef98a26285" + ], + "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": [ + "f184f134-767e-4c33-adc0-2cad8b374b93" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204520Z:f184f134-767e-4c33-adc0-2cad8b374b93" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/194396f6-7911-4822-b561-8b3bdc53985d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE5NDM5NmY2LTc5MTEtNDgyMi1iNTYxLThiM2JkYzUzOTg1ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"194396f6-7911-4822-b561-8b3bdc53985d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:43:14.7012434-07:00\",\r\n \"endTime\": \"2015-07-14T13:45:07.7020242-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6036748c-fffa-4e38-9053-24ef98a26285" + ], + "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": [ + "f184f134-767e-4c33-adc0-2cad8b374b93" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204520Z:f184f134-767e-4c33-adc0-2cad8b374b93" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b687fdae-9daf-4ab0-bd71-f6dc91ab9b71" + ], + "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": [ + "87609570-965c-41ef-b209-498009820d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204521Z:87609570-965c-41ef-b209-498009820d31" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b687fdae-9daf-4ab0-bd71-f6dc91ab9b71" + ], + "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": [ + "87609570-965c-41ef-b209-498009820d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204521Z:87609570-965c-41ef-b209-498009820d31" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b687fdae-9daf-4ab0-bd71-f6dc91ab9b71" + ], + "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": [ + "87609570-965c-41ef-b209-498009820d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204521Z:87609570-965c-41ef-b209-498009820d31" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b687fdae-9daf-4ab0-bd71-f6dc91ab9b71" + ], + "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": [ + "87609570-965c-41ef-b209-498009820d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204521Z:87609570-965c-41ef-b209-498009820d31" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9c5a2bc0-b388-4704-ae9d-13e56d168155" + ], + "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": [ + "a8ea0e7f-4ac4-432a-9458-b382cfce2483" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204521Z:a8ea0e7f-4ac4-432a-9458-b382cfce2483" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9c5a2bc0-b388-4704-ae9d-13e56d168155" + ], + "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": [ + "a8ea0e7f-4ac4-432a-9458-b382cfce2483" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204521Z:a8ea0e7f-4ac4-432a-9458-b382cfce2483" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9c5a2bc0-b388-4704-ae9d-13e56d168155" + ], + "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": [ + "a8ea0e7f-4ac4-432a-9458-b382cfce2483" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204521Z:a8ea0e7f-4ac4-432a-9458-b382cfce2483" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9c5a2bc0-b388-4704-ae9d-13e56d168155" + ], + "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": [ + "a8ea0e7f-4ac4-432a-9458-b382cfce2483" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204521Z:a8ea0e7f-4ac4-432a-9458-b382cfce2483" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "665759ac-73ec-4fe9-a812-dda2fed1df71" + ], + "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": [ + "711a4bf3-0041-4583-86ad-6bc4e8653a68" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204553Z:711a4bf3-0041-4583-86ad-6bc4e8653a68" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "665759ac-73ec-4fe9-a812-dda2fed1df71" + ], + "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": [ + "711a4bf3-0041-4583-86ad-6bc4e8653a68" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204553Z:711a4bf3-0041-4583-86ad-6bc4e8653a68" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "665759ac-73ec-4fe9-a812-dda2fed1df71" + ], + "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": [ + "711a4bf3-0041-4583-86ad-6bc4e8653a68" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204553Z:711a4bf3-0041-4583-86ad-6bc4e8653a68" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3032" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "665759ac-73ec-4fe9-a812-dda2fed1df71" + ], + "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": [ + "711a4bf3-0041-4583-86ad-6bc4e8653a68" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204553Z:711a4bf3-0041-4583-86ad-6bc4e8653a68" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T13:45:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:43:16.0138137-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:45:07.6239159-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "323d6cce-5bb1-4c99-91af-78ec50b46152" + ], + "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": [ + "1c56276c-a5b2-463b-bc18-146a286bff09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204522Z:1c56276c-a5b2-463b-bc18-146a286bff09" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T13:45:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:43:16.0138137-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:45:07.6239159-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "323d6cce-5bb1-4c99-91af-78ec50b46152" + ], + "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": [ + "1c56276c-a5b2-463b-bc18-146a286bff09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204522Z:1c56276c-a5b2-463b-bc18-146a286bff09" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T13:45:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:43:16.0138137-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:45:07.6239159-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "323d6cce-5bb1-4c99-91af-78ec50b46152" + ], + "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": [ + "1c56276c-a5b2-463b-bc18-146a286bff09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204522Z:1c56276c-a5b2-463b-bc18-146a286bff09" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/availabilitySets/AS6327\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504211\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest637.blob.core.windows.net/pslibtest6391/ospslibtest9559.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Network/networkInterfaces/azsmnet8640\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T13:45:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:43:16.0138137-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:45:07.6239159-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487\",\r\n \"name\": \"vm1487\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "323d6cce-5bb1-4c99-91af-78ec50b46152" + ], + "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": [ + "1c56276c-a5b2-463b-bc18-146a286bff09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204522Z:1c56276c-a5b2-463b-bc18-146a286bff09" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/70fd2640-dbff-4471-a3a9-92403a12c8dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzcwZmQyNjQwLWRiZmYtNDQ3MS1hM2E5LTkyNDAzYTEyYzhkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70fd2640-dbff-4471-a3a9-92403a12c8dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:45:22.0302592-07:00\",\r\n \"endTime\": \"2015-07-14T13:45:22.5146376-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0f0fd08-56b1-4eae-8b7c-5b0e8381494b" + ], + "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": [ + "07b730cb-2214-492f-8615-632d2faace24" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204553Z:07b730cb-2214-492f-8615-632d2faace24" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/70fd2640-dbff-4471-a3a9-92403a12c8dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzcwZmQyNjQwLWRiZmYtNDQ3MS1hM2E5LTkyNDAzYTEyYzhkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70fd2640-dbff-4471-a3a9-92403a12c8dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:45:22.0302592-07:00\",\r\n \"endTime\": \"2015-07-14T13:45:22.5146376-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0f0fd08-56b1-4eae-8b7c-5b0e8381494b" + ], + "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": [ + "07b730cb-2214-492f-8615-632d2faace24" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204553Z:07b730cb-2214-492f-8615-632d2faace24" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/70fd2640-dbff-4471-a3a9-92403a12c8dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzcwZmQyNjQwLWRiZmYtNDQ3MS1hM2E5LTkyNDAzYTEyYzhkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70fd2640-dbff-4471-a3a9-92403a12c8dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:45:22.0302592-07:00\",\r\n \"endTime\": \"2015-07-14T13:45:22.5146376-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0f0fd08-56b1-4eae-8b7c-5b0e8381494b" + ], + "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": [ + "07b730cb-2214-492f-8615-632d2faace24" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204553Z:07b730cb-2214-492f-8615-632d2faace24" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/70fd2640-dbff-4471-a3a9-92403a12c8dc?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzcwZmQyNjQwLWRiZmYtNDQ3MS1hM2E5LTkyNDAzYTEyYzhkYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70fd2640-dbff-4471-a3a9-92403a12c8dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:45:22.0302592-07:00\",\r\n \"endTime\": \"2015-07-14T13:45:22.5146376-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0f0fd08-56b1-4eae-8b7c-5b0e8381494b" + ], + "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": [ + "07b730cb-2214-492f-8615-632d2faace24" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204553Z:07b730cb-2214-492f-8615-632d2faace24" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47c7b624-8d25-4b58-ba74-0a9fc24022b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "3e821754-8abc-4b06-9cfe-cbcb79b962b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204557Z:3e821754-8abc-4b06-9cfe-cbcb79b962b0" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47c7b624-8d25-4b58-ba74-0a9fc24022b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "3e821754-8abc-4b06-9cfe-cbcb79b962b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204557Z:3e821754-8abc-4b06-9cfe-cbcb79b962b0" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47c7b624-8d25-4b58-ba74-0a9fc24022b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "3e821754-8abc-4b06-9cfe-cbcb79b962b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204557Z:3e821754-8abc-4b06-9cfe-cbcb79b962b0" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3569/providers/Microsoft.Compute/virtualMachines/vm1487?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0ODc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47c7b624-8d25-4b58-ba74-0a9fc24022b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "3e821754-8abc-4b06-9cfe-cbcb79b962b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204557Z:3e821754-8abc-4b06-9cfe-cbcb79b962b0" + ], + "Date": [ + "Tue, 14 Jul 2015 20:45:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "67975c59-bc1a-44e6-a648-c0b7e8cfdfa7" + ], + "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": [ + "ba51e1ec-6f1d-4991-b0be-6783bfcd930f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204628Z:ba51e1ec-6f1d-4991-b0be-6783bfcd930f" + ], + "Date": [ + "Tue, 14 Jul 2015 20:46:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "67975c59-bc1a-44e6-a648-c0b7e8cfdfa7" + ], + "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": [ + "ba51e1ec-6f1d-4991-b0be-6783bfcd930f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204628Z:ba51e1ec-6f1d-4991-b0be-6783bfcd930f" + ], + "Date": [ + "Tue, 14 Jul 2015 20:46:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "67975c59-bc1a-44e6-a648-c0b7e8cfdfa7" + ], + "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": [ + "ba51e1ec-6f1d-4991-b0be-6783bfcd930f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204628Z:ba51e1ec-6f1d-4991-b0be-6783bfcd930f" + ], + "Date": [ + "Tue, 14 Jul 2015 20:46:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "67975c59-bc1a-44e6-a648-c0b7e8cfdfa7" + ], + "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": [ + "ba51e1ec-6f1d-4991-b0be-6783bfcd930f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204628Z:ba51e1ec-6f1d-4991-b0be-6783bfcd930f" + ], + "Date": [ + "Tue, 14 Jul 2015 20:46:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dfa8b0c7-bcc5-4d8b-9d36-6260187b20ef" + ], + "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": [ + "0c10580f-4b23-41b5-98ec-4561a3552dce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204658Z:0c10580f-4b23-41b5-98ec-4561a3552dce" + ], + "Date": [ + "Tue, 14 Jul 2015 20:46:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dfa8b0c7-bcc5-4d8b-9d36-6260187b20ef" + ], + "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": [ + "0c10580f-4b23-41b5-98ec-4561a3552dce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204658Z:0c10580f-4b23-41b5-98ec-4561a3552dce" + ], + "Date": [ + "Tue, 14 Jul 2015 20:46:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dfa8b0c7-bcc5-4d8b-9d36-6260187b20ef" + ], + "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": [ + "0c10580f-4b23-41b5-98ec-4561a3552dce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204658Z:0c10580f-4b23-41b5-98ec-4561a3552dce" + ], + "Date": [ + "Tue, 14 Jul 2015 20:46:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dfa8b0c7-bcc5-4d8b-9d36-6260187b20ef" + ], + "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": [ + "0c10580f-4b23-41b5-98ec-4561a3552dce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204658Z:0c10580f-4b23-41b5-98ec-4561a3552dce" + ], + "Date": [ + "Tue, 14 Jul 2015 20:46:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dfb6e955-faf6-4567-b534-699f76849d42" + ], + "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": [ + "c6c17573-e002-4c27-92a9-479b6c733f74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204729Z:c6c17573-e002-4c27-92a9-479b6c733f74" + ], + "Date": [ + "Tue, 14 Jul 2015 20:47:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dfb6e955-faf6-4567-b534-699f76849d42" + ], + "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": [ + "c6c17573-e002-4c27-92a9-479b6c733f74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204729Z:c6c17573-e002-4c27-92a9-479b6c733f74" + ], + "Date": [ + "Tue, 14 Jul 2015 20:47:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dfb6e955-faf6-4567-b534-699f76849d42" + ], + "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": [ + "c6c17573-e002-4c27-92a9-479b6c733f74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204729Z:c6c17573-e002-4c27-92a9-479b6c733f74" + ], + "Date": [ + "Tue, 14 Jul 2015 20:47:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dfb6e955-faf6-4567-b534-699f76849d42" + ], + "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": [ + "c6c17573-e002-4c27-92a9-479b6c733f74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204729Z:c6c17573-e002-4c27-92a9-479b6c733f74" + ], + "Date": [ + "Tue, 14 Jul 2015 20:47:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c63b8b9b-3414-422e-be8d-b61719b9d52e" + ], + "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": [ + "eb28f017-2d07-4c8b-a99a-6ba60172c25d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204800Z:eb28f017-2d07-4c8b-a99a-6ba60172c25d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:47:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c63b8b9b-3414-422e-be8d-b61719b9d52e" + ], + "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": [ + "eb28f017-2d07-4c8b-a99a-6ba60172c25d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204800Z:eb28f017-2d07-4c8b-a99a-6ba60172c25d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:47:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c63b8b9b-3414-422e-be8d-b61719b9d52e" + ], + "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": [ + "eb28f017-2d07-4c8b-a99a-6ba60172c25d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204800Z:eb28f017-2d07-4c8b-a99a-6ba60172c25d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:47:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c63b8b9b-3414-422e-be8d-b61719b9d52e" + ], + "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": [ + "eb28f017-2d07-4c8b-a99a-6ba60172c25d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204800Z:eb28f017-2d07-4c8b-a99a-6ba60172c25d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:47:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\",\r\n \"endTime\": \"2015-07-14T13:48:06.3281666-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "65895c48-d3d0-4e51-a7b8-33603a283466" + ], + "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": [ + "443c82a1-d14e-4ad3-b24e-04696457d183" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204830Z:443c82a1-d14e-4ad3-b24e-04696457d183" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\",\r\n \"endTime\": \"2015-07-14T13:48:06.3281666-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "65895c48-d3d0-4e51-a7b8-33603a283466" + ], + "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": [ + "443c82a1-d14e-4ad3-b24e-04696457d183" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204830Z:443c82a1-d14e-4ad3-b24e-04696457d183" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\",\r\n \"endTime\": \"2015-07-14T13:48:06.3281666-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "65895c48-d3d0-4e51-a7b8-33603a283466" + ], + "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": [ + "443c82a1-d14e-4ad3-b24e-04696457d183" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204830Z:443c82a1-d14e-4ad3-b24e-04696457d183" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/47c7b624-8d25-4b58-ba74-0a9fc24022b2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YzdiNjI0LThkMjUtNGI1OC1iYTc0LTBhOWZjMjQwMjJiMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"47c7b624-8d25-4b58-ba74-0a9fc24022b2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:45:54.4991959-07:00\",\r\n \"endTime\": \"2015-07-14T13:48:06.3281666-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "65895c48-d3d0-4e51-a7b8-33603a283466" + ], + "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": [ + "443c82a1-d14e-4ad3-b24e-04696457d183" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204830Z:443c82a1-d14e-4ad3-b24e-04696457d183" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "x-ms-correlation-request-id": [ + "2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204834Z:2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "x-ms-correlation-request-id": [ + "2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204834Z:2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "x-ms-correlation-request-id": [ + "2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204834Z:2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3569?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "x-ms-correlation-request-id": [ + "2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204834Z:2b4313bb-b31e-46cb-babf-3607cad238a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "x-ms-correlation-request-id": [ + "73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204850Z:73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "x-ms-correlation-request-id": [ + "73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204850Z:73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "x-ms-correlation-request-id": [ + "73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204850Z:73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "x-ms-correlation-request-id": [ + "73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204850Z:73b4384d-1c91-47de-897d-49d800a42fa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:48:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "x-ms-correlation-request-id": [ + "f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204906Z:f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "x-ms-correlation-request-id": [ + "f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204906Z:f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "x-ms-correlation-request-id": [ + "f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204906Z:f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "x-ms-correlation-request-id": [ + "f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204906Z:f3b5947b-d8c1-4034-baf4-ece4c3c0d3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "38656541-3ede-49be-acca-31f125e69baf" + ], + "x-ms-correlation-request-id": [ + "38656541-3ede-49be-acca-31f125e69baf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204921Z:38656541-3ede-49be-acca-31f125e69baf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "38656541-3ede-49be-acca-31f125e69baf" + ], + "x-ms-correlation-request-id": [ + "38656541-3ede-49be-acca-31f125e69baf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204921Z:38656541-3ede-49be-acca-31f125e69baf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "38656541-3ede-49be-acca-31f125e69baf" + ], + "x-ms-correlation-request-id": [ + "38656541-3ede-49be-acca-31f125e69baf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204921Z:38656541-3ede-49be-acca-31f125e69baf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "38656541-3ede-49be-acca-31f125e69baf" + ], + "x-ms-correlation-request-id": [ + "38656541-3ede-49be-acca-31f125e69baf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204921Z:38656541-3ede-49be-acca-31f125e69baf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "x-ms-correlation-request-id": [ + "f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204936Z:f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "x-ms-correlation-request-id": [ + "f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204936Z:f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "x-ms-correlation-request-id": [ + "f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204936Z:f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "x-ms-correlation-request-id": [ + "f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204936Z:f522933d-cbad-4593-b242-794cfdbd7cf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "x-ms-correlation-request-id": [ + "1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204952Z:1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "x-ms-correlation-request-id": [ + "1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204952Z:1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "x-ms-correlation-request-id": [ + "1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204952Z:1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "x-ms-correlation-request-id": [ + "1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T204952Z:1da8c540-42e9-4f74-8506-04b6f65aba5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:49:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "x-ms-correlation-request-id": [ + "fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205007Z:fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "x-ms-correlation-request-id": [ + "fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205007Z:fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "x-ms-correlation-request-id": [ + "fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205007Z:fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "x-ms-correlation-request-id": [ + "fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205007Z:fe6bede4-2cbf-4661-b847-09e448d0a121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "x-ms-correlation-request-id": [ + "008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205023Z:008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "x-ms-correlation-request-id": [ + "008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205023Z:008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "x-ms-correlation-request-id": [ + "008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205023Z:008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "x-ms-correlation-request-id": [ + "008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205023Z:008bf9d1-c5a2-4065-8364-3d39c3a6e2d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "x-ms-correlation-request-id": [ + "124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205038Z:124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "x-ms-correlation-request-id": [ + "124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205038Z:124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "x-ms-correlation-request-id": [ + "124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205038Z:124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "x-ms-correlation-request-id": [ + "124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205038Z:124a5809-7075-4a2c-8a3b-5ea06b4571a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "x-ms-correlation-request-id": [ + "9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205054Z:9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "x-ms-correlation-request-id": [ + "9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205054Z:9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "x-ms-correlation-request-id": [ + "9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205054Z:9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "x-ms-correlation-request-id": [ + "9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205054Z:9a96a307-9a07-4f65-9c89-3b5eca08b30d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:50:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "x-ms-correlation-request-id": [ + "a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205109Z:a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "x-ms-correlation-request-id": [ + "a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205109Z:a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "x-ms-correlation-request-id": [ + "a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205109Z:a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "x-ms-correlation-request-id": [ + "a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T205109Z:a16cef63-37e4-47ce-b941-02732101ccc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:51:09 GMT" + ] + }, + "StatusCode": 200 } ], "Names": { "TestVMWithLinuxOSProfile": [ - "pslibtest3993" + "pslibtest3569" ], "TestVMWithOSProfile": [ - "pslibtest6370", - "as7396" + "pslibtest637", + "as6327" ], "CreatePublicIP": [ - "azsmnet1697", - "azsmnet6013" + "azsmnet1706", + "azsmnet7628" ], "CreateVNET": [ - "azsmnet558", - "azsmnet1520" + "azsmnet3730", + "azsmnet6457" ], "CreateNIC": [ - "azsmnet3180", - "azsmnet1146" + "azsmnet8640", + "azsmnet4869" ], "CreateDefaultVMInput": [ - "pslibtest849", - "pslibtest7023", - "pslibtest9886", - "vm6896" + "pslibtest6391", + "pslibtest9877", + "pslibtest9559", + "vm1487", + "Microsoft.Compute/virtualMachines2102" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json index 42e9e26dcf9a1..904aa33a30fa4 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45e0f661-b7a3-4d35-9aa3-9660cecef950" + "21eca1d0-e183-424b-8c1d-daceafece2ce" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "ba9cfb1b-1538-4be4-a67f-0e9ae0c2d036" + "bae57eb0-0f38-472e-9053-e1e9dce743fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032510Z:ba9cfb1b-1538-4be4-a67f-0e9ae0c2d036" + "WESTUS:20150715T004146Z:bae57eb0-0f38-472e-9053-e1e9dce743fd" ], "Date": [ - "Wed, 17 Jun 2015 03:25:10 GMT" + "Wed, 15 Jul 2015 00:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest1269?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDEyNjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269\",\r\n \"name\": \"pslibtest1269\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,50 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2c3181a-2b89-4a9f-ac09-888a41368549" + "21eca1d0-e183-424b-8c1d-daceafece2ce" ], - "x-ms-correlation-request-id": [ - "b2c3181a-2b89-4a9f-ac09-888a41368549" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T032513Z:b2c3181a-2b89-4a9f-ac09-888a41368549" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "bae57eb0-0f38-472e-9053-e1e9dce743fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004146Z:bae57eb0-0f38-472e-9053-e1e9dce743fd" ], "Date": [ - "Wed, 17 Jun 2015 03:25:13 GMT" + "Wed, 15 Jul 2015 00:41:46 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest1269?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDEyNjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269\",\r\n \"name\": \"pslibtest1269\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,53 +128,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c81f39d0-b56f-4d8e-becd-ae7db16b1092" + "21eca1d0-e183-424b-8c1d-daceafece2ce" ], - "x-ms-correlation-request-id": [ - "c81f39d0-b56f-4d8e-becd-ae7db16b1092" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T032557Z:c81f39d0-b56f-4d8e-becd-ae7db16b1092" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "bae57eb0-0f38-472e-9053-e1e9dce743fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004146Z:bae57eb0-0f38-472e-9053-e1e9dce743fd" ], "Date": [ - "Wed, 17 Jun 2015 03:25:57 GMT" + "Wed, 15 Jul 2015 00:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Storage/storageAccounts/pslibtest3596?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzNTk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "30d3a890-7d29-4717-a71b-a0450dd7bb12" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b256bde-32d0-49b6-87ff-4b35f10a36bf" + "21eca1d0-e183-424b-8c1d-daceafece2ce" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/7b256bde-32d0-49b6-87ff-4b35f10a36bf?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "f0f9f910-8ceb-402d-ae6f-8c1506955ae6" + "bae57eb0-0f38-472e-9053-e1e9dce743fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032520Z:f0f9f910-8ceb-402d-ae6f-8c1506955ae6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150715T004146Z:bae57eb0-0f38-472e-9053-e1e9dce743fd" ], "Date": [ - "Wed, 17 Jun 2015 03:25:19 GMT" + "Wed, 15 Jul 2015 00:41:46 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/7b256bde-32d0-49b6-87ff-4b35f10a36bf?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdiMjU2YmRlLTMyZDAtNDliNi04N2ZmLTRiMzVmMTBhMzZiZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "c39e647e-28f0-4176-9693-3b7afd94a14d" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305\",\r\n \"name\": \"pslibtest8305\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +238,50 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "abf674e7-70cb-4dbb-8820-e0b29e85235e" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/7b256bde-32d0-49b6-87ff-4b35f10a36bf?monitor=true&api-version=2015-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "x-ms-correlation-request-id": [ - "2ab5fda8-b527-4fae-9aba-cac42018545a" + "b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032520Z:2ab5fda8-b527-4fae-9aba-cac42018545a" + "WESTUS:20150715T004149Z:b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 17 Jun 2015 03:25:20 GMT" + "Wed, 15 Jul 2015 00:41:48 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/7b256bde-32d0-49b6-87ff-4b35f10a36bf?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdiMjU2YmRlLTMyZDAtNDliNi04N2ZmLTRiMzVmMTBhMzZiZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "566864b4-cece-4656-9c45-cfeb509511c6" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305\",\r\n \"name\": \"pslibtest8305\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "464ce910-0fea-442f-8a01-1eed0c421b65" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "x-ms-request-id": [ + "b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "x-ms-correlation-request-id": [ - "9bdf8a3d-7161-4408-bdb0-f6488d637072" + "b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032545Z:9bdf8a3d-7161-4408-bdb0-f6488d637072" + "WESTUS:20150715T004149Z:b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 17 Jun 2015 03:25:45 GMT" + "Wed, 15 Jul 2015 00:41:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "874be407-76cb-45e7-babe-629b051ef1be" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Storage/storageAccounts/pslibtest3596\",\r\n \"name\": \"pslibtest3596\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest3596.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest3596.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest3596.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-17T03:25:16.5425093Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305\",\r\n \"name\": \"pslibtest8305\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +346,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "70f9fdd3-f3bd-49f6-aa72-5b3773150cca" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "x-ms-request-id": [ + "b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "x-ms-correlation-request-id": [ - "7df56240-62be-4e31-81bd-541513f5e961" + "b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032556Z:7df56240-62be-4e31-81bd-541513f5e961" + "WESTUS:20150715T004149Z:b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 17 Jun 2015 03:25:55 GMT" + "Wed, 15 Jul 2015 00:41:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/publicIPAddresses/azsmnet5956/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ1OTU2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4348\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5956\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/publicIPAddresses/azsmnet5956\",\r\n \"etag\": \"W/\\\"db97f6dd-20d9-401e-8a90-9121e65faca0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4348\",\r\n \"fqdn\": \"azsmnet4348.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305\",\r\n \"name\": \"pslibtest8305\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "579" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +400,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "381e7653-7a1a-4d26-a75e-82f7a826bc56" + "b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/381e7653-7a1a-4d26-a75e-82f7a826bc56?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "b0031afc-dbb0-43cb-81b3-3ca8403bfc41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004149Z:b0031afc-dbb0-43cb-81b3-3ca8403bfc41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +418,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "c94cd720-0c57-4be3-9647-f21000fdf1ee" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T032603Z:c94cd720-0c57-4be3-9647-f21000fdf1ee" - ], "Date": [ - "Wed, 17 Jun 2015 03:26:03 GMT" + "Wed, 15 Jul 2015 00:41:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/381e7653-7a1a-4d26-a75e-82f7a826bc56?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4MWU3NjUzLTdhMWEtNGQyNi1hNzVlLTgyZjdhODI2YmM1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305\",\r\n \"name\": \"pslibtest8305\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +454,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "4c621e70-a29a-4358-86bd-8722efb2352c" + "cbe0fb26-3821-43df-90cb-10a78b8e047d" + ], + "x-ms-correlation-request-id": [ + "cbe0fb26-3821-43df-90cb-10a78b8e047d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004232Z:cbe0fb26-3821-43df-90cb-10a78b8e047d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +472,32 @@ "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": [ - "4c480cdd-4bd5-4ea5-b943-76cbd77d150c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T032604Z:4c480cdd-4bd5-4ea5-b943-76cbd77d150c" - ], "Date": [ - "Wed, 17 Jun 2015 03:26:04 GMT" + "Wed, 15 Jul 2015 00:42:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/publicIPAddresses/azsmnet5956/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ1OTU2Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5956\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/publicIPAddresses/azsmnet5956\",\r\n \"etag\": \"W/\\\"a15d46e2-9225-4a04-8ec3-841e608dca86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4348\",\r\n \"fqdn\": \"azsmnet4348.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305\",\r\n \"name\": \"pslibtest8305\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,8 +508,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "41f4b6a4-6912-4ed8-9483-71f7b89b3efd" + "cbe0fb26-3821-43df-90cb-10a78b8e047d" + ], + "x-ms-correlation-request-id": [ + "cbe0fb26-3821-43df-90cb-10a78b8e047d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004232Z:cbe0fb26-3821-43df-90cb-10a78b8e047d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,48 +526,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"a15d46e2-9225-4a04-8ec3-841e608dca86\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "1c6a07b7-38f4-4de3-832a-ba4b74451d84" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T032604Z:1c6a07b7-38f4-4de3-832a-ba4b74451d84" - ], "Date": [ - "Wed, 17 Jun 2015 03:26:04 GMT" + "Wed, 15 Jul 2015 00:42:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/virtualnetworks/azsmnet2597?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MjU5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet498\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "421" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2597\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/virtualNetworks/azsmnet2597\",\r\n \"etag\": \"W/\\\"72b797d2-9f66-42b9-b1d2-a63164c7c8ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet498\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/virtualNetworks/azsmnet2597/subnets/azsmnet498\",\r\n \"etag\": \"W/\\\"72b797d2-9f66-42b9-b1d2-a63164c7c8ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305\",\r\n \"name\": \"pslibtest8305\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "957" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,14 +562,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "b560c891-ca44-4462-901d-f6c6485b4e01" + "cbe0fb26-3821-43df-90cb-10a78b8e047d" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/b560c891-ca44-4462-901d-f6c6485b4e01?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "cbe0fb26-3821-43df-90cb-10a78b8e047d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004232Z:cbe0fb26-3821-43df-90cb-10a78b8e047d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,42 +580,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "d76c2ae7-e64a-4f0e-95af-673dddc4761b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T032608Z:d76c2ae7-e64a-4f0e-95af-673dddc4761b" - ], "Date": [ - "Wed, 17 Jun 2015 03:26:08 GMT" + "Wed, 15 Jul 2015 00:42:31 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/b560c891-ca44-4462-901d-f6c6485b4e01?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I1NjBjODkxLWNhNDQtNDQ2Mi05MDFkLWY2YzY0ODViNGUwMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305\",\r\n \"name\": \"pslibtest8305\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "d0179d71-953b-4a7c-94a7-53342d369b95" + "cbe0fb26-3821-43df-90cb-10a78b8e047d" + ], + "x-ms-correlation-request-id": [ + "cbe0fb26-3821-43df-90cb-10a78b8e047d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004232Z:cbe0fb26-3821-43df-90cb-10a78b8e047d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,39 +634,32 @@ "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": [ - "5ff8729e-6ab8-4dcb-ad65-7ed87523f686" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T032609Z:5ff8729e-6ab8-4dcb-ad65-7ed87523f686" - ], "Date": [ - "Wed, 17 Jun 2015 03:26:09 GMT" + "Wed, 15 Jul 2015 00:42:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/virtualnetworks/azsmnet2597/subnets/azsmnet498?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MjU5Ny9zdWJuZXRzL2F6c21uZXQ0OTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet498\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/virtualNetworks/azsmnet2597/subnets/azsmnet498\",\r\n \"etag\": \"W/\\\"f27bacbe-1f84-4ed5-abd8-2794f884d89d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "353" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,57 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "41726d08-d538-4c50-ac06-0362c73e2bfe" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "f0b8447e-fdea-4453-be54-a3c9e4550e12" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"f27bacbe-1f84-4ed5-abd8-2794f884d89d\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/f0b8447e-fdea-4453-be54-a3c9e4550e12?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "80aaeee7-d141-4669-94b8-acfddfe83217" + "513b2ee8-45b0-4af5-bf62-3648d2c40073" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032610Z:80aaeee7-d141-4669-94b8-acfddfe83217" + "WESTUS:20150715T004155Z:513b2ee8-45b0-4af5-bf62-3648d2c40073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:09 GMT" + "Wed, 15 Jul 2015 00:41:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxNDYyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/virtualNetworks/azsmnet2597/subnets/azsmnet498\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/publicIPAddresses/azsmnet5956\"\r\n }\r\n },\r\n \"name\": \"azsmnet7561\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet1462\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "715" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1462\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462\",\r\n \"etag\": \"W/\\\"59d81773-30cd-4f55-b005-be0caa229f7c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7561\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462/ipConfigurations/azsmnet7561\",\r\n \"etag\": \"W/\\\"59d81773-30cd-4f55-b005-be0caa229f7c\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/publicIPAddresses/azsmnet5956\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/virtualNetworks/azsmnet2597/subnets/azsmnet498\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1323" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -776,54 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "dce56836-9434-4eb6-af12-f223223a22ae" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/dce56836-9434-4eb6-af12-f223223a22ae?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "f0b8447e-fdea-4453-be54-a3c9e4550e12" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/f0b8447e-fdea-4453-be54-a3c9e4550e12?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "acab546e-bd7c-4dbb-be92-96b211d521be" + "513b2ee8-45b0-4af5-bf62-3648d2c40073" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032616Z:acab546e-bd7c-4dbb-be92-96b211d521be" + "WESTUS:20150715T004155Z:513b2ee8-45b0-4af5-bf62-3648d2c40073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:16 GMT" + "Wed, 15 Jul 2015 00:41:54 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/dce56836-9434-4eb6-af12-f223223a22ae?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RjZTU2ODM2LTk0MzQtNGViNi1hZjEyLWYyMjMyMjNhMjJhZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,48 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "d546814c-5077-4eff-97e9-fed148031e10" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "f0b8447e-fdea-4453-be54-a3c9e4550e12" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/f0b8447e-fdea-4453-be54-a3c9e4550e12?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "912d878e-1340-4ea4-a3c3-27d2e016fde2" + "513b2ee8-45b0-4af5-bf62-3648d2c40073" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032616Z:912d878e-1340-4ea4-a3c3-27d2e016fde2" + "WESTUS:20150715T004155Z:513b2ee8-45b0-4af5-bf62-3648d2c40073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:16 GMT" + "Wed, 15 Jul 2015 00:41:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxNDYyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1462\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462\",\r\n \"etag\": \"W/\\\"59d81773-30cd-4f55-b005-be0caa229f7c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7561\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462/ipConfigurations/azsmnet7561\",\r\n \"etag\": \"W/\\\"59d81773-30cd-4f55-b005-be0caa229f7c\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/publicIPAddresses/azsmnet5956\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/virtualNetworks/azsmnet2597/subnets/azsmnet498\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1323" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,57 +862,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "6699797e-e8bf-4360-b7d8-b88061e1f64f" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "f0b8447e-fdea-4453-be54-a3c9e4550e12" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"59d81773-30cd-4f55-b005-be0caa229f7c\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/f0b8447e-fdea-4453-be54-a3c9e4550e12?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "1851409a-9416-4b52-9f85-7cb75ec3a2e2" + "513b2ee8-45b0-4af5-bf62-3648d2c40073" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032617Z:1851409a-9416-4b52-9f85-7cb75ec3a2e2" + "WESTUS:20150715T004155Z:513b2ee8-45b0-4af5-bf62-3648d2c40073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:17 GMT" + "Wed, 15 Jul 2015 00:41:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/availabilitySets/as8718?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM4NzE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as8718\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/f0b8447e-fdea-4453-be54-a3c9e4550e12?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YwYjg0NDdlLWZkZWEtNDQ1My1iZTU0LWEzYzllNDU1MGUxMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "133" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/availabilitySets/as8718\",\r\n \"name\": \"as8718\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "403" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -947,11 +920,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "01eadf51-6afe-4574-ad38-a032c3d11925" + "f748863a-a45c-45d5-b98f-8a96190106dd" ], "Cache-Control": [ "no-cache" @@ -960,41 +930,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "65419eec-2e49-4f05-98be-213591e0892a" + "97cf22e4-f8ac-4228-bde2-c3055a5279e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032622Z:65419eec-2e49-4f05-98be-213591e0892a" + "WESTUS:20150715T004221Z:97cf22e4-f8ac-4228-bde2-c3055a5279e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:22 GMT" + "Wed, 15 Jul 2015 00:42:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4MDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3596.blob.core.windows.net/pslibtest9685/ospslibtest6868.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1269\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"true5Foo12BaR@123pslibtest1269true</PlainText></Password></AutoLogon>\"\r\n }\r\n ],\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/availabilitySets/as8718\"\r\n }\r\n },\r\n \"name\": \"vm6800\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/f0b8447e-fdea-4453-be54-a3c9e4550e12?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YwYjg0NDdlLWZkZWEtNDQ1My1iZTU0LWEzYzllNDU1MGUxMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "2787" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/availabilitySets/AS8718\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3596.blob.core.windows.net/pslibtest9685/ospslibtest6868.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest1269</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800\",\r\n \"name\": \"vm6800\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2906" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,14 +972,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/80f1c3ff-96ec-477a-93fc-939244c819b1?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "80f1c3ff-96ec-477a-93fc-939244c819b1" + "f748863a-a45c-45d5-b98f-8a96190106dd" ], "Cache-Control": [ "no-cache" @@ -1021,41 +982,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "1f45296c-96c8-4de1-b57c-54f9e248c087" + "97cf22e4-f8ac-4228-bde2-c3055a5279e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032627Z:1f45296c-96c8-4de1-b57c-54f9e248c087" + "WESTUS:20150715T004221Z:97cf22e4-f8ac-4228-bde2-c3055a5279e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:26 GMT" + "Wed, 15 Jul 2015 00:42:20 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4MDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3596.blob.core.windows.net/pslibtest9685/ospslibtest6868.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest1269</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ],\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/availabilitySets/AS8718\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800\",\r\n \"name\": \"vm6800\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/f0b8447e-fdea-4453-be54-a3c9e4550e12?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YwYjg0NDdlLWZkZWEtNDQ1My1iZTU0LWEzYzllNDU1MGUxMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "2975" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/availabilitySets/AS8718\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3596.blob.core.windows.net/pslibtest9685/ospslibtest6868.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest1269</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800\",\r\n \"name\": \"vm6800\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2906" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1066,14 +1024,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "e9e91504-4074-48db-a7f7-a904fd179aba" + "f748863a-a45c-45d5-b98f-8a96190106dd" ], "Cache-Control": [ "no-cache" @@ -1082,35 +1034,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "a4605a95-b41b-4ed1-895e-0de399dc8717" + "97cf22e4-f8ac-4228-bde2-c3055a5279e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032629Z:a4605a95-b41b-4ed1-895e-0de399dc8717" + "WESTUS:20150715T004221Z:97cf22e4-f8ac-4228-bde2-c3055a5279e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:28 GMT" + "Wed, 15 Jul 2015 00:42:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/80f1c3ff-96ec-477a-93fc-939244c819b1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgwZjFjM2ZmLTk2ZWMtNDc3YS05M2ZjLTkzOTI0NGM4MTliMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/f0b8447e-fdea-4453-be54-a3c9e4550e12?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YwYjg0NDdlLWZkZWEtNDQ1My1iZTU0LWEzYzllNDU1MGUxMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"80f1c3ff-96ec-477a-93fc-939244c819b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:25.0811154-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1121,11 +1076,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "0fdc1f2b-ac27-45fe-98b4-ac8d8a6f68b7" + "f748863a-a45c-45d5-b98f-8a96190106dd" ], "Cache-Control": [ "no-cache" @@ -1135,34 +1087,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "c8f9c823-4e18-4289-934d-ea4182802d03" + "97cf22e4-f8ac-4228-bde2-c3055a5279e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032627Z:c8f9c823-4e18-4289-934d-ea4182802d03" + "WESTUS:20150715T004221Z:97cf22e4-f8ac-4228-bde2-c3055a5279e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:27 GMT" + "Wed, 15 Jul 2015 00:42:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4MDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/availabilitySets/AS8718\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3596.blob.core.windows.net/pslibtest9685/ospslibtest6868.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest1269</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800\",\r\n \"name\": \"vm6800\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337\",\r\n \"name\": \"pslibtest337\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest337.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest337.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest337.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:41:51.2941133Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2906" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,11 +1128,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "8edd3aa4-db18-4238-b5bb-8470e3b5936e" + "248411fe-fcb8-4fdc-942e-3e11d0bb782f" ], "Cache-Control": [ "no-cache" @@ -1187,34 +1139,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14996" ], "x-ms-correlation-request-id": [ - "f02abc4e-acc2-4da0-a90e-a5a8adde0f0d" + "7f1e174b-4d04-4a35-b5c1-492389fa5ebf" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032628Z:f02abc4e-acc2-4da0-a90e-a5a8adde0f0d" + "WESTUS:20150715T004231Z:7f1e174b-4d04-4a35-b5c1-492389fa5ebf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:27 GMT" + "Wed, 15 Jul 2015 00:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4MDA/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/availabilitySets/AS8718\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3596.blob.core.windows.net/pslibtest9685/ospslibtest6868.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest1269</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Network/networkInterfaces/azsmnet1462\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-06-16T20:26:28-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T20:26:28.1123635-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800\",\r\n \"name\": \"vm6800\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337\",\r\n \"name\": \"pslibtest337\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest337.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest337.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest337.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:41:51.2941133Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3834" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1225,11 +1180,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "cf1cc433-2dd2-43fa-8bdb-53b9a8175414" + "248411fe-fcb8-4fdc-942e-3e11d0bb782f" ], "Cache-Control": [ "no-cache" @@ -1239,34 +1191,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14996" ], "x-ms-correlation-request-id": [ - "f2774ab2-c02a-4b6e-9b64-176b7cd8e7b2" + "7f1e174b-4d04-4a35-b5c1-492389fa5ebf" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032628Z:f2774ab2-c02a-4b6e-9b64-176b7cd8e7b2" + "WESTUS:20150715T004231Z:7f1e174b-4d04-4a35-b5c1-492389fa5ebf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:28 GMT" + "Wed, 15 Jul 2015 00:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337\",\r\n \"name\": \"pslibtest337\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest337.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest337.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest337.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:41:51.2941133Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1277,11 +1232,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "e6471139-cfe8-4447-89fe-d2daf0ee5058" + "248411fe-fcb8-4fdc-942e-3e11d0bb782f" ], "Cache-Control": [ "no-cache" @@ -1291,34 +1243,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "2b9a880f-a71c-4139-8be1-77476d8fd216" + "7f1e174b-4d04-4a35-b5c1-492389fa5ebf" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032630Z:2b9a880f-a71c-4139-8be1-77476d8fd216" + "WESTUS:20150715T004231Z:7f1e174b-4d04-4a35-b5c1-492389fa5ebf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:26:29 GMT" + "Wed, 15 Jul 2015 00:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337\",\r\n \"name\": \"pslibtest337\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest337.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest337.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest337.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:41:51.2941133Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,11 +1284,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "d1013f9e-3242-4312-b2f1-d54cef03ac86" + "248411fe-fcb8-4fdc-942e-3e11d0bb782f" ], "Cache-Control": [ "no-cache" @@ -1343,34 +1295,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14996" ], "x-ms-correlation-request-id": [ - "6eb929ea-3895-45cd-a2b2-5e8c19040996" + "7f1e174b-4d04-4a35-b5c1-492389fa5ebf" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032700Z:6eb929ea-3895-45cd-a2b2-5e8c19040996" + "WESTUS:20150715T004231Z:7f1e174b-4d04-4a35-b5c1-492389fa5ebf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:27:00 GMT" + "Wed, 15 Jul 2015 00:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337\",\r\n \"name\": \"pslibtest337\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest337.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest337.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest337.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:41:51.2941133Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1381,11 +1336,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "83a28625-1409-48e1-90e1-63b1ab4e2728" + "7191fa76-a695-4029-a934-e117104d7493" ], "Cache-Control": [ "no-cache" @@ -1395,34 +1347,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14995" ], "x-ms-correlation-request-id": [ - "db5164b0-64d4-4e9c-8175-26cdad188124" + "79e48f54-5117-4c19-ab1c-27bd60a960b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032731Z:db5164b0-64d4-4e9c-8175-26cdad188124" + "WESTUS:20150715T004231Z:79e48f54-5117-4c19-ab1c-27bd60a960b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:27:31 GMT" + "Wed, 15 Jul 2015 00:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337\",\r\n \"name\": \"pslibtest337\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest337.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest337.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest337.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:41:51.2941133Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1433,11 +1388,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "247da515-4e26-4065-adfc-69addbc07225" + "7191fa76-a695-4029-a934-e117104d7493" ], "Cache-Control": [ "no-cache" @@ -1447,34 +1399,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "2c54d6b9-ef6d-42f7-b73d-7f4ab6aeadc4" + "79e48f54-5117-4c19-ab1c-27bd60a960b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032803Z:2c54d6b9-ef6d-42f7-b73d-7f4ab6aeadc4" + "WESTUS:20150715T004231Z:79e48f54-5117-4c19-ab1c-27bd60a960b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:28:03 GMT" + "Wed, 15 Jul 2015 00:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337\",\r\n \"name\": \"pslibtest337\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest337.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest337.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest337.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:41:51.2941133Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1485,11 +1440,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "57daf014-1ab1-4953-a2aa-5321938d8851" + "7191fa76-a695-4029-a934-e117104d7493" ], "Cache-Control": [ "no-cache" @@ -1499,34 +1451,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14995" ], "x-ms-correlation-request-id": [ - "99fa1b57-6e18-4445-ad77-0deebb73e07d" + "79e48f54-5117-4c19-ab1c-27bd60a960b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032834Z:99fa1b57-6e18-4445-ad77-0deebb73e07d" + "WESTUS:20150715T004231Z:79e48f54-5117-4c19-ab1c-27bd60a960b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:28:33 GMT" + "Wed, 15 Jul 2015 00:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Storage/storageAccounts/pslibtest337\",\r\n \"name\": \"pslibtest337\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest337.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest337.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest337.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T00:41:51.2941133Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1537,11 +1492,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "67a8f781-574f-4686-8d9e-49cc379942f7" + "7191fa76-a695-4029-a934-e117104d7493" ], "Cache-Control": [ "no-cache" @@ -1551,34 +1503,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14995" ], "x-ms-correlation-request-id": [ - "65b41d06-1e19-49b4-8f12-02e6f5e26366" + "79e48f54-5117-4c19-ab1c-27bd60a960b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032904Z:65b41d06-1e19-49b4-8f12-02e6f5e26366" + "WESTUS:20150715T004231Z:79e48f54-5117-4c19-ab1c-27bd60a960b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 03:29:04 GMT" + "Wed, 15 Jul 2015 00:42:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"b7618196-85fd-47d7-b474-a21b7935f6d5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1589,11 +1550,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "02656d11-f0ea-4466-a7ae-d2ddc4c9db1e" + "2934979a-45ca-428d-bbd4-08d8a3550648" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/2934979a-45ca-428d-bbd4-08d8a3550648?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1602,35 +1569,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "127daf54-503a-4e6f-ae79-e896f1bd5c8c" + "05dc2919-f9a5-4798-a85c-6b1c16b550ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T032935Z:127daf54-503a-4e6f-ae79-e896f1bd5c8c" + "WESTUS:20150715T004238Z:05dc2919-f9a5-4798-a85c-6b1c16b550ad" ], "Date": [ - "Wed, 17 Jun 2015 03:29:34 GMT" + "Wed, 15 Jul 2015 00:42:37 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"b7618196-85fd-47d7-b474-a21b7935f6d5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1641,11 +1614,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "ced9b5d3-1cfb-4bf7-bce7-1288e48eef58" + "2934979a-45ca-428d-bbd4-08d8a3550648" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/2934979a-45ca-428d-bbd4-08d8a3550648?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1654,35 +1633,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "392ffd12-1e31-47b0-8f38-d28ecac1bb42" + "05dc2919-f9a5-4798-a85c-6b1c16b550ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033006Z:392ffd12-1e31-47b0-8f38-d28ecac1bb42" + "WESTUS:20150715T004238Z:05dc2919-f9a5-4798-a85c-6b1c16b550ad" ], "Date": [ - "Wed, 17 Jun 2015 03:30:06 GMT" + "Wed, 15 Jul 2015 00:42:37 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"b7618196-85fd-47d7-b474-a21b7935f6d5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1693,11 +1678,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "a464048e-d0b4-46c2-b034-a3c27f52fbc3" + "2934979a-45ca-428d-bbd4-08d8a3550648" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/2934979a-45ca-428d-bbd4-08d8a3550648?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1706,35 +1697,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "2ec1c361-da51-4749-972d-504687af7072" + "05dc2919-f9a5-4798-a85c-6b1c16b550ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033037Z:2ec1c361-da51-4749-972d-504687af7072" + "WESTUS:20150715T004238Z:05dc2919-f9a5-4798-a85c-6b1c16b550ad" ], "Date": [ - "Wed, 17 Jun 2015 03:30:36 GMT" + "Wed, 15 Jul 2015 00:42:37 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"b7618196-85fd-47d7-b474-a21b7935f6d5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1745,11 +1742,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "af23cf91-8f5d-48e3-a065-e43ffb900afb" + "2934979a-45ca-428d-bbd4-08d8a3550648" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/2934979a-45ca-428d-bbd4-08d8a3550648?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1758,35 +1761,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "cc72212d-248e-4b94-81bf-2a29ca5e9aa7" + "05dc2919-f9a5-4798-a85c-6b1c16b550ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033107Z:cc72212d-248e-4b94-81bf-2a29ca5e9aa7" + "WESTUS:20150715T004238Z:05dc2919-f9a5-4798-a85c-6b1c16b550ad" ], "Date": [ - "Wed, 17 Jun 2015 03:31:07 GMT" + "Wed, 15 Jul 2015 00:42:37 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/2934979a-45ca-428d-bbd4-08d8a3550648?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI5MzQ5NzlhLTQ1Y2EtNDI4ZC1iYmQ0LTA4ZDhhMzU1MDY0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1797,12 +1800,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "5479051a-bba9-43af-bace-449b177fee7d" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "2351dbe8-6590-496f-9907-d38d40cf31bf" - ], "Cache-Control": [ "no-cache" ], @@ -1811,34 +1814,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14994" ], "x-ms-correlation-request-id": [ - "796917b3-bc5e-47ac-8101-43a51d849764" + "7e62a69d-1d28-4193-86e0-cc61783c9b05" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033138Z:796917b3-bc5e-47ac-8101-43a51d849764" + "WESTUS:20150715T004249Z:7e62a69d-1d28-4193-86e0-cc61783c9b05" ], "Date": [ - "Wed, 17 Jun 2015 03:31:37 GMT" + "Wed, 15 Jul 2015 00:42:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/2934979a-45ca-428d-bbd4-08d8a3550648?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI5MzQ5NzlhLTQ1Y2EtNDI4ZC1iYmQ0LTA4ZDhhMzU1MDY0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1849,12 +1852,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "5479051a-bba9-43af-bace-449b177fee7d" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "3cc6b21e-e538-4af5-8e4d-0980e50e04da" - ], "Cache-Control": [ "no-cache" ], @@ -1863,34 +1866,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14994" ], "x-ms-correlation-request-id": [ - "1d858279-640e-4f6d-8451-8a5f9004b760" + "7e62a69d-1d28-4193-86e0-cc61783c9b05" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033209Z:1d858279-640e-4f6d-8451-8a5f9004b760" + "WESTUS:20150715T004249Z:7e62a69d-1d28-4193-86e0-cc61783c9b05" ], "Date": [ - "Wed, 17 Jun 2015 03:32:09 GMT" + "Wed, 15 Jul 2015 00:42:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/2934979a-45ca-428d-bbd4-08d8a3550648?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI5MzQ5NzlhLTQ1Y2EtNDI4ZC1iYmQ0LTA4ZDhhMzU1MDY0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1901,12 +1904,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "5479051a-bba9-43af-bace-449b177fee7d" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "6d728198-5ff6-4421-822e-988a3082b950" - ], "Cache-Control": [ "no-cache" ], @@ -1915,34 +1918,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14994" ], "x-ms-correlation-request-id": [ - "f3a84bf6-2f41-4fe7-8f86-f15b58832a96" + "7e62a69d-1d28-4193-86e0-cc61783c9b05" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033240Z:f3a84bf6-2f41-4fe7-8f86-f15b58832a96" + "WESTUS:20150715T004249Z:7e62a69d-1d28-4193-86e0-cc61783c9b05" ], "Date": [ - "Wed, 17 Jun 2015 03:32:40 GMT" + "Wed, 15 Jul 2015 00:42:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/2934979a-45ca-428d-bbd4-08d8a3550648?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI5MzQ5NzlhLTQ1Y2EtNDI4ZC1iYmQ0LTA4ZDhhMzU1MDY0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1953,12 +1956,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "5479051a-bba9-43af-bace-449b177fee7d" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "15bbd5e9-804d-492e-a01e-6d8d1e382b03" - ], "Cache-Control": [ "no-cache" ], @@ -1967,34 +1970,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14994" ], "x-ms-correlation-request-id": [ - "0585bae2-2848-4d7e-a6a9-661c0fa6aa33" + "7e62a69d-1d28-4193-86e0-cc61783c9b05" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033311Z:0585bae2-2848-4d7e-a6a9-661c0fa6aa33" + "WESTUS:20150715T004249Z:7e62a69d-1d28-4193-86e0-cc61783c9b05" ], "Date": [ - "Wed, 17 Jun 2015 03:33:10 GMT" + "Wed, 15 Jul 2015 00:42:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"d1bace7d-71c2-4743-abab-c085260bd1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2005,48 +2008,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "faf53500-1382-41c7-8f70-37912f201a76" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "b6ac5316-e35b-4957-80a3-33009c3aa567" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"d1bace7d-71c2-4743-abab-c085260bd1a3\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14993" ], "x-ms-correlation-request-id": [ - "ab8df603-6502-496c-8dba-4744d5b4f1b8" + "32a3542d-0bc5-4c39-bb33-73fc0ffe716e" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033342Z:ab8df603-6502-496c-8dba-4744d5b4f1b8" + "WESTUS:20150715T004249Z:32a3542d-0bc5-4c39-bb33-73fc0ffe716e" ], "Date": [ - "Wed, 17 Jun 2015 03:33:41 GMT" + "Wed, 15 Jul 2015 00:42:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/e9e91504-4074-48db-a7f7-a904fd179aba?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5ZTkxNTA0LTQwNzQtNDhkYi1hN2Y3LWE5MDRmZDE3OWFiYT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e9e91504-4074-48db-a7f7-a904fd179aba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T20:26:29.0967462-07:00\",\r\n \"endTime\": \"2015-06-16T20:33:48.1152006-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"d1bace7d-71c2-4743-abab-c085260bd1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2057,42 +2063,3694 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "faf53500-1382-41c7-8f70-37912f201a76" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "16ba36dc-d8ae-420a-8fc9-37dac35317ce" + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d1bace7d-71c2-4743-abab-c085260bd1a3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "32a3542d-0bc5-4c39-bb33-73fc0ffe716e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004249Z:32a3542d-0bc5-4c39-bb33-73fc0ffe716e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"d1bace7d-71c2-4743-abab-c085260bd1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "faf53500-1382-41c7-8f70-37912f201a76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d1bace7d-71c2-4743-abab-c085260bd1a3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "32a3542d-0bc5-4c39-bb33-73fc0ffe716e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004249Z:32a3542d-0bc5-4c39-bb33-73fc0ffe716e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"d1bace7d-71c2-4743-abab-c085260bd1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "faf53500-1382-41c7-8f70-37912f201a76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d1bace7d-71c2-4743-abab-c085260bd1a3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "32a3542d-0bc5-4c39-bb33-73fc0ffe716e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004249Z:32a3542d-0bc5-4c39-bb33-73fc0ffe716e" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"d1bace7d-71c2-4743-abab-c085260bd1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "16035d78-b73c-4b9c-94de-0a614f915320" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d1bace7d-71c2-4743-abab-c085260bd1a3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "9c17b530-fc7d-4bc6-802e-ecefa37c5a19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004250Z:9c17b530-fc7d-4bc6-802e-ecefa37c5a19" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"d1bace7d-71c2-4743-abab-c085260bd1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "16035d78-b73c-4b9c-94de-0a614f915320" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d1bace7d-71c2-4743-abab-c085260bd1a3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "9c17b530-fc7d-4bc6-802e-ecefa37c5a19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004250Z:9c17b530-fc7d-4bc6-802e-ecefa37c5a19" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"d1bace7d-71c2-4743-abab-c085260bd1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "16035d78-b73c-4b9c-94de-0a614f915320" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d1bace7d-71c2-4743-abab-c085260bd1a3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "9c17b530-fc7d-4bc6-802e-ecefa37c5a19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004250Z:9c17b530-fc7d-4bc6-802e-ecefa37c5a19" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzNjUxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3651\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/publicIPAddresses/azsmnet3651\",\r\n \"etag\": \"W/\\\"d1bace7d-71c2-4743-abab-c085260bd1a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2310\",\r\n \"fqdn\": \"azsmnet2310.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "16035d78-b73c-4b9c-94de-0a614f915320" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d1bace7d-71c2-4743-abab-c085260bd1a3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "9c17b530-fc7d-4bc6-802e-ecefa37c5a19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004250Z:9c17b530-fc7d-4bc6-802e-ecefa37c5a19" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706\",\r\n \"etag\": \"W/\\\"9f8d5652-904b-4112-aa20-1ed38818f551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"9f8d5652-904b-4112-aa20-1ed38818f551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "11515a4a-fa41-41fd-8b87-9213699852fa" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/11515a4a-fa41-41fd-8b87-9213699852fa?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "fd15d458-38e0-4bef-839a-846de220f8c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004253Z:fd15d458-38e0-4bef-839a-846de220f8c1" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706\",\r\n \"etag\": \"W/\\\"9f8d5652-904b-4112-aa20-1ed38818f551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"9f8d5652-904b-4112-aa20-1ed38818f551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "11515a4a-fa41-41fd-8b87-9213699852fa" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/11515a4a-fa41-41fd-8b87-9213699852fa?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "fd15d458-38e0-4bef-839a-846de220f8c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004253Z:fd15d458-38e0-4bef-839a-846de220f8c1" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706\",\r\n \"etag\": \"W/\\\"9f8d5652-904b-4112-aa20-1ed38818f551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"9f8d5652-904b-4112-aa20-1ed38818f551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "11515a4a-fa41-41fd-8b87-9213699852fa" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/11515a4a-fa41-41fd-8b87-9213699852fa?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "fd15d458-38e0-4bef-839a-846de220f8c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004253Z:fd15d458-38e0-4bef-839a-846de220f8c1" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706\",\r\n \"etag\": \"W/\\\"9f8d5652-904b-4112-aa20-1ed38818f551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"9f8d5652-904b-4112-aa20-1ed38818f551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "11515a4a-fa41-41fd-8b87-9213699852fa" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/11515a4a-fa41-41fd-8b87-9213699852fa?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "fd15d458-38e0-4bef-839a-846de220f8c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004253Z:fd15d458-38e0-4bef-839a-846de220f8c1" + ], + "Date": [ + "Wed, 15 Jul 2015 00:42:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/11515a4a-fa41-41fd-8b87-9213699852fa?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExNTE1YTRhLWZhNDEtNDFmZC04Yjg3LTkyMTM2OTk4NTJmYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "566a3cb7-09e4-4b6e-9aa2-fe92cd626a5d" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "9845dd5d-404b-4ea2-a237-94022a5be00f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004304Z:9845dd5d-404b-4ea2-a237-94022a5be00f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/11515a4a-fa41-41fd-8b87-9213699852fa?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExNTE1YTRhLWZhNDEtNDFmZC04Yjg3LTkyMTM2OTk4NTJmYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "566a3cb7-09e4-4b6e-9aa2-fe92cd626a5d" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "9845dd5d-404b-4ea2-a237-94022a5be00f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004304Z:9845dd5d-404b-4ea2-a237-94022a5be00f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/11515a4a-fa41-41fd-8b87-9213699852fa?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExNTE1YTRhLWZhNDEtNDFmZC04Yjg3LTkyMTM2OTk4NTJmYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "566a3cb7-09e4-4b6e-9aa2-fe92cd626a5d" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "9845dd5d-404b-4ea2-a237-94022a5be00f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004304Z:9845dd5d-404b-4ea2-a237-94022a5be00f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/11515a4a-fa41-41fd-8b87-9213699852fa?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzExNTE1YTRhLWZhNDEtNDFmZC04Yjg3LTkyMTM2OTk4NTJmYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "566a3cb7-09e4-4b6e-9aa2-fe92cd626a5d" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "9845dd5d-404b-4ea2-a237-94022a5be00f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004304Z:9845dd5d-404b-4ea2-a237-94022a5be00f" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ae54169-37e3-4b34-afd4-8cf8f3c36019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73f854a2-d320-4df2-8f70-4217a2b237c0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "fccf91a5-fca7-4750-9da2-141ce9286d22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004304Z:fccf91a5-fca7-4750-9da2-141ce9286d22" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ae54169-37e3-4b34-afd4-8cf8f3c36019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73f854a2-d320-4df2-8f70-4217a2b237c0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "fccf91a5-fca7-4750-9da2-141ce9286d22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004304Z:fccf91a5-fca7-4750-9da2-141ce9286d22" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ae54169-37e3-4b34-afd4-8cf8f3c36019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73f854a2-d320-4df2-8f70-4217a2b237c0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "fccf91a5-fca7-4750-9da2-141ce9286d22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004304Z:fccf91a5-fca7-4750-9da2-141ce9286d22" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ae54169-37e3-4b34-afd4-8cf8f3c36019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73f854a2-d320-4df2-8f70-4217a2b237c0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "fccf91a5-fca7-4750-9da2-141ce9286d22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004304Z:fccf91a5-fca7-4750-9da2-141ce9286d22" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706/subnets/azsmnet6532?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNi9zdWJuZXRzL2F6c21uZXQ2NTMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "62b4f08d-82d0-45e1-ab53-dec51b55848a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73f854a2-d320-4df2-8f70-4217a2b237c0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "e52b9805-45a0-4601-bd62-c57c182436be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004305Z:e52b9805-45a0-4601-bd62-c57c182436be" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706/subnets/azsmnet6532?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNi9zdWJuZXRzL2F6c21uZXQ2NTMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "62b4f08d-82d0-45e1-ab53-dec51b55848a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73f854a2-d320-4df2-8f70-4217a2b237c0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "e52b9805-45a0-4601-bd62-c57c182436be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004305Z:e52b9805-45a0-4601-bd62-c57c182436be" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706/subnets/azsmnet6532?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNi9zdWJuZXRzL2F6c21uZXQ2NTMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "62b4f08d-82d0-45e1-ab53-dec51b55848a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73f854a2-d320-4df2-8f70-4217a2b237c0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "e52b9805-45a0-4601-bd62-c57c182436be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004305Z:e52b9805-45a0-4601-bd62-c57c182436be" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualnetworks/azsmnet1706/subnets/azsmnet6532?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTcwNi9zdWJuZXRzL2F6c21uZXQ2NTMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6532\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "62b4f08d-82d0-45e1-ab53-dec51b55848a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"73f854a2-d320-4df2-8f70-4217a2b237c0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "e52b9805-45a0-4601-bd62-c57c182436be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004305Z:e52b9805-45a0-4601-bd62-c57c182436be" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5060\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060/ipConfigurations/azsmnet3492\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b660a7bc-0dc4-4591-ab4a-a49f2aae95b0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/b660a7bc-0dc4-4591-ab4a-a49f2aae95b0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "4baced34-149b-4ce8-96ed-eef914b693ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004308Z:4baced34-149b-4ce8-96ed-eef914b693ec" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5060\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060/ipConfigurations/azsmnet3492\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b660a7bc-0dc4-4591-ab4a-a49f2aae95b0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/b660a7bc-0dc4-4591-ab4a-a49f2aae95b0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "4baced34-149b-4ce8-96ed-eef914b693ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004308Z:4baced34-149b-4ce8-96ed-eef914b693ec" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5060\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060/ipConfigurations/azsmnet3492\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b660a7bc-0dc4-4591-ab4a-a49f2aae95b0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/b660a7bc-0dc4-4591-ab4a-a49f2aae95b0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "4baced34-149b-4ce8-96ed-eef914b693ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004308Z:4baced34-149b-4ce8-96ed-eef914b693ec" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6532\",\r\n \"etag\": \"W/\\\"73f854a2-d320-4df2-8f70-4217a2b237c0\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5060\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060/ipConfigurations/azsmnet3492\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b660a7bc-0dc4-4591-ab4a-a49f2aae95b0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/b660a7bc-0dc4-4591-ab4a-a49f2aae95b0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "4baced34-149b-4ce8-96ed-eef914b693ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004308Z:4baced34-149b-4ce8-96ed-eef914b693ec" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5060\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060/ipConfigurations/azsmnet3492\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d3f0f45-7ebb-471a-a0b5-394687611c29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d2d40036-3ef9-4a52-a306-6b891af9cb99\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "0e8aa288-0f05-4225-bae0-b15ad3a0a721" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004309Z:0e8aa288-0f05-4225-bae0-b15ad3a0a721" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5060\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060/ipConfigurations/azsmnet3492\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d3f0f45-7ebb-471a-a0b5-394687611c29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d2d40036-3ef9-4a52-a306-6b891af9cb99\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "0e8aa288-0f05-4225-bae0-b15ad3a0a721" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004309Z:0e8aa288-0f05-4225-bae0-b15ad3a0a721" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5060\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060/ipConfigurations/azsmnet3492\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d3f0f45-7ebb-471a-a0b5-394687611c29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d2d40036-3ef9-4a52-a306-6b891af9cb99\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "0e8aa288-0f05-4225-bae0-b15ad3a0a721" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004309Z:0e8aa288-0f05-4225-bae0-b15ad3a0a721" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5060\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3492\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060/ipConfigurations/azsmnet3492\",\r\n \"etag\": \"W/\\\"d2d40036-3ef9-4a52-a306-6b891af9cb99\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/virtualNetworks/azsmnet1706/subnets/azsmnet6532\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d3f0f45-7ebb-471a-a0b5-394687611c29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d2d40036-3ef9-4a52-a306-6b891af9cb99\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "0e8aa288-0f05-4225-bae0-b15ad3a0a721" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004309Z:0e8aa288-0f05-4225-bae0-b15ad3a0a721" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxMjIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221\",\r\n \"name\": \"as1221\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "561eb1da-51b3-4945-ad50-ffcd30f1aff5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "1da23985-ab3b-49d9-be8a-392440f32942" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004313Z:1da23985-ab3b-49d9-be8a-392440f32942" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxMjIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221\",\r\n \"name\": \"as1221\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "561eb1da-51b3-4945-ad50-ffcd30f1aff5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "1da23985-ab3b-49d9-be8a-392440f32942" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004313Z:1da23985-ab3b-49d9-be8a-392440f32942" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxMjIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221\",\r\n \"name\": \"as1221\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "561eb1da-51b3-4945-ad50-ffcd30f1aff5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "1da23985-ab3b-49d9-be8a-392440f32942" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004313Z:1da23985-ab3b-49d9-be8a-392440f32942" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxMjIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221\",\r\n \"name\": \"as1221\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "561eb1da-51b3-4945-ad50-ffcd30f1aff5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "1da23985-ab3b-49d9-be8a-392440f32942" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004313Z:1da23985-ab3b-49d9-be8a-392440f32942" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/virtualMachines/vm1224?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest337.blob.core.windows.net/pslibtest2018/ospslibtest5011.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest8305\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest8305</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ],\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2717" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"LinkedAuthorizationFailed\",\r\n \"message\": \"The client 'destanko@microsoft.com' with object id '0e5952e3-4dc8-4c6f-b70e-a6ce1b0ca366' has permission to perform action 'Microsoft.Compute/virtualMachines/write' on scope '/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/virtualMachines/vm1224'; however, it does not have permission to perform action 'Microsoft.KeyVault/vaults/deploy/action' on the linked scope(s) '/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "x-ms-correlation-request-id": [ + "d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004313Z:d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Connection": [ + "close" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:12 GMT" + ] + }, + "StatusCode": 403 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/virtualMachines/vm1224?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest337.blob.core.windows.net/pslibtest2018/ospslibtest5011.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest8305\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest8305</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ],\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2717" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"LinkedAuthorizationFailed\",\r\n \"message\": \"The client 'destanko@microsoft.com' with object id '0e5952e3-4dc8-4c6f-b70e-a6ce1b0ca366' has permission to perform action 'Microsoft.Compute/virtualMachines/write' on scope '/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/virtualMachines/vm1224'; however, it does not have permission to perform action 'Microsoft.KeyVault/vaults/deploy/action' on the linked scope(s) '/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "x-ms-correlation-request-id": [ + "d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004313Z:d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Connection": [ + "close" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:12 GMT" + ] + }, + "StatusCode": 403 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/virtualMachines/vm1224?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest337.blob.core.windows.net/pslibtest2018/ospslibtest5011.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest8305\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest8305</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ],\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2717" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"LinkedAuthorizationFailed\",\r\n \"message\": \"The client 'destanko@microsoft.com' with object id '0e5952e3-4dc8-4c6f-b70e-a6ce1b0ca366' has permission to perform action 'Microsoft.Compute/virtualMachines/write' on scope '/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/virtualMachines/vm1224'; however, it does not have permission to perform action 'Microsoft.KeyVault/vaults/deploy/action' on the linked scope(s) '/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "x-ms-correlation-request-id": [ + "d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004313Z:d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Connection": [ + "close" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:12 GMT" + ] + }, + "StatusCode": 403 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/virtualMachines/vm1224?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDgzMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest337.blob.core.windows.net/pslibtest2018/ospslibtest5011.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest8305\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123pslibtest8305</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ],\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://pslibtestkeyvault.vault.azure.net/secrets/WinRM/24c727e7449b47cb9d2f385113f59a63\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Network/networkInterfaces/azsmnet5060\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/availabilitySets/as1221\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2717" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"LinkedAuthorizationFailed\",\r\n \"message\": \"The client 'destanko@microsoft.com' with object id '0e5952e3-4dc8-4c6f-b70e-a6ce1b0ca366' has permission to perform action 'Microsoft.Compute/virtualMachines/write' on scope '/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest8305/providers/Microsoft.Compute/virtualMachines/vm1224'; however, it does not have permission to perform action 'Microsoft.KeyVault/vaults/deploy/action' on the linked scope(s) '/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtestosprofile/providers/Microsoft.KeyVault/vaults/pslibtestkeyvault'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "x-ms-correlation-request-id": [ + "d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004313Z:d537be92-a11c-40cb-9110-b69b9e9d9c0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Connection": [ + "close" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:12 GMT" + ] + }, + "StatusCode": 403 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "x-ms-correlation-request-id": [ + "e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004315Z:e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "x-ms-correlation-request-id": [ + "e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004315Z:e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "x-ms-correlation-request-id": [ + "e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004315Z:e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "x-ms-correlation-request-id": [ + "e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004315Z:e277efe8-ee42-4841-a718-aa9c3ec9316d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'pslibtest8305' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "a0108831-0773-47cf-8a01-3738b583c43e" + ], + "x-ms-correlation-request-id": [ + "a0108831-0773-47cf-8a01-3738b583c43e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004503Z:a0108831-0773-47cf-8a01-3738b583c43e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:45:03 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'pslibtest8305' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "a0108831-0773-47cf-8a01-3738b583c43e" + ], + "x-ms-correlation-request-id": [ + "a0108831-0773-47cf-8a01-3738b583c43e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004503Z:a0108831-0773-47cf-8a01-3738b583c43e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:45:03 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'pslibtest8305' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "a0108831-0773-47cf-8a01-3738b583c43e" + ], + "x-ms-correlation-request-id": [ + "a0108831-0773-47cf-8a01-3738b583c43e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004503Z:a0108831-0773-47cf-8a01-3738b583c43e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:45:03 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest8305?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDgzMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'pslibtest8305' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "a0108831-0773-47cf-8a01-3738b583c43e" + ], + "x-ms-correlation-request-id": [ + "a0108831-0773-47cf-8a01-3738b583c43e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004503Z:a0108831-0773-47cf-8a01-3738b583c43e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:45:03 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14987" + ], + "x-ms-request-id": [ + "ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "x-ms-correlation-request-id": [ + "ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004331Z:ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14987" + ], + "x-ms-request-id": [ + "ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "x-ms-correlation-request-id": [ + "ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004331Z:ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14987" + ], + "x-ms-request-id": [ + "ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "x-ms-correlation-request-id": [ + "ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004331Z:ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14987" + ], + "x-ms-request-id": [ + "ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "x-ms-correlation-request-id": [ + "ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004331Z:ca3f23b9-f8df-4f56-a248-c48b308cd6c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14986" + ], + "x-ms-request-id": [ + "e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "x-ms-correlation-request-id": [ + "e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004346Z:e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14986" + ], + "x-ms-request-id": [ + "e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "x-ms-correlation-request-id": [ + "e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004346Z:e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14986" + ], + "x-ms-request-id": [ + "e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "x-ms-correlation-request-id": [ + "e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004346Z:e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14986" + ], + "x-ms-request-id": [ + "e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "x-ms-correlation-request-id": [ + "e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004346Z:e15d6f6c-aeb7-4655-9441-a4b32bf216c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:43:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14985" + ], + "x-ms-request-id": [ + "f37174f5-9541-45a6-9791-eca893326495" + ], + "x-ms-correlation-request-id": [ + "f37174f5-9541-45a6-9791-eca893326495" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004402Z:f37174f5-9541-45a6-9791-eca893326495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14985" + ], + "x-ms-request-id": [ + "f37174f5-9541-45a6-9791-eca893326495" + ], + "x-ms-correlation-request-id": [ + "f37174f5-9541-45a6-9791-eca893326495" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004402Z:f37174f5-9541-45a6-9791-eca893326495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14985" + ], + "x-ms-request-id": [ + "f37174f5-9541-45a6-9791-eca893326495" + ], + "x-ms-correlation-request-id": [ + "f37174f5-9541-45a6-9791-eca893326495" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004402Z:f37174f5-9541-45a6-9791-eca893326495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14985" + ], + "x-ms-request-id": [ + "f37174f5-9541-45a6-9791-eca893326495" + ], + "x-ms-correlation-request-id": [ + "f37174f5-9541-45a6-9791-eca893326495" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004402Z:f37174f5-9541-45a6-9791-eca893326495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "x-ms-correlation-request-id": [ + "d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004417Z:d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "x-ms-correlation-request-id": [ + "d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004417Z:d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "x-ms-correlation-request-id": [ + "d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004417Z:d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "x-ms-correlation-request-id": [ + "d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004417Z:d791577b-06ca-45d4-bb08-ad4889bb479f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14983" + ], + "x-ms-request-id": [ + "a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "x-ms-correlation-request-id": [ + "a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004433Z:a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14983" + ], + "x-ms-request-id": [ + "a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "x-ms-correlation-request-id": [ + "a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004433Z:a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14983" + ], + "x-ms-request-id": [ + "a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "x-ms-correlation-request-id": [ + "a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004433Z:a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14983" + ], + "x-ms-request-id": [ + "a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "x-ms-correlation-request-id": [ + "a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004433Z:a3abd18a-37c5-4604-995c-3a1ed63595c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:44:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" ], - "Cache-Control": [ + "Expires": [ + "-1" + ], + "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14982" + ], + "x-ms-request-id": [ + "56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" ], "x-ms-correlation-request-id": [ - "099aed7b-e10e-44e7-a9ff-d7a2f857af15" + "56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033412Z:099aed7b-e10e-44e7-a9ff-d7a2f857af15" + "WESTUS:20150715T004448Z:56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:34:12 GMT" + "Wed, 15 Jul 2015 00:44:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1269/providers/Microsoft.Compute/virtualMachines/vm6800?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY4MDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, "ResponseBody": "", @@ -2106,44 +5764,91 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/9539b629-d21f-401f-8bf3-9edda3732d86?api-version=2015-06-15" + "Retry-After": [ + "15" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" ], "x-ms-request-id": [ - "9539b629-d21f-401f-8bf3-9edda3732d86" + "56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" + ], + "x-ms-correlation-request-id": [ + "56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004448Z:56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Wed, 15 Jul 2015 00:44:48 GMT" + ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/9539b629-d21f-401f-8bf3-9edda3732d86?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" ], "x-ms-correlation-request-id": [ - "996a68f3-3659-4f28-8f12-c80f3084d355" + "56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033416Z:996a68f3-3659-4f28-8f12-c80f3084d355" + "WESTUS:20150715T004448Z:56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:34:15 GMT" + "Wed, 15 Jul 2015 00:44:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest1269?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDEyNjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -2164,17 +5869,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" ], "x-ms-request-id": [ - "c3ab604d-0896-4128-b41f-e89bd584ad63" + "56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" ], "x-ms-correlation-request-id": [ - "c3ab604d-0896-4128-b41f-e89bd584ad63" + "56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T033418Z:c3ab604d-0896-4128-b41f-e89bd584ad63" + "WESTUS:20150715T004448Z:56d56f97-ff9e-4a52-b4cb-b0400abcf5ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2183,44 +5888,225 @@ "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:34:17 GMT" + "Wed, 15 Jul 2015 00:44:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMjY5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "x-ms-correlation-request-id": [ + "e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004503Z:e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:45:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "x-ms-correlation-request-id": [ + "e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004503Z:e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:45:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "x-ms-correlation-request-id": [ + "e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004503Z:e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:45:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q4MzA1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE0TXpBMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "x-ms-correlation-request-id": [ + "e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T004503Z:e163dc89-67f6-42a0-bce2-c0a86c910ab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 00:45:03 GMT" + ] + }, + "StatusCode": 200 } ], "Names": { "TestVMWithWindowsOSProfile": [ - "pslibtest1269", - "pslibtest7683" + "pslibtest8305", + "pslibtest1024" ], "TestVMWithOSProfile": [ - "pslibtest3596", - "as8718" + "pslibtest337", + "as1221" ], "CreatePublicIP": [ - "azsmnet5956", - "azsmnet4348" + "azsmnet3651", + "azsmnet2310" ], "CreateVNET": [ - "azsmnet2597", - "azsmnet498" + "azsmnet1706", + "azsmnet6532" ], "CreateNIC": [ - "azsmnet1462", - "azsmnet7561" + "azsmnet5060", + "azsmnet3492" ], "CreateDefaultVMInput": [ - "pslibtest9685", - "pslibtest9927", - "pslibtest6868", - "vm6800" + "pslibtest2018", + "pslibtest2354", + "pslibtest5011", + "vm1224", + "Microsoft.Compute/virtualMachines8761" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json index ad7120344538b..ac5f60c6f11ae 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3220398-b838-443d-a75e-23ee41a63b59" + "104731b2-920a-42ee-a624-4eb1730d6d12" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14959" ], "x-ms-correlation-request-id": [ - "89651205-86d4-4ef9-965e-b307c9f0a612" + "44b91455-481e-4f3d-9f70-3d1689c7ed38" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175237Z:89651205-86d4-4ef9-965e-b307c9f0a612" + "WESTUS:20150714T193546Z:44b91455-481e-4f3d-9f70-3d1689c7ed38" ], "Date": [ - "Tue, 16 Jun 2015 17:52:36 GMT" + "Tue, 14 Jul 2015 19:35:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest7894?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDc4OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894\",\r\n \"name\": \"pslibtest7894\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,50 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43802220-7447-437f-b950-76ece8657876" + "104731b2-920a-42ee-a624-4eb1730d6d12" ], - "x-ms-correlation-request-id": [ - "43802220-7447-437f-b950-76ece8657876" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175239Z:43802220-7447-437f-b950-76ece8657876" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "44b91455-481e-4f3d-9f70-3d1689c7ed38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193546Z:44b91455-481e-4f3d-9f70-3d1689c7ed38" ], "Date": [ - "Tue, 16 Jun 2015 17:52:38 GMT" + "Tue, 14 Jul 2015 19:35:45 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest7894?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDc4OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894\",\r\n \"name\": \"pslibtest7894\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,53 +128,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0130a6ff-298e-4e24-813c-4c9d24e2a614" + "104731b2-920a-42ee-a624-4eb1730d6d12" ], - "x-ms-correlation-request-id": [ - "0130a6ff-298e-4e24-813c-4c9d24e2a614" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175322Z:0130a6ff-298e-4e24-813c-4c9d24e2a614" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "44b91455-481e-4f3d-9f70-3d1689c7ed38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193546Z:44b91455-481e-4f3d-9f70-3d1689c7ed38" ], "Date": [ - "Tue, 16 Jun 2015 17:53:22 GMT" + "Tue, 14 Jul 2015 19:35:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Storage/storageAccounts/pslibtest2382?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzgyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "35349982-ecc5-4651-9066-2a8596e2cb9a" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d92dc878-252a-4df6-944c-a1858e8901c1" + "104731b2-920a-42ee-a624-4eb1730d6d12" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/d92dc878-252a-4df6-944c-a1858e8901c1?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" ], "x-ms-correlation-request-id": [ - "d2e60247-1a2d-4fbd-941e-a3af61f4b518" + "44b91455-481e-4f3d-9f70-3d1689c7ed38" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175245Z:d2e60247-1a2d-4fbd-941e-a3af61f4b518" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T193546Z:44b91455-481e-4f3d-9f70-3d1689c7ed38" ], "Date": [ - "Tue, 16 Jun 2015 17:52:44 GMT" + "Tue, 14 Jul 2015 19:35:45 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/d92dc878-252a-4df6-944c-a1858e8901c1?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q5MmRjODc4LTI1MmEtNGRmNi05NDRjLWExODU4ZTg5MDFjMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f1df138-eb60-4816-a567-2402bbe77b22" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602\",\r\n \"name\": \"pslibtest1602\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +238,50 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" ], "x-ms-request-id": [ - "e4bbea06-4395-469e-9b7c-e281f7fcbe9d" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/d92dc878-252a-4df6-944c-a1858e8901c1?monitor=true&api-version=2015-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "x-ms-correlation-request-id": [ - "665bc2e4-daee-42e2-8ad0-98f704ee9d8b" + "2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175245Z:665bc2e4-daee-42e2-8ad0-98f704ee9d8b" + "WESTUS:20150714T193549Z:2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 17:52:45 GMT" + "Tue, 14 Jul 2015 19:35:48 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/d92dc878-252a-4df6-944c-a1858e8901c1?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q5MmRjODc4LTI1MmEtNGRmNi05NDRjLWExODU4ZTg5MDFjMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "83488067-c1ba-4ef7-bd87-80f2175764ca" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602\",\r\n \"name\": \"pslibtest1602\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "a0bd386b-e83d-4a2a-a3c7-9f2784fa51a5" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "x-ms-request-id": [ + "2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "x-ms-correlation-request-id": [ - "45b743b4-6f12-4cc9-b092-67d955db781a" + "2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175310Z:45b743b4-6f12-4cc9-b092-67d955db781a" + "WESTUS:20150714T193549Z:2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 17:53:09 GMT" + "Tue, 14 Jul 2015 19:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "ddd2b19d-5eb9-44ee-9fea-dcdcc55aa3f3" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Storage/storageAccounts/pslibtest2382\",\r\n \"name\": \"pslibtest2382\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2382.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2382.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2382.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T17:52:41.8017047Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602\",\r\n \"name\": \"pslibtest1602\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +346,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "17e7ad62-4714-4db4-a917-e64f0f0d35bd" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "x-ms-request-id": [ + "2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "x-ms-correlation-request-id": [ - "f5d61d07-1ed2-44fc-9027-5cf25df534b6" + "2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175321Z:f5d61d07-1ed2-44fc-9027-5cf25df534b6" + "WESTUS:20150714T193549Z:2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 17:53:20 GMT" + "Tue, 14 Jul 2015 19:35:48 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/publicIPAddresses/azsmnet1248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxMjQ4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1862\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1248\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/publicIPAddresses/azsmnet1248\",\r\n \"etag\": \"W/\\\"d39e9baa-e265-49a1-876b-e1be740d04f5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1862\",\r\n \"fqdn\": \"azsmnet1862.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602\",\r\n \"name\": \"pslibtest1602\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "579" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +400,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" ], "x-ms-request-id": [ - "6cec18b7-7620-4e29-988e-42cf12ee213d" + "2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/6cec18b7-7620-4e29-988e-42cf12ee213d?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "2247a3e5-2fda-4b83-8ba7-f65dddedb40d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193549Z:2247a3e5-2fda-4b83-8ba7-f65dddedb40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +418,32 @@ "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": [ - "f33a5e29-ffc9-4b33-87ce-76bec39e16d2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175328Z:f33a5e29-ffc9-4b33-87ce-76bec39e16d2" - ], "Date": [ - "Tue, 16 Jun 2015 17:53:28 GMT" + "Tue, 14 Jul 2015 19:35:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/6cec18b7-7620-4e29-988e-42cf12ee213d?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZjZWMxOGI3LTc2MjAtNGUyOS05ODhlLTQyY2YxMmVlMjEzZD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602\",\r\n \"name\": \"pslibtest1602\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +454,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], "x-ms-request-id": [ - "c288f179-6e81-482b-b05f-1071752a066a" + "0037091a-5dc2-4f57-8f7e-aa38a658574d" + ], + "x-ms-correlation-request-id": [ + "0037091a-5dc2-4f57-8f7e-aa38a658574d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193632Z:0037091a-5dc2-4f57-8f7e-aa38a658574d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +472,32 @@ "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": [ - "e29a6226-15da-495b-b603-3196f151bbf0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175329Z:e29a6226-15da-495b-b603-3196f151bbf0" - ], "Date": [ - "Tue, 16 Jun 2015 17:53:28 GMT" + "Tue, 14 Jul 2015 19:36:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/publicIPAddresses/azsmnet1248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQxMjQ4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1248\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/publicIPAddresses/azsmnet1248\",\r\n \"etag\": \"W/\\\"365b8322-6de1-418d-8691-9d73dedcf7b0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1862\",\r\n \"fqdn\": \"azsmnet1862.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602\",\r\n \"name\": \"pslibtest1602\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,57 +508,50 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], "x-ms-request-id": [ - "6cda4a94-614d-4c75-a93c-1d4a390b623b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "ETag": [ - "W/\"365b8322-6de1-418d-8691-9d73dedcf7b0\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "0037091a-5dc2-4f57-8f7e-aa38a658574d" ], "x-ms-correlation-request-id": [ - "a3393109-35c3-4c9a-b196-31d0ad446b52" + "0037091a-5dc2-4f57-8f7e-aa38a658574d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175329Z:a3393109-35c3-4c9a-b196-31d0ad446b52" + "WESTUS:20150714T193632Z:0037091a-5dc2-4f57-8f7e-aa38a658574d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:53:29 GMT" + "Tue, 14 Jul 2015 19:36:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/virtualnetworks/azsmnet4997?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NDk5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet708\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "421" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4997\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/virtualNetworks/azsmnet4997\",\r\n \"etag\": \"W/\\\"c106df26-c691-44d0-a8ac-5eb316913cb4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet708\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/virtualNetworks/azsmnet4997/subnets/azsmnet708\",\r\n \"etag\": \"W/\\\"c106df26-c691-44d0-a8ac-5eb316913cb4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602\",\r\n \"name\": \"pslibtest1602\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "957" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,14 +562,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" ], "x-ms-request-id": [ - "79c819cd-7215-41a1-9d1e-1d54c2d3e118" + "0037091a-5dc2-4f57-8f7e-aa38a658574d" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/79c819cd-7215-41a1-9d1e-1d54c2d3e118?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "0037091a-5dc2-4f57-8f7e-aa38a658574d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193632Z:0037091a-5dc2-4f57-8f7e-aa38a658574d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,42 +580,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "e33f9c89-3877-4a52-90d1-8ce94aed8d36" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175333Z:e33f9c89-3877-4a52-90d1-8ce94aed8d36" - ], "Date": [ - "Tue, 16 Jun 2015 17:53:33 GMT" + "Tue, 14 Jul 2015 19:36:31 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/79c819cd-7215-41a1-9d1e-1d54c2d3e118?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc5YzgxOWNkLTcyMTUtNDFhMS05ZDFlLTFkNTRjMmQzZTExOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602\",\r\n \"name\": \"pslibtest1602\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], "x-ms-request-id": [ - "f403e10d-c559-42be-999b-03d014b6bd89" + "0037091a-5dc2-4f57-8f7e-aa38a658574d" + ], + "x-ms-correlation-request-id": [ + "0037091a-5dc2-4f57-8f7e-aa38a658574d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193632Z:0037091a-5dc2-4f57-8f7e-aa38a658574d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,39 +634,32 @@ "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": [ - "4af38969-3b4a-4d68-8c97-fb9859a00f40" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175334Z:4af38969-3b4a-4d68-8c97-fb9859a00f40" - ], "Date": [ - "Tue, 16 Jun 2015 17:53:33 GMT" + "Tue, 14 Jul 2015 19:36:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/virtualnetworks/azsmnet4997/subnets/azsmnet708?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NDk5Ny9zdWJuZXRzL2F6c21uZXQ3MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3ODA2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet708\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/virtualNetworks/azsmnet4997/subnets/azsmnet708\",\r\n \"etag\": \"W/\\\"92ae6d1a-0c2c-480e-93bb-e070394e827c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "353" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,57 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ab981313-cf50-411a-9c91-fc6ef26a518e" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "124d4e7b-9e9b-4462-8f46-aec46d821497" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"92ae6d1a-0c2c-480e-93bb-e070394e827c\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/124d4e7b-9e9b-4462-8f46-aec46d821497?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" ], "x-ms-correlation-request-id": [ - "42b7f1bf-bf5d-4603-b21f-c51172dde383" + "09a9122b-b648-4330-8635-823e44ef7ed1" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175334Z:42b7f1bf-bf5d-4603-b21f-c51172dde383" + "WESTUS:20150714T193554Z:09a9122b-b648-4330-8635-823e44ef7ed1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:34 GMT" + "Tue, 14 Jul 2015 19:35:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3NjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3ODA2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/virtualNetworks/azsmnet4997/subnets/azsmnet708\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/publicIPAddresses/azsmnet1248\"\r\n }\r\n },\r\n \"name\": \"azsmnet6116\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet7644\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "715" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7644\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644\",\r\n \"etag\": \"W/\\\"caa18d98-6eec-4288-91a2-9c8fe41ea8e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6116\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644/ipConfigurations/azsmnet6116\",\r\n \"etag\": \"W/\\\"caa18d98-6eec-4288-91a2-9c8fe41ea8e8\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/publicIPAddresses/azsmnet1248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/virtualNetworks/azsmnet4997/subnets/azsmnet708\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1323" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -776,54 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "acb6a1f4-9700-4026-a6f4-3637a5b2064e" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/acb6a1f4-9700-4026-a6f4-3637a5b2064e?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "124d4e7b-9e9b-4462-8f46-aec46d821497" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/124d4e7b-9e9b-4462-8f46-aec46d821497?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1180" ], "x-ms-correlation-request-id": [ - "81a2218b-accc-4659-ac37-50c7c80bbb91" + "09a9122b-b648-4330-8635-823e44ef7ed1" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175338Z:81a2218b-accc-4659-ac37-50c7c80bbb91" + "WESTUS:20150714T193554Z:09a9122b-b648-4330-8635-823e44ef7ed1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:37 GMT" + "Tue, 14 Jul 2015 19:35:54 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/acb6a1f4-9700-4026-a6f4-3637a5b2064e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjYjZhMWY0LTk3MDAtNDAyNi1hNmY0LTM2MzdhNWIyMDY0ZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3ODA2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,48 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "fc4b4ae5-a1ae-4a7d-9e45-8504bc44f3cf" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "124d4e7b-9e9b-4462-8f46-aec46d821497" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/124d4e7b-9e9b-4462-8f46-aec46d821497?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" ], "x-ms-correlation-request-id": [ - "0cb0e6c3-61c0-43d8-ac77-df17b8ca9052" + "09a9122b-b648-4330-8635-823e44ef7ed1" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175339Z:0cb0e6c3-61c0-43d8-ac77-df17b8ca9052" + "WESTUS:20150714T193554Z:09a9122b-b648-4330-8635-823e44ef7ed1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:38 GMT" + "Tue, 14 Jul 2015 19:35:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3NjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3ODA2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7644\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644\",\r\n \"etag\": \"W/\\\"caa18d98-6eec-4288-91a2-9c8fe41ea8e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6116\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644/ipConfigurations/azsmnet6116\",\r\n \"etag\": \"W/\\\"caa18d98-6eec-4288-91a2-9c8fe41ea8e8\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/publicIPAddresses/azsmnet1248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/virtualNetworks/azsmnet4997/subnets/azsmnet708\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1323" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,57 +862,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "80bc167f-9cd9-4fd9-90e4-86e4d930b385" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "124d4e7b-9e9b-4462-8f46-aec46d821497" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"caa18d98-6eec-4288-91a2-9c8fe41ea8e8\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/124d4e7b-9e9b-4462-8f46-aec46d821497?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" ], "x-ms-correlation-request-id": [ - "12c601ad-bcb6-4bef-8d62-755eb6f1538b" + "09a9122b-b648-4330-8635-823e44ef7ed1" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175339Z:12c601ad-bcb6-4bef-8d62-755eb6f1538b" + "WESTUS:20150714T193554Z:09a9122b-b648-4330-8635-823e44ef7ed1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:38 GMT" + "Tue, 14 Jul 2015 19:35:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/availabilitySets/as1988?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxOTg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as1988\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/124d4e7b-9e9b-4462-8f46-aec46d821497?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyNGQ0ZTdiLTllOWItNDQ2Mi04ZjQ2LWFlYzQ2ZDgyMTQ5Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "133" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/availabilitySets/as1988\",\r\n \"name\": \"as1988\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "403" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -947,11 +920,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "87ef9f53-e377-4890-bdbc-8ac0ec5356eb" + "fc2794d3-8d1d-4bf0-b260-6944ed4e55da" ], "Cache-Control": [ "no-cache" @@ -960,41 +930,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" ], "x-ms-correlation-request-id": [ - "8d41e663-dbec-4d77-ae5e-8af896b258dd" + "b5bec9c8-8425-4626-b7ef-964dd441c481" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175343Z:8d41e663-dbec-4d77-ae5e-8af896b258dd" + "WESTUS:20150714T193620Z:b5bec9c8-8425-4626-b7ef-964dd441c481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:43 GMT" + "Tue, 14 Jul 2015 19:36:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/virtualMachines/vm1477?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2382.blob.core.windows.net/pslibtest3494/ospslibtest4931.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest7894\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/availabilitySets/as1988\"\r\n }\r\n },\r\n \"name\": \"vm1477\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/124d4e7b-9e9b-4462-8f46-aec46d821497?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyNGQ0ZTdiLTllOWItNDQ2Mi04ZjQ2LWFlYzQ2ZDgyMTQ5Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1321" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/availabilitySets/AS1988\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2382.blob.core.windows.net/pslibtest3494/ospslibtest4931.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/virtualMachines/vm1477\",\r\n \"name\": \"vm1477\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1580" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,14 +972,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/344225f2-6a71-4fb2-b4fa-158c782092a8?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "344225f2-6a71-4fb2-b4fa-158c782092a8" + "fc2794d3-8d1d-4bf0-b260-6944ed4e55da" ], "Cache-Control": [ "no-cache" @@ -1021,35 +982,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" ], "x-ms-correlation-request-id": [ - "839de844-4b4c-4fe4-96cc-574dd8c27808" + "b5bec9c8-8425-4626-b7ef-964dd441c481" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175347Z:839de844-4b4c-4fe4-96cc-574dd8c27808" + "WESTUS:20150714T193620Z:b5bec9c8-8425-4626-b7ef-964dd441c481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:46 GMT" + "Tue, 14 Jul 2015 19:36:20 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/344225f2-6a71-4fb2-b4fa-158c782092a8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM0NDIyNWYyLTZhNzEtNGZiMi1iNGZhLTE1OGM3ODIwOTJhOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/124d4e7b-9e9b-4462-8f46-aec46d821497?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyNGQ0ZTdiLTllOWItNDQ2Mi04ZjQ2LWFlYzQ2ZDgyMTQ5Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"344225f2-6a71-4fb2-b4fa-158c782092a8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:53:45.8279491-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1060,11 +1024,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "425d90c6-9c70-49ab-96f3-1b36d141c0f2" + "fc2794d3-8d1d-4bf0-b260-6944ed4e55da" ], "Cache-Control": [ "no-cache" @@ -1074,34 +1035,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14958" ], "x-ms-correlation-request-id": [ - "77fd4787-0031-4ab2-88ad-ae29c533b9ec" + "b5bec9c8-8425-4626-b7ef-964dd441c481" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175348Z:77fd4787-0031-4ab2-88ad-ae29c533b9ec" + "WESTUS:20150714T193620Z:b5bec9c8-8425-4626-b7ef-964dd441c481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:47 GMT" + "Tue, 14 Jul 2015 19:36:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/virtualMachines/vm1477?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/124d4e7b-9e9b-4462-8f46-aec46d821497?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyNGQ0ZTdiLTllOWItNDQ2Mi04ZjQ2LWFlYzQ2ZDgyMTQ5Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/availabilitySets/AS1988\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2382.blob.core.windows.net/pslibtest3494/ospslibtest4931.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Network/networkInterfaces/azsmnet7644\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/virtualMachines/vm1477\",\r\n \"name\": \"vm1477\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1580" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1112,11 +1076,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "b0b5a6c0-4c98-4eed-bedf-e4645c44ac8f" + "fc2794d3-8d1d-4bf0-b260-6944ed4e55da" ], "Cache-Control": [ "no-cache" @@ -1126,34 +1087,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14958" ], "x-ms-correlation-request-id": [ - "ce179a47-ac81-4a86-b12d-9daa6e718628" + "b5bec9c8-8425-4626-b7ef-964dd441c481" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175348Z:ce179a47-ac81-4a86-b12d-9daa6e718628" + "WESTUS:20150714T193620Z:b5bec9c8-8425-4626-b7ef-964dd441c481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:48 GMT" + "Tue, 14 Jul 2015 19:36:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/usages?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS91c2FnZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 5,\r\n \"limit\": 20,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806\",\r\n \"name\": \"pslibtest7806\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7806.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7806.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7806.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:35:51.3766043Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "195" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1164,11 +1128,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "48263773-95a5-45e2-bf54-061736ca564d" + "81f91173-b5a3-41ed-aa0b-4f01ba798f20" ], "Cache-Control": [ "no-cache" @@ -1178,34 +1139,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14957" ], "x-ms-correlation-request-id": [ - "63800464-e809-4355-b748-2cb82768604c" + "ce0e57d1-1009-40c1-aeda-9d60ead3ea5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175349Z:63800464-e809-4355-b748-2cb82768604c" + "WESTUS:20150714T193630Z:ce0e57d1-1009-40c1-aeda-9d60ead3ea5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:48 GMT" + "Tue, 14 Jul 2015 19:36:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7894/providers/Microsoft.Compute/virtualMachines/vm1477?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE0Nzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806\",\r\n \"name\": \"pslibtest7806\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7806.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7806.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7806.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:35:51.3766043Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1213,54 +1180,204 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15" + "x-ms-request-id": [ + "81f91173-b5a3-41ed-aa0b-4f01ba798f20" + ], + "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": [ + "ce0e57d1-1009-40c1-aeda-9d60ead3ea5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193630Z:ce0e57d1-1009-40c1-aeda-9d60ead3ea5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Tue, 14 Jul 2015 19:36:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806\",\r\n \"name\": \"pslibtest7806\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7806.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7806.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7806.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:35:51.3766043Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "608bc37e-d47f-47fa-8a18-6504948d019a" + "81f91173-b5a3-41ed-aa0b-4f01ba798f20" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?monitor=true&api-version=2015-06-15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "ce0e57d1-1009-40c1-aeda-9d60ead3ea5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193630Z:ce0e57d1-1009-40c1-aeda-9d60ead3ea5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806\",\r\n \"name\": \"pslibtest7806\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7806.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7806.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7806.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:35:51.3766043Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "81f91173-b5a3-41ed-aa0b-4f01ba798f20" + ], + "Cache-Control": [ + "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" ], "x-ms-correlation-request-id": [ - "3e9a868e-e2cc-4bcd-b230-c8d39fe277b8" + "ce0e57d1-1009-40c1-aeda-9d60ead3ea5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175351Z:3e9a868e-e2cc-4bcd-b230-c8d39fe277b8" + "WESTUS:20150714T193630Z:ce0e57d1-1009-40c1-aeda-9d60ead3ea5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:50 GMT" + "Tue, 14 Jul 2015 19:36:30 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYwOGJjMzdlLWQ0N2YtNDdmYS04YTE4LTY1MDQ5NDhkMDE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3ODA2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"608bc37e-d47f-47fa-8a18-6504948d019a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:53:50.0936137-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806\",\r\n \"name\": \"pslibtest7806\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7806.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7806.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7806.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:35:51.3766043Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ada74f6-195d-4353-a074-76dab8a4e802" + ], + "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": [ + "050c53d9-7732-424f-a375-4a7eeb97f103" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193631Z:050c53d9-7732-424f-a375-4a7eeb97f103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3ODA2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806\",\r\n \"name\": \"pslibtest7806\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7806.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7806.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7806.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:35:51.3766043Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1271,11 +1388,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "4ada74f6-195d-4353-a074-76dab8a4e802" + ], + "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": [ + "050c53d9-7732-424f-a375-4a7eeb97f103" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193631Z:050c53d9-7732-424f-a375-4a7eeb97f103" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Tue, 14 Jul 2015 19:36:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3ODA2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806\",\r\n \"name\": \"pslibtest7806\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7806.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7806.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7806.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:35:51.3766043Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "d2528817-78b3-4aa8-8c81-72a66d7c58d9" + "4ada74f6-195d-4353-a074-76dab8a4e802" ], "Cache-Control": [ "no-cache" @@ -1285,37 +1451,10901 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14956" ], "x-ms-correlation-request-id": [ - "9b051d51-3cb6-4c36-b4ed-447c17a4e1b9" + "050c53d9-7732-424f-a375-4a7eeb97f103" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175352Z:9b051d51-3cb6-4c36-b4ed-447c17a4e1b9" + "WESTUS:20150714T193631Z:050c53d9-7732-424f-a375-4a7eeb97f103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:53:51 GMT" + "Tue, 14 Jul 2015 19:36:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYwOGJjMzdlLWQ0N2YtNDdmYS04YTE4LTY1MDQ5NDhkMDE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3ODA2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Storage/storageAccounts/pslibtest7806\",\r\n \"name\": \"pslibtest7806\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7806.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7806.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7806.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T19:35:51.3766043Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ada74f6-195d-4353-a074-76dab8a4e802" + ], + "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": [ + "050c53d9-7732-424f-a375-4a7eeb97f103" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193631Z:050c53d9-7732-424f-a375-4a7eeb97f103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ad7d9afd-25f3-40f6-8d8c-78428658acd2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "423058e6-d027-4c7c-91c8-929813a6a4d3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/423058e6-d027-4c7c-91c8-929813a6a4d3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-correlation-request-id": [ + "d0fa95f1-0e57-429c-a1ef-c55f7229eab6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193638Z:d0fa95f1-0e57-429c-a1ef-c55f7229eab6" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ad7d9afd-25f3-40f6-8d8c-78428658acd2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "423058e6-d027-4c7c-91c8-929813a6a4d3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/423058e6-d027-4c7c-91c8-929813a6a4d3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-correlation-request-id": [ + "d0fa95f1-0e57-429c-a1ef-c55f7229eab6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193638Z:d0fa95f1-0e57-429c-a1ef-c55f7229eab6" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ad7d9afd-25f3-40f6-8d8c-78428658acd2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "423058e6-d027-4c7c-91c8-929813a6a4d3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/423058e6-d027-4c7c-91c8-929813a6a4d3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-correlation-request-id": [ + "d0fa95f1-0e57-429c-a1ef-c55f7229eab6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193638Z:d0fa95f1-0e57-429c-a1ef-c55f7229eab6" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ad7d9afd-25f3-40f6-8d8c-78428658acd2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "423058e6-d027-4c7c-91c8-929813a6a4d3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/423058e6-d027-4c7c-91c8-929813a6a4d3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-correlation-request-id": [ + "d0fa95f1-0e57-429c-a1ef-c55f7229eab6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193638Z:d0fa95f1-0e57-429c-a1ef-c55f7229eab6" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/423058e6-d027-4c7c-91c8-929813a6a4d3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQyMzA1OGU2LWQwMjctNGM3Yy05MWM4LTkyOTgxM2E2YTRkMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "993ba48c-a50a-4459-b32e-677fad72da90" + ], + "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": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "020af4a5-8315-4e7d-be2c-df937a94d2fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193649Z:020af4a5-8315-4e7d-be2c-df937a94d2fe" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/423058e6-d027-4c7c-91c8-929813a6a4d3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQyMzA1OGU2LWQwMjctNGM3Yy05MWM4LTkyOTgxM2E2YTRkMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "993ba48c-a50a-4459-b32e-677fad72da90" + ], + "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": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "020af4a5-8315-4e7d-be2c-df937a94d2fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193649Z:020af4a5-8315-4e7d-be2c-df937a94d2fe" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/423058e6-d027-4c7c-91c8-929813a6a4d3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQyMzA1OGU2LWQwMjctNGM3Yy05MWM4LTkyOTgxM2E2YTRkMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "993ba48c-a50a-4459-b32e-677fad72da90" + ], + "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": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "020af4a5-8315-4e7d-be2c-df937a94d2fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193649Z:020af4a5-8315-4e7d-be2c-df937a94d2fe" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/423058e6-d027-4c7c-91c8-929813a6a4d3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQyMzA1OGU2LWQwMjctNGM3Yy05MWM4LTkyOTgxM2E2YTRkMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "993ba48c-a50a-4459-b32e-677fad72da90" + ], + "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": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "020af4a5-8315-4e7d-be2c-df937a94d2fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193649Z:020af4a5-8315-4e7d-be2c-df937a94d2fe" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ca8b08cd-f690-455d-b5c1-34768d8693bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d07ee7c-b4fa-4dcb-9d55-c6171aa43aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca8b08cd-f690-455d-b5c1-34768d8693bf\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "78177284-9d29-49e5-b970-0f283d7e3291" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193649Z:78177284-9d29-49e5-b970-0f283d7e3291" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ca8b08cd-f690-455d-b5c1-34768d8693bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d07ee7c-b4fa-4dcb-9d55-c6171aa43aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca8b08cd-f690-455d-b5c1-34768d8693bf\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "78177284-9d29-49e5-b970-0f283d7e3291" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193649Z:78177284-9d29-49e5-b970-0f283d7e3291" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ca8b08cd-f690-455d-b5c1-34768d8693bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d07ee7c-b4fa-4dcb-9d55-c6171aa43aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca8b08cd-f690-455d-b5c1-34768d8693bf\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "78177284-9d29-49e5-b970-0f283d7e3291" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193649Z:78177284-9d29-49e5-b970-0f283d7e3291" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ca8b08cd-f690-455d-b5c1-34768d8693bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d07ee7c-b4fa-4dcb-9d55-c6171aa43aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca8b08cd-f690-455d-b5c1-34768d8693bf\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "78177284-9d29-49e5-b970-0f283d7e3291" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193649Z:78177284-9d29-49e5-b970-0f283d7e3291" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ca8b08cd-f690-455d-b5c1-34768d8693bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "109e2ca3-8431-4233-b4a8-cfdd262d827f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca8b08cd-f690-455d-b5c1-34768d8693bf\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "fda54695-e6f7-4aea-826e-a61775a3bf97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193650Z:fda54695-e6f7-4aea-826e-a61775a3bf97" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ca8b08cd-f690-455d-b5c1-34768d8693bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "109e2ca3-8431-4233-b4a8-cfdd262d827f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca8b08cd-f690-455d-b5c1-34768d8693bf\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "fda54695-e6f7-4aea-826e-a61775a3bf97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193650Z:fda54695-e6f7-4aea-826e-a61775a3bf97" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ca8b08cd-f690-455d-b5c1-34768d8693bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "109e2ca3-8431-4233-b4a8-cfdd262d827f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca8b08cd-f690-455d-b5c1-34768d8693bf\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "fda54695-e6f7-4aea-826e-a61775a3bf97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193650Z:fda54695-e6f7-4aea-826e-a61775a3bf97" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ3NDgwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7480\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/publicIPAddresses/azsmnet7480\",\r\n \"etag\": \"W/\\\"ca8b08cd-f690-455d-b5c1-34768d8693bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet8021\",\r\n \"fqdn\": \"azsmnet8021.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "109e2ca3-8431-4233-b4a8-cfdd262d827f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca8b08cd-f690-455d-b5c1-34768d8693bf\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "fda54695-e6f7-4aea-826e-a61775a3bf97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193650Z:fda54695-e6f7-4aea-826e-a61775a3bf97" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7880\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880\",\r\n \"etag\": \"W/\\\"05242ba1-b2d7-41ef-8406-f70b5f5e61c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"05242ba1-b2d7-41ef-8406-f70b5f5e61c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30c0e035-4090-4718-b0ea-2e40c96b8fc7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/30c0e035-4090-4718-b0ea-2e40c96b8fc7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "14ec6c0f-b4b1-400c-853e-3d4225dd36c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193653Z:14ec6c0f-b4b1-400c-853e-3d4225dd36c3" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7880\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880\",\r\n \"etag\": \"W/\\\"05242ba1-b2d7-41ef-8406-f70b5f5e61c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"05242ba1-b2d7-41ef-8406-f70b5f5e61c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30c0e035-4090-4718-b0ea-2e40c96b8fc7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/30c0e035-4090-4718-b0ea-2e40c96b8fc7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "14ec6c0f-b4b1-400c-853e-3d4225dd36c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193653Z:14ec6c0f-b4b1-400c-853e-3d4225dd36c3" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7880\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880\",\r\n \"etag\": \"W/\\\"05242ba1-b2d7-41ef-8406-f70b5f5e61c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"05242ba1-b2d7-41ef-8406-f70b5f5e61c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30c0e035-4090-4718-b0ea-2e40c96b8fc7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/30c0e035-4090-4718-b0ea-2e40c96b8fc7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "14ec6c0f-b4b1-400c-853e-3d4225dd36c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193653Z:14ec6c0f-b4b1-400c-853e-3d4225dd36c3" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7880\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880\",\r\n \"etag\": \"W/\\\"05242ba1-b2d7-41ef-8406-f70b5f5e61c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"05242ba1-b2d7-41ef-8406-f70b5f5e61c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30c0e035-4090-4718-b0ea-2e40c96b8fc7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/30c0e035-4090-4718-b0ea-2e40c96b8fc7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "14ec6c0f-b4b1-400c-853e-3d4225dd36c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193653Z:14ec6c0f-b4b1-400c-853e-3d4225dd36c3" + ], + "Date": [ + "Tue, 14 Jul 2015 19:36:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/30c0e035-4090-4718-b0ea-2e40c96b8fc7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwYzBlMDM1LTQwOTAtNDcxOC1iMGVhLTJlNDBjOTZiOGZjNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fbb167d-70b1-476e-8407-e6f0cbb8ba89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "f7e0d47e-bbfd-4f72-a6ea-92191eaafc6e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193704Z:f7e0d47e-bbfd-4f72-a6ea-92191eaafc6e" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/30c0e035-4090-4718-b0ea-2e40c96b8fc7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwYzBlMDM1LTQwOTAtNDcxOC1iMGVhLTJlNDBjOTZiOGZjNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fbb167d-70b1-476e-8407-e6f0cbb8ba89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "f7e0d47e-bbfd-4f72-a6ea-92191eaafc6e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193704Z:f7e0d47e-bbfd-4f72-a6ea-92191eaafc6e" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/30c0e035-4090-4718-b0ea-2e40c96b8fc7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwYzBlMDM1LTQwOTAtNDcxOC1iMGVhLTJlNDBjOTZiOGZjNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fbb167d-70b1-476e-8407-e6f0cbb8ba89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "f7e0d47e-bbfd-4f72-a6ea-92191eaafc6e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193704Z:f7e0d47e-bbfd-4f72-a6ea-92191eaafc6e" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/30c0e035-4090-4718-b0ea-2e40c96b8fc7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwYzBlMDM1LTQwOTAtNDcxOC1iMGVhLTJlNDBjOTZiOGZjNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fbb167d-70b1-476e-8407-e6f0cbb8ba89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "f7e0d47e-bbfd-4f72-a6ea-92191eaafc6e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193704Z:f7e0d47e-bbfd-4f72-a6ea-92191eaafc6e" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7880\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "725be2d7-25d6-4e57-b86a-4e9426d4ffdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "a1842b65-d77d-4cd7-93b1-4153d3e3cb34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193705Z:a1842b65-d77d-4cd7-93b1-4153d3e3cb34" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7880\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "725be2d7-25d6-4e57-b86a-4e9426d4ffdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "a1842b65-d77d-4cd7-93b1-4153d3e3cb34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193705Z:a1842b65-d77d-4cd7-93b1-4153d3e3cb34" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7880\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "725be2d7-25d6-4e57-b86a-4e9426d4ffdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "a1842b65-d77d-4cd7-93b1-4153d3e3cb34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193705Z:a1842b65-d77d-4cd7-93b1-4153d3e3cb34" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7880\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "725be2d7-25d6-4e57-b86a-4e9426d4ffdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "a1842b65-d77d-4cd7-93b1-4153d3e3cb34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193705Z:a1842b65-d77d-4cd7-93b1-4153d3e3cb34" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880/subnets/azsmnet1615?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MC9zdWJuZXRzL2F6c21uZXQxNjE1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2241e467-d716-4197-8530-c478327b59c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "d58965a2-561a-4aa7-9a01-87686336b3dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193705Z:d58965a2-561a-4aa7-9a01-87686336b3dd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880/subnets/azsmnet1615?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MC9zdWJuZXRzL2F6c21uZXQxNjE1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2241e467-d716-4197-8530-c478327b59c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "d58965a2-561a-4aa7-9a01-87686336b3dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193705Z:d58965a2-561a-4aa7-9a01-87686336b3dd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880/subnets/azsmnet1615?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MC9zdWJuZXRzL2F6c21uZXQxNjE1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2241e467-d716-4197-8530-c478327b59c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "d58965a2-561a-4aa7-9a01-87686336b3dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193705Z:d58965a2-561a-4aa7-9a01-87686336b3dd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualnetworks/azsmnet7880/subnets/azsmnet1615?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Nzg4MC9zdWJuZXRzL2F6c21uZXQxNjE1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1615\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2241e467-d716-4197-8530-c478327b59c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "d58965a2-561a-4aa7-9a01-87686336b3dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193705Z:d58965a2-561a-4aa7-9a01-87686336b3dd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3ODA0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7804\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804/ipConfigurations/azsmnet2695\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab584c80-3c4c-42ca-b68d-22a024da6c6e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/ab584c80-3c4c-42ca-b68d-22a024da6c6e?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "dc905f6b-543d-4ee0-a1ef-c4f7246a068b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193709Z:dc905f6b-543d-4ee0-a1ef-c4f7246a068b" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3ODA0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7804\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804/ipConfigurations/azsmnet2695\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab584c80-3c4c-42ca-b68d-22a024da6c6e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/ab584c80-3c4c-42ca-b68d-22a024da6c6e?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "dc905f6b-543d-4ee0-a1ef-c4f7246a068b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193709Z:dc905f6b-543d-4ee0-a1ef-c4f7246a068b" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3ODA0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7804\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804/ipConfigurations/azsmnet2695\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab584c80-3c4c-42ca-b68d-22a024da6c6e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/ab584c80-3c4c-42ca-b68d-22a024da6c6e?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "dc905f6b-543d-4ee0-a1ef-c4f7246a068b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193709Z:dc905f6b-543d-4ee0-a1ef-c4f7246a068b" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3ODA0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1615\",\r\n \"etag\": \"W/\\\"e2076b75-f065-4b61-be4d-4a16c3a60e1d\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7804\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804/ipConfigurations/azsmnet2695\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab584c80-3c4c-42ca-b68d-22a024da6c6e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/ab584c80-3c4c-42ca-b68d-22a024da6c6e?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "dc905f6b-543d-4ee0-a1ef-c4f7246a068b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193709Z:dc905f6b-543d-4ee0-a1ef-c4f7246a068b" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3ODA0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7804\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804/ipConfigurations/azsmnet2695\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ecf4bea6-a6a9-47ad-89e2-0986d8b31718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "a40d72b7-92c0-4a6e-a99a-e8a09aa4d10b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193710Z:a40d72b7-92c0-4a6e-a99a-e8a09aa4d10b" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3ODA0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7804\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804/ipConfigurations/azsmnet2695\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ecf4bea6-a6a9-47ad-89e2-0986d8b31718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "a40d72b7-92c0-4a6e-a99a-e8a09aa4d10b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193710Z:a40d72b7-92c0-4a6e-a99a-e8a09aa4d10b" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3ODA0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7804\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804/ipConfigurations/azsmnet2695\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ecf4bea6-a6a9-47ad-89e2-0986d8b31718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "a40d72b7-92c0-4a6e-a99a-e8a09aa4d10b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193710Z:a40d72b7-92c0-4a6e-a99a-e8a09aa4d10b" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3ODA0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7804\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2695\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804/ipConfigurations/azsmnet2695\",\r\n \"etag\": \"W/\\\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/virtualNetworks/azsmnet7880/subnets/azsmnet1615\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ecf4bea6-a6a9-47ad-89e2-0986d8b31718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"27605f3c-a6fa-4641-89e8-233f9e99f0fa\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "a40d72b7-92c0-4a6e-a99a-e8a09aa4d10b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193710Z:a40d72b7-92c0-4a6e-a99a-e8a09aa4d10b" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676\",\r\n \"name\": \"as676\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "401" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "913b1073-3e3c-4b4c-881f-4a0a4862dcdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-correlation-request-id": [ + "6ab37607-566a-454d-bd74-a97e995cb29a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193714Z:6ab37607-566a-454d-bd74-a97e995cb29a" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676\",\r\n \"name\": \"as676\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "401" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "913b1073-3e3c-4b4c-881f-4a0a4862dcdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-correlation-request-id": [ + "6ab37607-566a-454d-bd74-a97e995cb29a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193714Z:6ab37607-566a-454d-bd74-a97e995cb29a" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676\",\r\n \"name\": \"as676\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "401" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "913b1073-3e3c-4b4c-881f-4a0a4862dcdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-correlation-request-id": [ + "6ab37607-566a-454d-bd74-a97e995cb29a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193714Z:6ab37607-566a-454d-bd74-a97e995cb29a" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676\",\r\n \"name\": \"as676\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "401" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "913b1073-3e3c-4b4c-881f-4a0a4862dcdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-correlation-request-id": [ + "6ab37607-566a-454d-bd74-a97e995cb29a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193714Z:6ab37607-566a-454d-bd74-a97e995cb29a" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1602\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1251" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4a178e6d-8a37-440b-9690-81c386d8d4cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-correlation-request-id": [ + "f61ae605-2e7b-47e3-b273-3092354c13b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193719Z:f61ae605-2e7b-47e3-b273-3092354c13b8" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1602\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1251" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4a178e6d-8a37-440b-9690-81c386d8d4cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-correlation-request-id": [ + "f61ae605-2e7b-47e3-b273-3092354c13b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193719Z:f61ae605-2e7b-47e3-b273-3092354c13b8" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1602\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1251" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4a178e6d-8a37-440b-9690-81c386d8d4cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-correlation-request-id": [ + "f61ae605-2e7b-47e3-b273-3092354c13b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193719Z:f61ae605-2e7b-47e3-b273-3092354c13b8" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1602\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/as676\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1251" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4a178e6d-8a37-440b-9690-81c386d8d4cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-correlation-request-id": [ + "f61ae605-2e7b-47e3-b273-3092354c13b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193719Z:f61ae605-2e7b-47e3-b273-3092354c13b8" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "293d1074-3bcb-4acd-bd5f-92881a79fe33" + ], + "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": [ + "dd532db3-b57d-466b-8af4-38a86c3adee5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193750Z:dd532db3-b57d-466b-8af4-38a86c3adee5" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "293d1074-3bcb-4acd-bd5f-92881a79fe33" + ], + "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": [ + "dd532db3-b57d-466b-8af4-38a86c3adee5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193750Z:dd532db3-b57d-466b-8af4-38a86c3adee5" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "293d1074-3bcb-4acd-bd5f-92881a79fe33" + ], + "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": [ + "dd532db3-b57d-466b-8af4-38a86c3adee5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193750Z:dd532db3-b57d-466b-8af4-38a86c3adee5" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "293d1074-3bcb-4acd-bd5f-92881a79fe33" + ], + "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": [ + "dd532db3-b57d-466b-8af4-38a86c3adee5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193750Z:dd532db3-b57d-466b-8af4-38a86c3adee5" + ], + "Date": [ + "Tue, 14 Jul 2015 19:37:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0c2e579-83c4-4f89-9be6-4a218fee9dc7" + ], + "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": [ + "4ea11a51-2828-40b5-9905-fdd16223f1fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193821Z:4ea11a51-2828-40b5-9905-fdd16223f1fb" + ], + "Date": [ + "Tue, 14 Jul 2015 19:38:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0c2e579-83c4-4f89-9be6-4a218fee9dc7" + ], + "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": [ + "4ea11a51-2828-40b5-9905-fdd16223f1fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193821Z:4ea11a51-2828-40b5-9905-fdd16223f1fb" + ], + "Date": [ + "Tue, 14 Jul 2015 19:38:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0c2e579-83c4-4f89-9be6-4a218fee9dc7" + ], + "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": [ + "4ea11a51-2828-40b5-9905-fdd16223f1fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193821Z:4ea11a51-2828-40b5-9905-fdd16223f1fb" + ], + "Date": [ + "Tue, 14 Jul 2015 19:38:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0c2e579-83c4-4f89-9be6-4a218fee9dc7" + ], + "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": [ + "4ea11a51-2828-40b5-9905-fdd16223f1fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193821Z:4ea11a51-2828-40b5-9905-fdd16223f1fb" + ], + "Date": [ + "Tue, 14 Jul 2015 19:38:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a1922c68-dd0e-4d39-b5c7-3b8fe95c506b" + ], + "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": [ + "0fc1b152-28ff-4fb5-8aec-76866fcc5698" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193852Z:0fc1b152-28ff-4fb5-8aec-76866fcc5698" + ], + "Date": [ + "Tue, 14 Jul 2015 19:38:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a1922c68-dd0e-4d39-b5c7-3b8fe95c506b" + ], + "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": [ + "0fc1b152-28ff-4fb5-8aec-76866fcc5698" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193852Z:0fc1b152-28ff-4fb5-8aec-76866fcc5698" + ], + "Date": [ + "Tue, 14 Jul 2015 19:38:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a1922c68-dd0e-4d39-b5c7-3b8fe95c506b" + ], + "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": [ + "0fc1b152-28ff-4fb5-8aec-76866fcc5698" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193852Z:0fc1b152-28ff-4fb5-8aec-76866fcc5698" + ], + "Date": [ + "Tue, 14 Jul 2015 19:38:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a1922c68-dd0e-4d39-b5c7-3b8fe95c506b" + ], + "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": [ + "0fc1b152-28ff-4fb5-8aec-76866fcc5698" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193852Z:0fc1b152-28ff-4fb5-8aec-76866fcc5698" + ], + "Date": [ + "Tue, 14 Jul 2015 19:38:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "521f8bdb-17b0-419d-9dae-3e7fe5039f63" + ], + "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": [ + "390236d9-b5fe-470d-b87a-a07ca1211963" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193923Z:390236d9-b5fe-470d-b87a-a07ca1211963" + ], + "Date": [ + "Tue, 14 Jul 2015 19:39:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "521f8bdb-17b0-419d-9dae-3e7fe5039f63" + ], + "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": [ + "390236d9-b5fe-470d-b87a-a07ca1211963" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193923Z:390236d9-b5fe-470d-b87a-a07ca1211963" + ], + "Date": [ + "Tue, 14 Jul 2015 19:39:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "521f8bdb-17b0-419d-9dae-3e7fe5039f63" + ], + "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": [ + "390236d9-b5fe-470d-b87a-a07ca1211963" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193923Z:390236d9-b5fe-470d-b87a-a07ca1211963" + ], + "Date": [ + "Tue, 14 Jul 2015 19:39:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "521f8bdb-17b0-419d-9dae-3e7fe5039f63" + ], + "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": [ + "390236d9-b5fe-470d-b87a-a07ca1211963" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193923Z:390236d9-b5fe-470d-b87a-a07ca1211963" + ], + "Date": [ + "Tue, 14 Jul 2015 19:39:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ce8585e7-ec03-417d-9542-81bbc825789a" + ], + "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": [ + "4b189278-3060-4ffe-ba32-b3ceb52c5e13" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193954Z:4b189278-3060-4ffe-ba32-b3ceb52c5e13" + ], + "Date": [ + "Tue, 14 Jul 2015 19:39:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ce8585e7-ec03-417d-9542-81bbc825789a" + ], + "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": [ + "4b189278-3060-4ffe-ba32-b3ceb52c5e13" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193954Z:4b189278-3060-4ffe-ba32-b3ceb52c5e13" + ], + "Date": [ + "Tue, 14 Jul 2015 19:39:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ce8585e7-ec03-417d-9542-81bbc825789a" + ], + "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": [ + "4b189278-3060-4ffe-ba32-b3ceb52c5e13" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193954Z:4b189278-3060-4ffe-ba32-b3ceb52c5e13" + ], + "Date": [ + "Tue, 14 Jul 2015 19:39:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ce8585e7-ec03-417d-9542-81bbc825789a" + ], + "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": [ + "4b189278-3060-4ffe-ba32-b3ceb52c5e13" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T193954Z:4b189278-3060-4ffe-ba32-b3ceb52c5e13" + ], + "Date": [ + "Tue, 14 Jul 2015 19:39:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "697f1e67-373f-47a2-bd1c-fc381ae4c425" + ], + "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": [ + "0bf910a1-1e07-4129-93fc-74ff2e4b3129" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194025Z:0bf910a1-1e07-4129-93fc-74ff2e4b3129" + ], + "Date": [ + "Tue, 14 Jul 2015 19:40:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "697f1e67-373f-47a2-bd1c-fc381ae4c425" + ], + "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": [ + "0bf910a1-1e07-4129-93fc-74ff2e4b3129" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194025Z:0bf910a1-1e07-4129-93fc-74ff2e4b3129" + ], + "Date": [ + "Tue, 14 Jul 2015 19:40:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "697f1e67-373f-47a2-bd1c-fc381ae4c425" + ], + "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": [ + "0bf910a1-1e07-4129-93fc-74ff2e4b3129" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194025Z:0bf910a1-1e07-4129-93fc-74ff2e4b3129" + ], + "Date": [ + "Tue, 14 Jul 2015 19:40:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "697f1e67-373f-47a2-bd1c-fc381ae4c425" + ], + "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": [ + "0bf910a1-1e07-4129-93fc-74ff2e4b3129" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194025Z:0bf910a1-1e07-4129-93fc-74ff2e4b3129" + ], + "Date": [ + "Tue, 14 Jul 2015 19:40:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5182e875-ab60-4af6-aa49-06d1687b804c" + ], + "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": [ + "8bc8626b-310e-4018-ada9-bf3dbd279834" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194056Z:8bc8626b-310e-4018-ada9-bf3dbd279834" + ], + "Date": [ + "Tue, 14 Jul 2015 19:40:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5182e875-ab60-4af6-aa49-06d1687b804c" + ], + "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": [ + "8bc8626b-310e-4018-ada9-bf3dbd279834" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194056Z:8bc8626b-310e-4018-ada9-bf3dbd279834" + ], + "Date": [ + "Tue, 14 Jul 2015 19:40:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5182e875-ab60-4af6-aa49-06d1687b804c" + ], + "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": [ + "8bc8626b-310e-4018-ada9-bf3dbd279834" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194056Z:8bc8626b-310e-4018-ada9-bf3dbd279834" + ], + "Date": [ + "Tue, 14 Jul 2015 19:40:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5182e875-ab60-4af6-aa49-06d1687b804c" + ], + "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": [ + "8bc8626b-310e-4018-ada9-bf3dbd279834" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194056Z:8bc8626b-310e-4018-ada9-bf3dbd279834" + ], + "Date": [ + "Tue, 14 Jul 2015 19:40:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5c1f8eb7-9548-4cb1-ba5b-715e8a4bbb53" + ], + "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": [ + "7e32ecb1-30f3-4e67-b358-53503f7db695" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194127Z:7e32ecb1-30f3-4e67-b358-53503f7db695" + ], + "Date": [ + "Tue, 14 Jul 2015 19:41:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5c1f8eb7-9548-4cb1-ba5b-715e8a4bbb53" + ], + "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": [ + "7e32ecb1-30f3-4e67-b358-53503f7db695" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194127Z:7e32ecb1-30f3-4e67-b358-53503f7db695" + ], + "Date": [ + "Tue, 14 Jul 2015 19:41:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5c1f8eb7-9548-4cb1-ba5b-715e8a4bbb53" + ], + "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": [ + "7e32ecb1-30f3-4e67-b358-53503f7db695" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194127Z:7e32ecb1-30f3-4e67-b358-53503f7db695" + ], + "Date": [ + "Tue, 14 Jul 2015 19:41:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5c1f8eb7-9548-4cb1-ba5b-715e8a4bbb53" + ], + "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": [ + "7e32ecb1-30f3-4e67-b358-53503f7db695" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194127Z:7e32ecb1-30f3-4e67-b358-53503f7db695" + ], + "Date": [ + "Tue, 14 Jul 2015 19:41:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3cbb466f-800d-4b0f-a947-3293abe57710" + ], + "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": [ + "186bbc9b-301e-4c26-824a-ecadf260e21f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194158Z:186bbc9b-301e-4c26-824a-ecadf260e21f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:41:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3cbb466f-800d-4b0f-a947-3293abe57710" + ], + "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": [ + "186bbc9b-301e-4c26-824a-ecadf260e21f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194158Z:186bbc9b-301e-4c26-824a-ecadf260e21f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:41:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3cbb466f-800d-4b0f-a947-3293abe57710" + ], + "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": [ + "186bbc9b-301e-4c26-824a-ecadf260e21f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194158Z:186bbc9b-301e-4c26-824a-ecadf260e21f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:41:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3cbb466f-800d-4b0f-a947-3293abe57710" + ], + "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": [ + "186bbc9b-301e-4c26-824a-ecadf260e21f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194158Z:186bbc9b-301e-4c26-824a-ecadf260e21f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:41:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8e4159fa-39a5-4754-85c8-cc2ca122ac08" + ], + "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": [ + "0bac8eb1-2b40-4149-8edc-41ba50d66ce7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194229Z:0bac8eb1-2b40-4149-8edc-41ba50d66ce7" + ], + "Date": [ + "Tue, 14 Jul 2015 19:42:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8e4159fa-39a5-4754-85c8-cc2ca122ac08" + ], + "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": [ + "0bac8eb1-2b40-4149-8edc-41ba50d66ce7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194229Z:0bac8eb1-2b40-4149-8edc-41ba50d66ce7" + ], + "Date": [ + "Tue, 14 Jul 2015 19:42:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8e4159fa-39a5-4754-85c8-cc2ca122ac08" + ], + "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": [ + "0bac8eb1-2b40-4149-8edc-41ba50d66ce7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194229Z:0bac8eb1-2b40-4149-8edc-41ba50d66ce7" + ], + "Date": [ + "Tue, 14 Jul 2015 19:42:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8e4159fa-39a5-4754-85c8-cc2ca122ac08" + ], + "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": [ + "0bac8eb1-2b40-4149-8edc-41ba50d66ce7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194229Z:0bac8eb1-2b40-4149-8edc-41ba50d66ce7" + ], + "Date": [ + "Tue, 14 Jul 2015 19:42:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5e31bf82-2162-4ef5-8495-80c1e0313aee" + ], + "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": [ + "04824ac0-364f-45e7-b8c6-eaf3bb8493ab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194300Z:04824ac0-364f-45e7-b8c6-eaf3bb8493ab" + ], + "Date": [ + "Tue, 14 Jul 2015 19:43:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5e31bf82-2162-4ef5-8495-80c1e0313aee" + ], + "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": [ + "04824ac0-364f-45e7-b8c6-eaf3bb8493ab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194300Z:04824ac0-364f-45e7-b8c6-eaf3bb8493ab" + ], + "Date": [ + "Tue, 14 Jul 2015 19:43:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5e31bf82-2162-4ef5-8495-80c1e0313aee" + ], + "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": [ + "04824ac0-364f-45e7-b8c6-eaf3bb8493ab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194300Z:04824ac0-364f-45e7-b8c6-eaf3bb8493ab" + ], + "Date": [ + "Tue, 14 Jul 2015 19:43:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5e31bf82-2162-4ef5-8495-80c1e0313aee" + ], + "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": [ + "04824ac0-364f-45e7-b8c6-eaf3bb8493ab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194300Z:04824ac0-364f-45e7-b8c6-eaf3bb8493ab" + ], + "Date": [ + "Tue, 14 Jul 2015 19:43:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ace4920e-1fe6-4ea3-b41f-e2711d4ee6df" + ], + "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": [ + "18b99845-e91d-472e-a219-ae00c6a449ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194331Z:18b99845-e91d-472e-a219-ae00c6a449ec" + ], + "Date": [ + "Tue, 14 Jul 2015 19:43:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ace4920e-1fe6-4ea3-b41f-e2711d4ee6df" + ], + "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": [ + "18b99845-e91d-472e-a219-ae00c6a449ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194331Z:18b99845-e91d-472e-a219-ae00c6a449ec" + ], + "Date": [ + "Tue, 14 Jul 2015 19:43:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ace4920e-1fe6-4ea3-b41f-e2711d4ee6df" + ], + "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": [ + "18b99845-e91d-472e-a219-ae00c6a449ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194331Z:18b99845-e91d-472e-a219-ae00c6a449ec" + ], + "Date": [ + "Tue, 14 Jul 2015 19:43:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ace4920e-1fe6-4ea3-b41f-e2711d4ee6df" + ], + "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": [ + "18b99845-e91d-472e-a219-ae00c6a449ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194331Z:18b99845-e91d-472e-a219-ae00c6a449ec" + ], + "Date": [ + "Tue, 14 Jul 2015 19:43:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1a44870d-ff13-4a98-84b8-be30f387a3c2" + ], + "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": [ + "4df44a6e-cdb4-461a-828b-79fe97c320bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194402Z:4df44a6e-cdb4-461a-828b-79fe97c320bc" + ], + "Date": [ + "Tue, 14 Jul 2015 19:44:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1a44870d-ff13-4a98-84b8-be30f387a3c2" + ], + "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": [ + "4df44a6e-cdb4-461a-828b-79fe97c320bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194402Z:4df44a6e-cdb4-461a-828b-79fe97c320bc" + ], + "Date": [ + "Tue, 14 Jul 2015 19:44:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1a44870d-ff13-4a98-84b8-be30f387a3c2" + ], + "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": [ + "4df44a6e-cdb4-461a-828b-79fe97c320bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194402Z:4df44a6e-cdb4-461a-828b-79fe97c320bc" + ], + "Date": [ + "Tue, 14 Jul 2015 19:44:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1a44870d-ff13-4a98-84b8-be30f387a3c2" + ], + "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": [ + "4df44a6e-cdb4-461a-828b-79fe97c320bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194402Z:4df44a6e-cdb4-461a-828b-79fe97c320bc" + ], + "Date": [ + "Tue, 14 Jul 2015 19:44:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f2482449-025b-4591-8d9c-3fa1b34fb0df" + ], + "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": [ + "8f027eed-abaa-4fd8-a620-e4793bca42da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194433Z:8f027eed-abaa-4fd8-a620-e4793bca42da" + ], + "Date": [ + "Tue, 14 Jul 2015 19:44:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f2482449-025b-4591-8d9c-3fa1b34fb0df" + ], + "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": [ + "8f027eed-abaa-4fd8-a620-e4793bca42da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194433Z:8f027eed-abaa-4fd8-a620-e4793bca42da" + ], + "Date": [ + "Tue, 14 Jul 2015 19:44:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f2482449-025b-4591-8d9c-3fa1b34fb0df" + ], + "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": [ + "8f027eed-abaa-4fd8-a620-e4793bca42da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194433Z:8f027eed-abaa-4fd8-a620-e4793bca42da" + ], + "Date": [ + "Tue, 14 Jul 2015 19:44:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f2482449-025b-4591-8d9c-3fa1b34fb0df" + ], + "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": [ + "8f027eed-abaa-4fd8-a620-e4793bca42da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194433Z:8f027eed-abaa-4fd8-a620-e4793bca42da" + ], + "Date": [ + "Tue, 14 Jul 2015 19:44:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "632a8c1b-61e3-4eef-9872-e6341781d39f" + ], + "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": [ + "bbfdf87d-c396-470b-833c-91375b2b8ee0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194504Z:bbfdf87d-c396-470b-833c-91375b2b8ee0" + ], + "Date": [ + "Tue, 14 Jul 2015 19:45:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "632a8c1b-61e3-4eef-9872-e6341781d39f" + ], + "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": [ + "bbfdf87d-c396-470b-833c-91375b2b8ee0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194504Z:bbfdf87d-c396-470b-833c-91375b2b8ee0" + ], + "Date": [ + "Tue, 14 Jul 2015 19:45:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "632a8c1b-61e3-4eef-9872-e6341781d39f" + ], + "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": [ + "bbfdf87d-c396-470b-833c-91375b2b8ee0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194504Z:bbfdf87d-c396-470b-833c-91375b2b8ee0" + ], + "Date": [ + "Tue, 14 Jul 2015 19:45:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "632a8c1b-61e3-4eef-9872-e6341781d39f" + ], + "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": [ + "bbfdf87d-c396-470b-833c-91375b2b8ee0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194504Z:bbfdf87d-c396-470b-833c-91375b2b8ee0" + ], + "Date": [ + "Tue, 14 Jul 2015 19:45:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9a09fe50-b30a-4d80-9fed-d1669f924097" + ], + "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": [ + "1f06731c-6d12-4498-b804-8c4333fccfbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194535Z:1f06731c-6d12-4498-b804-8c4333fccfbc" + ], + "Date": [ + "Tue, 14 Jul 2015 19:45:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9a09fe50-b30a-4d80-9fed-d1669f924097" + ], + "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": [ + "1f06731c-6d12-4498-b804-8c4333fccfbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194535Z:1f06731c-6d12-4498-b804-8c4333fccfbc" + ], + "Date": [ + "Tue, 14 Jul 2015 19:45:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9a09fe50-b30a-4d80-9fed-d1669f924097" + ], + "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": [ + "1f06731c-6d12-4498-b804-8c4333fccfbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194535Z:1f06731c-6d12-4498-b804-8c4333fccfbc" + ], + "Date": [ + "Tue, 14 Jul 2015 19:45:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9a09fe50-b30a-4d80-9fed-d1669f924097" + ], + "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": [ + "1f06731c-6d12-4498-b804-8c4333fccfbc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194535Z:1f06731c-6d12-4498-b804-8c4333fccfbc" + ], + "Date": [ + "Tue, 14 Jul 2015 19:45:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "23241111-2c0c-4d6e-966f-0d6e813b7795" + ], + "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": [ + "078be91f-461b-4573-93eb-6f3e4b48b530" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194606Z:078be91f-461b-4573-93eb-6f3e4b48b530" + ], + "Date": [ + "Tue, 14 Jul 2015 19:46:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "23241111-2c0c-4d6e-966f-0d6e813b7795" + ], + "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": [ + "078be91f-461b-4573-93eb-6f3e4b48b530" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194606Z:078be91f-461b-4573-93eb-6f3e4b48b530" + ], + "Date": [ + "Tue, 14 Jul 2015 19:46:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "23241111-2c0c-4d6e-966f-0d6e813b7795" + ], + "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": [ + "078be91f-461b-4573-93eb-6f3e4b48b530" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194606Z:078be91f-461b-4573-93eb-6f3e4b48b530" + ], + "Date": [ + "Tue, 14 Jul 2015 19:46:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "23241111-2c0c-4d6e-966f-0d6e813b7795" + ], + "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": [ + "078be91f-461b-4573-93eb-6f3e4b48b530" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194606Z:078be91f-461b-4573-93eb-6f3e4b48b530" + ], + "Date": [ + "Tue, 14 Jul 2015 19:46:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f86b3a31-890a-4509-a071-5dcb3911dbc1" + ], + "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": [ + "6618e5b6-9e48-4f04-b1cb-c55a1f7b7c19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194637Z:6618e5b6-9e48-4f04-b1cb-c55a1f7b7c19" + ], + "Date": [ + "Tue, 14 Jul 2015 19:46:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f86b3a31-890a-4509-a071-5dcb3911dbc1" + ], + "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": [ + "6618e5b6-9e48-4f04-b1cb-c55a1f7b7c19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194637Z:6618e5b6-9e48-4f04-b1cb-c55a1f7b7c19" + ], + "Date": [ + "Tue, 14 Jul 2015 19:46:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f86b3a31-890a-4509-a071-5dcb3911dbc1" + ], + "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": [ + "6618e5b6-9e48-4f04-b1cb-c55a1f7b7c19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194637Z:6618e5b6-9e48-4f04-b1cb-c55a1f7b7c19" + ], + "Date": [ + "Tue, 14 Jul 2015 19:46:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f86b3a31-890a-4509-a071-5dcb3911dbc1" + ], + "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": [ + "6618e5b6-9e48-4f04-b1cb-c55a1f7b7c19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194637Z:6618e5b6-9e48-4f04-b1cb-c55a1f7b7c19" + ], + "Date": [ + "Tue, 14 Jul 2015 19:46:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "764b9d30-b560-45f3-bd32-3952de90ac8d" + ], + "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": [ + "7bf2ce89-d718-4ae0-8737-32ef63af8994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194708Z:7bf2ce89-d718-4ae0-8737-32ef63af8994" + ], + "Date": [ + "Tue, 14 Jul 2015 19:47:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "764b9d30-b560-45f3-bd32-3952de90ac8d" + ], + "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": [ + "7bf2ce89-d718-4ae0-8737-32ef63af8994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194708Z:7bf2ce89-d718-4ae0-8737-32ef63af8994" + ], + "Date": [ + "Tue, 14 Jul 2015 19:47:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "764b9d30-b560-45f3-bd32-3952de90ac8d" + ], + "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": [ + "7bf2ce89-d718-4ae0-8737-32ef63af8994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194708Z:7bf2ce89-d718-4ae0-8737-32ef63af8994" + ], + "Date": [ + "Tue, 14 Jul 2015 19:47:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "764b9d30-b560-45f3-bd32-3952de90ac8d" + ], + "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": [ + "7bf2ce89-d718-4ae0-8737-32ef63af8994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194708Z:7bf2ce89-d718-4ae0-8737-32ef63af8994" + ], + "Date": [ + "Tue, 14 Jul 2015 19:47:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "de1235c8-0b4c-4464-8c94-f206473b02ae" + ], + "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": [ + "b7f73a54-6f9c-460a-8346-47887fcb5d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194740Z:b7f73a54-6f9c-460a-8346-47887fcb5d31" + ], + "Date": [ + "Tue, 14 Jul 2015 19:47:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "de1235c8-0b4c-4464-8c94-f206473b02ae" + ], + "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": [ + "b7f73a54-6f9c-460a-8346-47887fcb5d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194740Z:b7f73a54-6f9c-460a-8346-47887fcb5d31" + ], + "Date": [ + "Tue, 14 Jul 2015 19:47:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "de1235c8-0b4c-4464-8c94-f206473b02ae" + ], + "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": [ + "b7f73a54-6f9c-460a-8346-47887fcb5d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194740Z:b7f73a54-6f9c-460a-8346-47887fcb5d31" + ], + "Date": [ + "Tue, 14 Jul 2015 19:47:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "de1235c8-0b4c-4464-8c94-f206473b02ae" + ], + "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": [ + "b7f73a54-6f9c-460a-8346-47887fcb5d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194740Z:b7f73a54-6f9c-460a-8346-47887fcb5d31" + ], + "Date": [ + "Tue, 14 Jul 2015 19:47:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\",\r\n \"endTime\": \"2015-07-14T12:48:07.07176-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a63db797-c4de-4189-8099-76dd2400d96b" + ], + "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": [ + "d09f7dae-cedf-4abb-902e-18878a3100fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194811Z:d09f7dae-cedf-4abb-902e-18878a3100fd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\",\r\n \"endTime\": \"2015-07-14T12:48:07.07176-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a63db797-c4de-4189-8099-76dd2400d96b" + ], + "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": [ + "d09f7dae-cedf-4abb-902e-18878a3100fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194811Z:d09f7dae-cedf-4abb-902e-18878a3100fd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\",\r\n \"endTime\": \"2015-07-14T12:48:07.07176-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a63db797-c4de-4189-8099-76dd2400d96b" + ], + "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": [ + "d09f7dae-cedf-4abb-902e-18878a3100fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194811Z:d09f7dae-cedf-4abb-902e-18878a3100fd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/4a178e6d-8a37-440b-9690-81c386d8d4cd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhMTc4ZTZkLThhMzctNDQwYi05NjkwLTgxYzM4NmQ4ZDRjZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4a178e6d-8a37-440b-9690-81c386d8d4cd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:37:16.3759327-07:00\",\r\n \"endTime\": \"2015-07-14T12:48:07.07176-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a63db797-c4de-4189-8099-76dd2400d96b" + ], + "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": [ + "d09f7dae-cedf-4abb-902e-18878a3100fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194811Z:d09f7dae-cedf-4abb-902e-18878a3100fd" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c5bdaf3a-001a-4cdf-aad6-0bce99a76e7e" + ], + "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": [ + "89d6d9db-0b17-4862-b440-ea7f9d52f3ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194812Z:89d6d9db-0b17-4862-b440-ea7f9d52f3ba" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c5bdaf3a-001a-4cdf-aad6-0bce99a76e7e" + ], + "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": [ + "89d6d9db-0b17-4862-b440-ea7f9d52f3ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194812Z:89d6d9db-0b17-4862-b440-ea7f9d52f3ba" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c5bdaf3a-001a-4cdf-aad6-0bce99a76e7e" + ], + "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": [ + "89d6d9db-0b17-4862-b440-ea7f9d52f3ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194812Z:89d6d9db-0b17-4862-b440-ea7f9d52f3ba" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c5bdaf3a-001a-4cdf-aad6-0bce99a76e7e" + ], + "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": [ + "89d6d9db-0b17-4862-b440-ea7f9d52f3ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194812Z:89d6d9db-0b17-4862-b440-ea7f9d52f3ba" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7b7c70f5-370c-4eb0-92b0-18446e0baacd" + ], + "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": [ + "7f2aaffe-68b6-496a-b6d8-cf2ce5f14473" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194812Z:7f2aaffe-68b6-496a-b6d8-cf2ce5f14473" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7b7c70f5-370c-4eb0-92b0-18446e0baacd" + ], + "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": [ + "7f2aaffe-68b6-496a-b6d8-cf2ce5f14473" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194812Z:7f2aaffe-68b6-496a-b6d8-cf2ce5f14473" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7b7c70f5-370c-4eb0-92b0-18446e0baacd" + ], + "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": [ + "7f2aaffe-68b6-496a-b6d8-cf2ce5f14473" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194812Z:7f2aaffe-68b6-496a-b6d8-cf2ce5f14473" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/availabilitySets/AS676\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7806.blob.core.windows.net/pslibtest9864/ospslibtest1380.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Network/networkInterfaces/azsmnet7804\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262\",\r\n \"name\": \"vm8262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7b7c70f5-370c-4eb0-92b0-18446e0baacd" + ], + "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": [ + "7f2aaffe-68b6-496a-b6d8-cf2ce5f14473" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194812Z:7f2aaffe-68b6-496a-b6d8-cf2ce5f14473" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/usages?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS91c2FnZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 1,\r\n \"limit\": 20,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "527a53b6-05ed-402a-9395-3db2d7cd0fa9" + ], + "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": [ + "3d6e1c78-75d9-4497-9fd9-5a9af76777ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194813Z:3d6e1c78-75d9-4497-9fd9-5a9af76777ee" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/usages?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS91c2FnZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 1,\r\n \"limit\": 20,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "527a53b6-05ed-402a-9395-3db2d7cd0fa9" + ], + "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": [ + "3d6e1c78-75d9-4497-9fd9-5a9af76777ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194813Z:3d6e1c78-75d9-4497-9fd9-5a9af76777ee" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/usages?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS91c2FnZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 1,\r\n \"limit\": 20,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "527a53b6-05ed-402a-9395-3db2d7cd0fa9" + ], + "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": [ + "3d6e1c78-75d9-4497-9fd9-5a9af76777ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194813Z:3d6e1c78-75d9-4497-9fd9-5a9af76777ee" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/usages?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS91c2FnZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 1,\r\n \"limit\": 20,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "527a53b6-05ed-402a-9395-3db2d7cd0fa9" + ], + "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": [ + "3d6e1c78-75d9-4497-9fd9-5a9af76777ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194813Z:3d6e1c78-75d9-4497-9fd9-5a9af76777ee" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1f9fa659-e727-45c2-94d2-dab0795273a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-correlation-request-id": [ + "6a90d066-0daf-4871-9ffc-5d72f4a609ea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194817Z:6a90d066-0daf-4871-9ffc-5d72f4a609ea" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:16 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1f9fa659-e727-45c2-94d2-dab0795273a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-correlation-request-id": [ + "6a90d066-0daf-4871-9ffc-5d72f4a609ea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194817Z:6a90d066-0daf-4871-9ffc-5d72f4a609ea" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:16 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1f9fa659-e727-45c2-94d2-dab0795273a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-correlation-request-id": [ + "6a90d066-0daf-4871-9ffc-5d72f4a609ea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194817Z:6a90d066-0daf-4871-9ffc-5d72f4a609ea" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:16 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1602/providers/Microsoft.Compute/virtualMachines/vm8262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTgyNjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1f9fa659-e727-45c2-94d2-dab0795273a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-correlation-request-id": [ + "6a90d066-0daf-4871-9ffc-5d72f4a609ea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194817Z:6a90d066-0daf-4871-9ffc-5d72f4a609ea" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:16 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6eac41aa-18c0-4f1d-a809-e8f71dd22803" + ], + "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": [ + "3edb53da-3add-4701-b695-30c36eff2619" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194848Z:3edb53da-3add-4701-b695-30c36eff2619" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6eac41aa-18c0-4f1d-a809-e8f71dd22803" + ], + "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": [ + "3edb53da-3add-4701-b695-30c36eff2619" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194848Z:3edb53da-3add-4701-b695-30c36eff2619" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6eac41aa-18c0-4f1d-a809-e8f71dd22803" + ], + "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": [ + "3edb53da-3add-4701-b695-30c36eff2619" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194848Z:3edb53da-3add-4701-b695-30c36eff2619" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6eac41aa-18c0-4f1d-a809-e8f71dd22803" + ], + "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": [ + "3edb53da-3add-4701-b695-30c36eff2619" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194848Z:3edb53da-3add-4701-b695-30c36eff2619" + ], + "Date": [ + "Tue, 14 Jul 2015 19:48:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "26c6b15c-d60e-4bd6-b9d4-3f905bc7f8be" + ], + "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": [ + "3bed9b5d-0274-4648-b06d-1eeb5152e98f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194919Z:3bed9b5d-0274-4648-b06d-1eeb5152e98f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:49:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "26c6b15c-d60e-4bd6-b9d4-3f905bc7f8be" + ], + "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": [ + "3bed9b5d-0274-4648-b06d-1eeb5152e98f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194919Z:3bed9b5d-0274-4648-b06d-1eeb5152e98f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:49:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "26c6b15c-d60e-4bd6-b9d4-3f905bc7f8be" + ], + "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": [ + "3bed9b5d-0274-4648-b06d-1eeb5152e98f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194919Z:3bed9b5d-0274-4648-b06d-1eeb5152e98f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:49:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "26c6b15c-d60e-4bd6-b9d4-3f905bc7f8be" + ], + "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": [ + "3bed9b5d-0274-4648-b06d-1eeb5152e98f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194919Z:3bed9b5d-0274-4648-b06d-1eeb5152e98f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:49:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "60961f4a-f035-4bad-b4ef-953cee465f71" + ], + "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": [ + "fa419d8d-8c36-419b-a411-4b28a443c86f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194950Z:fa419d8d-8c36-419b-a411-4b28a443c86f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:49:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "60961f4a-f035-4bad-b4ef-953cee465f71" + ], + "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": [ + "fa419d8d-8c36-419b-a411-4b28a443c86f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194950Z:fa419d8d-8c36-419b-a411-4b28a443c86f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:49:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "60961f4a-f035-4bad-b4ef-953cee465f71" + ], + "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": [ + "fa419d8d-8c36-419b-a411-4b28a443c86f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194950Z:fa419d8d-8c36-419b-a411-4b28a443c86f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:49:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "60961f4a-f035-4bad-b4ef-953cee465f71" + ], + "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": [ + "fa419d8d-8c36-419b-a411-4b28a443c86f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T194950Z:fa419d8d-8c36-419b-a411-4b28a443c86f" + ], + "Date": [ + "Tue, 14 Jul 2015 19:49:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cfab9b48-4b29-4949-8601-7cc845e82269" + ], + "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": [ + "60b9eacd-9d23-4ac6-bbb8-d45516d6a49a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195021Z:60b9eacd-9d23-4ac6-bbb8-d45516d6a49a" + ], + "Date": [ + "Tue, 14 Jul 2015 19:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cfab9b48-4b29-4949-8601-7cc845e82269" + ], + "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": [ + "60b9eacd-9d23-4ac6-bbb8-d45516d6a49a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195021Z:60b9eacd-9d23-4ac6-bbb8-d45516d6a49a" + ], + "Date": [ + "Tue, 14 Jul 2015 19:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cfab9b48-4b29-4949-8601-7cc845e82269" + ], + "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": [ + "60b9eacd-9d23-4ac6-bbb8-d45516d6a49a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195021Z:60b9eacd-9d23-4ac6-bbb8-d45516d6a49a" + ], + "Date": [ + "Tue, 14 Jul 2015 19:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cfab9b48-4b29-4949-8601-7cc845e82269" + ], + "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": [ + "60b9eacd-9d23-4ac6-bbb8-d45516d6a49a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195021Z:60b9eacd-9d23-4ac6-bbb8-d45516d6a49a" + ], + "Date": [ + "Tue, 14 Jul 2015 19:50:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\",\r\n \"endTime\": \"2015-07-14T12:50:26.979802-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2f60195a-59b5-4172-8e03-f39ecd39b8c6" + ], + "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": [ + "44319455-e044-4963-873c-46190acb2dfb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195052Z:44319455-e044-4963-873c-46190acb2dfb" + ], + "Date": [ + "Tue, 14 Jul 2015 19:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\",\r\n \"endTime\": \"2015-07-14T12:50:26.979802-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2f60195a-59b5-4172-8e03-f39ecd39b8c6" + ], + "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": [ + "44319455-e044-4963-873c-46190acb2dfb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195052Z:44319455-e044-4963-873c-46190acb2dfb" + ], + "Date": [ + "Tue, 14 Jul 2015 19:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\",\r\n \"endTime\": \"2015-07-14T12:50:26.979802-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2f60195a-59b5-4172-8e03-f39ecd39b8c6" + ], + "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": [ + "44319455-e044-4963-873c-46190acb2dfb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195052Z:44319455-e044-4963-873c-46190acb2dfb" + ], + "Date": [ + "Tue, 14 Jul 2015 19:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/1f9fa659-e727-45c2-94d2-dab0795273a5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmOWZhNjU5LWU3MjctNDVjMi05NGQyLWRhYjA3OTUyNzNhNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1f9fa659-e727-45c2-94d2-dab0795273a5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T12:48:14.3375454-07:00\",\r\n \"endTime\": \"2015-07-14T12:50:26.979802-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2f60195a-59b5-4172-8e03-f39ecd39b8c6" + ], + "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": [ + "44319455-e044-4963-873c-46190acb2dfb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195052Z:44319455-e044-4963-873c-46190acb2dfb" + ], + "Date": [ + "Tue, 14 Jul 2015 19:50:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-request-id": [ + "009e511d-59df-492e-b85e-071695e7adb1" + ], + "x-ms-correlation-request-id": [ + "009e511d-59df-492e-b85e-071695e7adb1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195101Z:009e511d-59df-492e-b85e-071695e7adb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-request-id": [ + "009e511d-59df-492e-b85e-071695e7adb1" + ], + "x-ms-correlation-request-id": [ + "009e511d-59df-492e-b85e-071695e7adb1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195101Z:009e511d-59df-492e-b85e-071695e7adb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-request-id": [ + "009e511d-59df-492e-b85e-071695e7adb1" + ], + "x-ms-correlation-request-id": [ + "009e511d-59df-492e-b85e-071695e7adb1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195101Z:009e511d-59df-492e-b85e-071695e7adb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-request-id": [ + "009e511d-59df-492e-b85e-071695e7adb1" + ], + "x-ms-correlation-request-id": [ + "009e511d-59df-492e-b85e-071695e7adb1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195101Z:009e511d-59df-492e-b85e-071695e7adb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14919" + ], + "x-ms-request-id": [ + "b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "x-ms-correlation-request-id": [ + "b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195117Z:b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14919" + ], + "x-ms-request-id": [ + "b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "x-ms-correlation-request-id": [ + "b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195117Z:b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14919" + ], + "x-ms-request-id": [ + "b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "x-ms-correlation-request-id": [ + "b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195117Z:b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14919" + ], + "x-ms-request-id": [ + "b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "x-ms-correlation-request-id": [ + "b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195117Z:b8afdabf-4bf1-46bf-a518-2b18823de8b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14918" + ], + "x-ms-request-id": [ + "dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "x-ms-correlation-request-id": [ + "dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195133Z:dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14918" + ], + "x-ms-request-id": [ + "dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "x-ms-correlation-request-id": [ + "dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195133Z:dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14918" + ], + "x-ms-request-id": [ + "dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "x-ms-correlation-request-id": [ + "dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195133Z:dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14918" + ], + "x-ms-request-id": [ + "dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "x-ms-correlation-request-id": [ + "dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195133Z:dd7d2e3e-2916-46d9-b35c-71826b8456a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "011121d6-162d-4477-9021-7a1cf51c0299" + ], + "x-ms-correlation-request-id": [ + "011121d6-162d-4477-9021-7a1cf51c0299" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195148Z:011121d6-162d-4477-9021-7a1cf51c0299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "011121d6-162d-4477-9021-7a1cf51c0299" + ], + "x-ms-correlation-request-id": [ + "011121d6-162d-4477-9021-7a1cf51c0299" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195148Z:011121d6-162d-4477-9021-7a1cf51c0299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "011121d6-162d-4477-9021-7a1cf51c0299" + ], + "x-ms-correlation-request-id": [ + "011121d6-162d-4477-9021-7a1cf51c0299" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195148Z:011121d6-162d-4477-9021-7a1cf51c0299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "011121d6-162d-4477-9021-7a1cf51c0299" + ], + "x-ms-correlation-request-id": [ + "011121d6-162d-4477-9021-7a1cf51c0299" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195148Z:011121d6-162d-4477-9021-7a1cf51c0299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:51:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "cb96389a-8e50-4888-b6f8-99f974485884" + ], + "x-ms-correlation-request-id": [ + "cb96389a-8e50-4888-b6f8-99f974485884" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195204Z:cb96389a-8e50-4888-b6f8-99f974485884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "cb96389a-8e50-4888-b6f8-99f974485884" + ], + "x-ms-correlation-request-id": [ + "cb96389a-8e50-4888-b6f8-99f974485884" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195204Z:cb96389a-8e50-4888-b6f8-99f974485884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "cb96389a-8e50-4888-b6f8-99f974485884" + ], + "x-ms-correlation-request-id": [ + "cb96389a-8e50-4888-b6f8-99f974485884" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195204Z:cb96389a-8e50-4888-b6f8-99f974485884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "cb96389a-8e50-4888-b6f8-99f974485884" + ], + "x-ms-correlation-request-id": [ + "cb96389a-8e50-4888-b6f8-99f974485884" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195204Z:cb96389a-8e50-4888-b6f8-99f974485884" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "x-ms-correlation-request-id": [ + "07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195219Z:07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "x-ms-correlation-request-id": [ + "07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195219Z:07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "x-ms-correlation-request-id": [ + "07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195219Z:07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "x-ms-correlation-request-id": [ + "07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195219Z:07851ceb-8e03-4b21-b359-fe5421048e1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "x-ms-correlation-request-id": [ + "203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195235Z:203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "x-ms-correlation-request-id": [ + "203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195235Z:203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "x-ms-correlation-request-id": [ + "203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195235Z:203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "x-ms-correlation-request-id": [ + "203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T195235Z:203a4f0e-9cd4-429a-b093-f7006cb223cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 19:52:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"608bc37e-d47f-47fa-8a18-6504948d019a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:53:50.0936137-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1323,51 +12353,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "59ff0b19-7233-478d-bb21-19f8bcd747e6" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14913" + ], + "x-ms-request-id": [ + "42b82a49-4550-4053-90c2-3e83358639a4" ], "x-ms-correlation-request-id": [ - "b2d0a9e8-17cf-4839-b56f-86c183df9f47" + "42b82a49-4550-4053-90c2-3e83358639a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175423Z:b2d0a9e8-17cf-4839-b56f-86c183df9f47" + "WESTUS:20150714T195250Z:42b82a49-4550-4053-90c2-3e83358639a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:54:22 GMT" + "Tue, 14 Jul 2015 19:52:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYwOGJjMzdlLWQ0N2YtNDdmYS04YTE4LTY1MDQ5NDhkMDE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"608bc37e-d47f-47fa-8a18-6504948d019a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:53:50.0936137-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1375,51 +12404,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "85dd7cc6-8606-4e31-acb4-5d76c77a61d4" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "14913" + ], + "x-ms-request-id": [ + "42b82a49-4550-4053-90c2-3e83358639a4" ], "x-ms-correlation-request-id": [ - "3253c55b-34b9-4ab5-8bc6-029ff8a58cd7" + "42b82a49-4550-4053-90c2-3e83358639a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175454Z:3253c55b-34b9-4ab5-8bc6-029ff8a58cd7" + "WESTUS:20150714T195250Z:42b82a49-4550-4053-90c2-3e83358639a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:54:53 GMT" + "Tue, 14 Jul 2015 19:52:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYwOGJjMzdlLWQ0N2YtNDdmYS04YTE4LTY1MDQ5NDhkMDE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"608bc37e-d47f-47fa-8a18-6504948d019a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:53:50.0936137-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1427,51 +12455,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "29eae913-d0f2-4400-8cf3-525de067c8b8" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14913" + ], + "x-ms-request-id": [ + "42b82a49-4550-4053-90c2-3e83358639a4" ], "x-ms-correlation-request-id": [ - "136fae7e-860d-4aeb-8987-815c09f6b9df" + "42b82a49-4550-4053-90c2-3e83358639a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175524Z:136fae7e-860d-4aeb-8987-815c09f6b9df" + "WESTUS:20150714T195250Z:42b82a49-4550-4053-90c2-3e83358639a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:55:24 GMT" + "Tue, 14 Jul 2015 19:52:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYwOGJjMzdlLWQ0N2YtNDdmYS04YTE4LTY1MDQ5NDhkMDE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"608bc37e-d47f-47fa-8a18-6504948d019a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:53:50.0936137-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1479,51 +12506,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f5d2c830-2697-4459-a6ad-e062c733a08b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14913" + ], + "x-ms-request-id": [ + "42b82a49-4550-4053-90c2-3e83358639a4" ], "x-ms-correlation-request-id": [ - "67933c77-90ef-41c3-9ebb-b742c8533c90" + "42b82a49-4550-4053-90c2-3e83358639a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175555Z:67933c77-90ef-41c3-9ebb-b742c8533c90" + "WESTUS:20150714T195250Z:42b82a49-4550-4053-90c2-3e83358639a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:55:55 GMT" + "Tue, 14 Jul 2015 19:52:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYwOGJjMzdlLWQ0N2YtNDdmYS04YTE4LTY1MDQ5NDhkMDE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"608bc37e-d47f-47fa-8a18-6504948d019a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:53:50.0936137-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1531,51 +12557,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "9b0f10bf-db85-4c3e-bfa4-0fe2d8d1f9bb" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14912" + ], + "x-ms-request-id": [ + "589c2d4e-7140-4802-b955-c4dc0411e716" ], "x-ms-correlation-request-id": [ - "69d37a01-69fe-4005-b0b4-1bd3f11819af" + "589c2d4e-7140-4802-b955-c4dc0411e716" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175626Z:69d37a01-69fe-4005-b0b4-1bd3f11819af" + "WESTUS:20150714T195306Z:589c2d4e-7140-4802-b955-c4dc0411e716" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:56:25 GMT" + "Tue, 14 Jul 2015 19:53:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYwOGJjMzdlLWQ0N2YtNDdmYS04YTE4LTY1MDQ5NDhkMDE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"608bc37e-d47f-47fa-8a18-6504948d019a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:53:50.0936137-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1583,51 +12608,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f9156080-129d-4a3f-8f4d-401b1f009a26" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14912" + ], + "x-ms-request-id": [ + "589c2d4e-7140-4802-b955-c4dc0411e716" ], "x-ms-correlation-request-id": [ - "8928470a-8a47-4e25-a27f-d19aad51ad85" + "589c2d4e-7140-4802-b955-c4dc0411e716" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175656Z:8928470a-8a47-4e25-a27f-d19aad51ad85" + "WESTUS:20150714T195306Z:589c2d4e-7140-4802-b955-c4dc0411e716" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:56:56 GMT" + "Tue, 14 Jul 2015 19:53:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/608bc37e-d47f-47fa-8a18-6504948d019a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYwOGJjMzdlLWQ0N2YtNDdmYS04YTE4LTY1MDQ5NDhkMDE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"608bc37e-d47f-47fa-8a18-6504948d019a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T10:53:50.0936137-07:00\",\r\n \"endTime\": \"2015-06-16T10:57:02.610433-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "190" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1635,38 +12659,40 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f2fdc102-a3c2-46ae-bcbf-1da8ca9271bf" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14912" + ], + "x-ms-request-id": [ + "589c2d4e-7140-4802-b955-c4dc0411e716" ], "x-ms-correlation-request-id": [ - "8802ad94-5f58-4a96-b4c6-b231c963bfda" + "589c2d4e-7140-4802-b955-c4dc0411e716" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175727Z:8802ad94-5f58-4a96-b4c6-b231c963bfda" + "WESTUS:20150714T195306Z:589c2d4e-7140-4802-b955-c4dc0411e716" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:57:26 GMT" + "Tue, 14 Jul 2015 19:53:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest7894?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDc4OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -1687,17 +12713,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" ], "x-ms-request-id": [ - "51fe6c8f-2370-406a-ac40-3a2b3f3119a6" + "589c2d4e-7140-4802-b955-c4dc0411e716" ], "x-ms-correlation-request-id": [ - "51fe6c8f-2370-406a-ac40-3a2b3f3119a6" + "589c2d4e-7140-4802-b955-c4dc0411e716" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175731Z:51fe6c8f-2370-406a-ac40-3a2b3f3119a6" + "WESTUS:20150714T195306Z:589c2d4e-7140-4802-b955-c4dc0411e716" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1706,23 +12732,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:57:30 GMT" + "Tue, 14 Jul 2015 19:53:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzT0RrMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1742,16 +12765,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14911" ], "x-ms-request-id": [ - "03d42a2a-f88b-4ef8-8d7f-47fe4b6f7f4e" + "4cc74851-a962-4e87-b698-986023781837" ], "x-ms-correlation-request-id": [ - "03d42a2a-f88b-4ef8-8d7f-47fe4b6f7f4e" + "4cc74851-a962-4e87-b698-986023781837" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175732Z:03d42a2a-f88b-4ef8-8d7f-47fe4b6f7f4e" + "WESTUS:20150714T195321Z:4cc74851-a962-4e87-b698-986023781837" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1760,23 +12783,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:57:31 GMT" + "Tue, 14 Jul 2015 19:53:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzT0RrMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1796,16 +12816,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14911" ], "x-ms-request-id": [ - "c7d12109-81c5-4e7a-a63b-59a5373ddb1f" + "4cc74851-a962-4e87-b698-986023781837" ], "x-ms-correlation-request-id": [ - "c7d12109-81c5-4e7a-a63b-59a5373ddb1f" + "4cc74851-a962-4e87-b698-986023781837" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175747Z:c7d12109-81c5-4e7a-a63b-59a5373ddb1f" + "WESTUS:20150714T195321Z:4cc74851-a962-4e87-b698-986023781837" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1814,23 +12834,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:57:47 GMT" + "Tue, 14 Jul 2015 19:53:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzT0RrMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1850,16 +12867,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "14911" ], "x-ms-request-id": [ - "5681635a-dfc9-4732-8302-58f7afdb9cdd" + "4cc74851-a962-4e87-b698-986023781837" ], "x-ms-correlation-request-id": [ - "5681635a-dfc9-4732-8302-58f7afdb9cdd" + "4cc74851-a962-4e87-b698-986023781837" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175803Z:5681635a-dfc9-4732-8302-58f7afdb9cdd" + "WESTUS:20150714T195321Z:4cc74851-a962-4e87-b698-986023781837" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1868,23 +12885,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:58:02 GMT" + "Tue, 14 Jul 2015 19:53:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzT0RrMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1904,16 +12918,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "14911" ], "x-ms-request-id": [ - "73613c45-246d-4b4e-8d3b-0081672e9a0b" + "4cc74851-a962-4e87-b698-986023781837" ], "x-ms-correlation-request-id": [ - "73613c45-246d-4b4e-8d3b-0081672e9a0b" + "4cc74851-a962-4e87-b698-986023781837" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175818Z:73613c45-246d-4b4e-8d3b-0081672e9a0b" + "WESTUS:20150714T195321Z:4cc74851-a962-4e87-b698-986023781837" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1922,23 +12936,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:58:17 GMT" + "Tue, 14 Jul 2015 19:53:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzT0RrMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1954,20 +12965,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14910" ], "x-ms-request-id": [ - "6ac350f4-b171-4cd9-a892-193e2f56a829" + "e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "x-ms-correlation-request-id": [ - "6ac350f4-b171-4cd9-a892-193e2f56a829" + "e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175834Z:6ac350f4-b171-4cd9-a892-193e2f56a829" + "WESTUS:20150714T195337Z:e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1976,23 +12984,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:58:33 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 19:53:36 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzT0RrMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2008,20 +13010,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14910" ], "x-ms-request-id": [ - "d4817d48-b187-485e-b45e-92cf22967327" + "e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "x-ms-correlation-request-id": [ - "d4817d48-b187-485e-b45e-92cf22967327" + "e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175849Z:d4817d48-b187-485e-b45e-92cf22967327" + "WESTUS:20150714T195337Z:e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2030,23 +13029,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:58:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 19:53:36 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzT0RrMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2062,20 +13055,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14910" ], "x-ms-request-id": [ - "941c10ed-3f26-41f6-a09f-4a8d947e4558" + "e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "x-ms-correlation-request-id": [ - "941c10ed-3f26-41f6-a09f-4a8d947e4558" + "e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175904Z:941c10ed-3f26-41f6-a09f-4a8d947e4558" + "WESTUS:20150714T195337Z:e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2084,23 +13074,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:59:04 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 19:53:36 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3ODk0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzT0RrMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNjAyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TmpBeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2117,16 +13101,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14910" ], "x-ms-request-id": [ - "070dec1f-62bf-4c18-b28f-795d3f167069" + "e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "x-ms-correlation-request-id": [ - "070dec1f-62bf-4c18-b28f-795d3f167069" + "e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175920Z:070dec1f-62bf-4c18-b28f-795d3f167069" + "WESTUS:20150714T195337Z:e1cef9f7-d3f5-4b78-81c8-2446344698b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2135,7 +13119,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:59:20 GMT" + "Tue, 14 Jul 2015 19:53:36 GMT" ] }, "StatusCode": 200 @@ -2143,30 +13127,31 @@ ], "Names": { "TestListUsages": [ - "pslibtest7894", - "pslibtest2382", - "as1988" + "pslibtest1602", + "pslibtest7806", + "as676" ], "CreatePublicIP": [ - "azsmnet1248", - "azsmnet1862" + "azsmnet7480", + "azsmnet8021" ], "CreateVNET": [ - "azsmnet4997", - "azsmnet708" + "azsmnet7880", + "azsmnet1615" ], "CreateNIC": [ - "azsmnet7644", - "azsmnet6116" + "azsmnet7804", + "azsmnet2695" ], "CreateDefaultVMInput": [ - "pslibtest3494", - "pslibtest7255", - "pslibtest4931", - "vm1477" + "pslibtest9864", + "pslibtest5647", + "pslibtest1380", + "vm8262", + "Microsoft.Compute/virtualMachines6290" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json index 38fcbf1938e65..769cec14f2d9a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "480a7aba-2360-4696-b430-90d837c2890d" + "0ce4c302-70f7-485d-a7fd-f379fb5fa9aa" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14985" ], "x-ms-correlation-request-id": [ - "defd5ad0-020b-4120-88ad-2ce8fcd94871" + "5e8df9a5-3a3c-4032-948c-841919a96e78" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180009Z:defd5ad0-020b-4120-88ad-2ce8fcd94871" + "WESTUS:20150714T202642Z:5e8df9a5-3a3c-4032-948c-841919a96e78" ], "Date": [ - "Tue, 16 Jun 2015 18:00:09 GMT" + "Tue, 14 Jul 2015 20:26:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest2033?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDIwMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033\",\r\n \"name\": \"pslibtest2033\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,107 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-request-id": [ - "aa9699ff-cd6f-4923-9331-8a4777e34ec3" - ], - "x-ms-correlation-request-id": [ - "aa9699ff-cd6f-4923-9331-8a4777e34ec3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T180011Z:aa9699ff-cd6f-4923-9331-8a4777e34ec3" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Jun 2015 18:00:11 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest2033?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDIwMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033\",\r\n \"name\": \"pslibtest2033\",\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" + "x-ms-request-id": [ + "0ce4c302-70f7-485d-a7fd-f379fb5fa9aa" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "671a5dae-365d-4453-91c6-6e475927701d" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" ], "x-ms-correlation-request-id": [ - "671a5dae-365d-4453-91c6-6e475927701d" + "5e8df9a5-3a3c-4032-948c-841919a96e78" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180054Z:671a5dae-365d-4453-91c6-6e475927701d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150714T202642Z:5e8df9a5-3a3c-4032-948c-841919a96e78" ], "Date": [ - "Tue, 16 Jun 2015 18:00:54 GMT" + "Tue, 14 Jul 2015 20:26:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Storage/storageAccounts/pslibtest6845?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q2ODQ1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "fda10805-781d-4352-bc33-1cca25c08a46" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +128,48 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0ed5158-6029-4296-ba37-9da3cd3a5941" + "0ce4c302-70f7-485d-a7fd-f379fb5fa9aa" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/b0ed5158-6029-4296-ba37-9da3cd3a5941?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" ], "x-ms-correlation-request-id": [ - "4e814d50-c1f9-4a5f-b013-2a405f0f1461" + "5e8df9a5-3a3c-4032-948c-841919a96e78" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180017Z:4e814d50-c1f9-4a5f-b013-2a405f0f1461" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T202642Z:5e8df9a5-3a3c-4032-948c-841919a96e78" ], "Date": [ - "Tue, 16 Jun 2015 18:00:17 GMT" + "Tue, 14 Jul 2015 20:26:42 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/b0ed5158-6029-4296-ba37-9da3cd3a5941?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2IwZWQ1MTU4LTYwMjktNDI5Ni1iYTM3LTlkYTNjZDNhNTk0MT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "59186e55-d972-426c-aa2c-5b67fe3d3ad5" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f44fc563-60f0-4188-ae3c-d623795a2bd5" + "0ce4c302-70f7-485d-a7fd-f379fb5fa9aa" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/b0ed5158-6029-4296-ba37-9da3cd3a5941?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14985" ], "x-ms-correlation-request-id": [ - "b7206e6e-795c-4ecf-b3cd-1ce084709d94" + "5e8df9a5-3a3c-4032-948c-841919a96e78" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180017Z:b7206e6e-795c-4ecf-b3cd-1ce084709d94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T202642Z:5e8df9a5-3a3c-4032-948c-841919a96e78" ], "Date": [ - "Tue, 16 Jun 2015 18:00:17 GMT" + "Tue, 14 Jul 2015 20:26:42 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/b0ed5158-6029-4296-ba37-9da3cd3a5941?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2IwZWQ1MTU4LTYwMjktNDI5Ni1iYTM3LTlkYTNjZDNhNTk0MT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "d6edf2e5-96ac-4027-a0e0-90e8d857c6b0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562\",\r\n \"name\": \"pslibtest3562\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +238,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "2cf3d57b-606a-4ee1-a910-2d9a2d32d222" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "x-ms-request-id": [ + "4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], "x-ms-correlation-request-id": [ - "3f520e76-4030-450d-9738-830b33b2770b" + "4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180043Z:3f520e76-4030-450d-9738-830b33b2770b" + "WESTUS:20150714T202644Z:4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 18:00:42 GMT" + "Tue, 14 Jul 2015 20:26:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "af75aedd-1f68-47a7-b1cd-bb6ecc54bff0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Storage/storageAccounts/pslibtest6845\",\r\n \"name\": \"pslibtest6845\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest6845.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest6845.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest6845.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T18:00:13.3300211Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562\",\r\n \"name\": \"pslibtest3562\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "5a51ec7d-b4c9-451f-bd83-c8f6dbe00ffc" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "x-ms-request-id": [ + "4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], "x-ms-correlation-request-id": [ - "b0132c8e-7518-4418-81f6-d0e2d10863c9" + "4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180053Z:b0132c8e-7518-4418-81f6-d0e2d10863c9" + "WESTUS:20150714T202644Z:4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 18:00:53 GMT" + "Tue, 14 Jul 2015 20:26:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/publicIPAddresses/azsmnet4493/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NDkzLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6604\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4493\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/publicIPAddresses/azsmnet4493\",\r\n \"etag\": \"W/\\\"59f4d582-8c63-47a0-aa13-47aea453d175\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6604\",\r\n \"fqdn\": \"azsmnet6604.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562\",\r\n \"name\": \"pslibtest3562\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "579" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +346,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "dd8e55bf-401d-4718-aefb-ed3f4a6b372b" + "4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/dd8e55bf-401d-4718-aefb-ed3f4a6b372b?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202644Z:4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +364,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" - ], - "x-ms-correlation-request-id": [ - "b3321771-f8be-4871-bed2-af42cc80a332" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T180101Z:b3321771-f8be-4871-bed2-af42cc80a332" - ], "Date": [ - "Tue, 16 Jun 2015 18:01:01 GMT" + "Tue, 14 Jul 2015 20:26:44 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/dd8e55bf-401d-4718-aefb-ed3f4a6b372b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkOGU1NWJmLTQwMWQtNDcxOC1hZWZiLWVkM2Y0YTZiMzcyYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562\",\r\n \"name\": \"pslibtest3562\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +400,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], "x-ms-request-id": [ - "efd5519c-f895-4e1e-8c8f-71131e3f4629" + "4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" + ], + "x-ms-correlation-request-id": [ + "4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202644Z:4fd0fbbf-a46f-4312-bc6a-0961187d6f8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +418,32 @@ "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": [ - "8a86a08b-54f6-4282-877a-a91ffea5cb4a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T180102Z:8a86a08b-54f6-4282-877a-a91ffea5cb4a" - ], "Date": [ - "Tue, 16 Jun 2015 18:01:02 GMT" + "Tue, 14 Jul 2015 20:26:44 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/publicIPAddresses/azsmnet4493/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NDkzLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4493\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/publicIPAddresses/azsmnet4493\",\r\n \"etag\": \"W/\\\"f2a4c9a6-586c-4e27-b820-3f1b5e049b65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6604\",\r\n \"fqdn\": \"azsmnet6604.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562\",\r\n \"name\": \"pslibtest3562\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,8 +454,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "acf50835-b6bd-4129-86ed-b05ff3db37e7" + "da88692f-b2b1-4cf9-a463-2ffa1d583e36" + ], + "x-ms-correlation-request-id": [ + "da88692f-b2b1-4cf9-a463-2ffa1d583e36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202728Z:da88692f-b2b1-4cf9-a463-2ffa1d583e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,48 +472,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"f2a4c9a6-586c-4e27-b820-3f1b5e049b65\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "804f3cf0-3439-4bfe-896f-1e2dbb982232" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T180102Z:804f3cf0-3439-4bfe-896f-1e2dbb982232" - ], "Date": [ - "Tue, 16 Jun 2015 18:01:02 GMT" + "Tue, 14 Jul 2015 20:27:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/virtualnetworks/azsmnet3160?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzE2MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet9771\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3160\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/virtualNetworks/azsmnet3160\",\r\n \"etag\": \"W/\\\"9f6aab17-0752-40a5-9b71-5772adab7ddb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9771\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/virtualNetworks/azsmnet3160/subnets/azsmnet9771\",\r\n \"etag\": \"W/\\\"9f6aab17-0752-40a5-9b71-5772adab7ddb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562\",\r\n \"name\": \"pslibtest3562\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "959" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,14 +508,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "ca95ae42-c2ae-4e63-8f1b-8a43b922430e" + "da88692f-b2b1-4cf9-a463-2ffa1d583e36" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/ca95ae42-c2ae-4e63-8f1b-8a43b922430e?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "da88692f-b2b1-4cf9-a463-2ffa1d583e36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202728Z:da88692f-b2b1-4cf9-a463-2ffa1d583e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,42 +526,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" - ], - "x-ms-correlation-request-id": [ - "cbddcd59-20c9-425d-af23-70319a34a88c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T180106Z:cbddcd59-20c9-425d-af23-70319a34a88c" - ], "Date": [ - "Tue, 16 Jun 2015 18:01:05 GMT" + "Tue, 14 Jul 2015 20:27:28 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/ca95ae42-c2ae-4e63-8f1b-8a43b922430e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NhOTVhZTQyLWMyYWUtNGU2My04ZjFiLThhNDNiOTIyNDMwZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562\",\r\n \"name\": \"pslibtest3562\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,8 +562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "bc75be88-6544-4bad-aa59-51fd2c951242" + "da88692f-b2b1-4cf9-a463-2ffa1d583e36" + ], + "x-ms-correlation-request-id": [ + "da88692f-b2b1-4cf9-a463-2ffa1d583e36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202728Z:da88692f-b2b1-4cf9-a463-2ffa1d583e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,39 +580,32 @@ "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": [ - "d4dc0507-f845-44ca-a956-3edc19238bc3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T180106Z:d4dc0507-f845-44ca-a956-3edc19238bc3" - ], "Date": [ - "Tue, 16 Jun 2015 18:01:06 GMT" + "Tue, 14 Jul 2015 20:27:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/virtualnetworks/azsmnet3160/subnets/azsmnet9771?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzE2MC9zdWJuZXRzL2F6c21uZXQ5NzcxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9771\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/virtualNetworks/azsmnet3160/subnets/azsmnet9771\",\r\n \"etag\": \"W/\\\"167b4eb0-9ec0-4b38-b9f4-2ed394c97c7c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562\",\r\n \"name\": \"pslibtest3562\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "afb2b299-f50f-4e2c-aa89-0ae47087823c" + "da88692f-b2b1-4cf9-a463-2ffa1d583e36" + ], + "x-ms-correlation-request-id": [ + "da88692f-b2b1-4cf9-a463-2ffa1d583e36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202728Z:da88692f-b2b1-4cf9-a463-2ffa1d583e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,48 +634,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"167b4eb0-9ec0-4b38-b9f4-2ed394c97c7c\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "c8b4acc8-ef62-4326-ae87-23e8f9c7a9de" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T180107Z:c8b4acc8-ef62-4326-ae87-23e8f9c7a9de" - ], "Date": [ - "Tue, 16 Jun 2015 18:01:06 GMT" + "Tue, 14 Jul 2015 20:27:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NzMxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0MzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/virtualNetworks/azsmnet3160/subnets/azsmnet9771\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/publicIPAddresses/azsmnet4493\"\r\n }\r\n },\r\n \"name\": \"azsmnet9549\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9731\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "716" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9731\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731\",\r\n \"etag\": \"W/\\\"fbaac2f1-ffdb-4163-98b5-0027e2f7f600\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9549\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731/ipConfigurations/azsmnet9549\",\r\n \"etag\": \"W/\\\"fbaac2f1-ffdb-4163-98b5-0027e2f7f600\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/publicIPAddresses/azsmnet4493\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/virtualNetworks/azsmnet3160/subnets/azsmnet9771\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1324" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -776,54 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "a6c76423-d89c-4a2c-9055-c866bf40d1c4" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/a6c76423-d89c-4a2c-9055-c866bf40d1c4?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "015fd9f2-3baa-4103-a88c-8851b08f9bfd" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/015fd9f2-3baa-4103-a88c-8851b08f9bfd?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1198" ], "x-ms-correlation-request-id": [ - "c68a40a0-6b9b-4702-9a59-26f2718f0b54" + "5975307e-106f-4dc0-aabf-af33176075f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180111Z:c68a40a0-6b9b-4702-9a59-26f2718f0b54" + "WESTUS:20150714T202651Z:5975307e-106f-4dc0-aabf-af33176075f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:10 GMT" + "Tue, 14 Jul 2015 20:26:50 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/a6c76423-d89c-4a2c-9055-c866bf40d1c4?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E2Yzc2NDIzLWQ4OWMtNGEyYy05MDU1LWM4NjZiZjQwZDFjND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0MzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,48 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "b98f343a-b058-40b1-9948-41128f6d6b50" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "015fd9f2-3baa-4103-a88c-8851b08f9bfd" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/015fd9f2-3baa-4103-a88c-8851b08f9bfd?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "79937e16-ec55-4457-8a03-c4d8a5dbee6a" + "5975307e-106f-4dc0-aabf-af33176075f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180112Z:79937e16-ec55-4457-8a03-c4d8a5dbee6a" + "WESTUS:20150714T202651Z:5975307e-106f-4dc0-aabf-af33176075f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:11 GMT" + "Tue, 14 Jul 2015 20:26:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NzMxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0MzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9731\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731\",\r\n \"etag\": \"W/\\\"fbaac2f1-ffdb-4163-98b5-0027e2f7f600\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9549\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731/ipConfigurations/azsmnet9549\",\r\n \"etag\": \"W/\\\"fbaac2f1-ffdb-4163-98b5-0027e2f7f600\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/publicIPAddresses/azsmnet4493\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/virtualNetworks/azsmnet3160/subnets/azsmnet9771\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1324" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,57 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "756c938e-b609-4cba-ad52-5923e3b4fa9f" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "015fd9f2-3baa-4103-a88c-8851b08f9bfd" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"fbaac2f1-ffdb-4163-98b5-0027e2f7f600\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/015fd9f2-3baa-4103-a88c-8851b08f9bfd?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "4134c2c4-cbb7-48c9-ab4e-e6e2e9b7d584" + "5975307e-106f-4dc0-aabf-af33176075f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180112Z:4134c2c4-cbb7-48c9-ab4e-e6e2e9b7d584" + "WESTUS:20150714T202651Z:5975307e-106f-4dc0-aabf-af33176075f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:11 GMT" + "Tue, 14 Jul 2015 20:26:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/availabilitySets/as1254?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxMjU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0MzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as1254\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "133" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/availabilitySets/as1254\",\r\n \"name\": \"as1254\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "403" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -947,54 +862,54 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "25" ], "x-ms-request-id": [ - "00727fd3-61a8-4eca-a361-174d590e2ce4" + "015fd9f2-3baa-4103-a88c-8851b08f9bfd" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/015fd9f2-3baa-4103-a88c-8851b08f9bfd?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1198" ], "x-ms-correlation-request-id": [ - "88c10a8f-1340-4ba8-b953-4e2f5f0a4cdb" + "5975307e-106f-4dc0-aabf-af33176075f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180116Z:88c10a8f-1340-4ba8-b953-4e2f5f0a4cdb" + "WESTUS:20150714T202651Z:5975307e-106f-4dc0-aabf-af33176075f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:15 GMT" + "Tue, 14 Jul 2015 20:26:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzNzk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3531/ospslibtest8967.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk1pslibtest8024.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk2pslibtest1971.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest2033\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/availabilitySets/as1254\"\r\n },\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"test\",\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"test\",\r\n \"typeHandlerVersion\": \"test\",\r\n \"status\": {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vm1379\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/015fd9f2-3baa-4103-a88c-8851b08f9bfd?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAxNWZkOWYyLTNiYWEtNDEwMy1hODhjLTg4NTFiMDhmOWJmZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "2940" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/availabilitySets/AS1254\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3531/ospslibtest8967.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk1pslibtest8024.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk2pslibtest1971.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379\",\r\n \"name\": \"vm1379\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2209" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,14 +920,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/4f57edc3-027e-4e78-bb80-f8a81afd8a5a?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "4f57edc3-027e-4e78-bb80-f8a81afd8a5a" + "13bc43ae-b572-4c50-95fa-6645d26673eb" ], "Cache-Control": [ "no-cache" @@ -1021,41 +930,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" ], "x-ms-correlation-request-id": [ - "63067f33-1406-4f52-a957-d5a582f2cd0a" + "b5b926f0-a78c-4fde-9928-8a22432426fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180120Z:63067f33-1406-4f52-a957-d5a582f2cd0a" + "WESTUS:20150714T202717Z:b5b926f0-a78c-4fde-9928-8a22432426fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:19 GMT" + "Tue, 14 Jul 2015 20:27:16 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzNzk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3531/ospslibtest8967.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk1pslibtest8024.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk2pslibtest1971.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/availabilitySets/AS1254\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-06-16T11:01:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T11:01:19.9245854-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T11:01:19.7057946-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T11:01:19.6589761-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379\",\r\n \"name\": \"vm1379\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/015fd9f2-3baa-4103-a88c-8851b08f9bfd?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAxNWZkOWYyLTNiYWEtNDEwMy1hODhjLTg4NTFiMDhmOWJmZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "3836" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/availabilitySets/AS1254\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3531/ospslibtest8967.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk1pslibtest8024.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk2pslibtest1971.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379\",\r\n \"name\": \"vm1379\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2209" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1066,14 +972,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "2db3e089-2306-4314-bd76-ac7336089afb" + "13bc43ae-b572-4c50-95fa-6645d26673eb" ], "Cache-Control": [ "no-cache" @@ -1082,35 +982,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" ], "x-ms-correlation-request-id": [ - "7ffd9695-44d8-427a-88f1-203e00dce540" + "b5b926f0-a78c-4fde-9928-8a22432426fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180122Z:7ffd9695-44d8-427a-88f1-203e00dce540" + "WESTUS:20150714T202717Z:b5b926f0-a78c-4fde-9928-8a22432426fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:21 GMT" + "Tue, 14 Jul 2015 20:27:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/4f57edc3-027e-4e78-bb80-f8a81afd8a5a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRmNTdlZGMzLTAyN2UtNGU3OC1iYjgwLWY4YTgxYWZkOGE1YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/015fd9f2-3baa-4103-a88c-8851b08f9bfd?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAxNWZkOWYyLTNiYWEtNDEwMy1hODhjLTg4NTFiMDhmOWJmZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4f57edc3-027e-4e78-bb80-f8a81afd8a5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:18.7371151-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1121,11 +1024,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "03cb4d5f-7c02-4dd9-aec1-957477f9644f" + "13bc43ae-b572-4c50-95fa-6645d26673eb" ], "Cache-Control": [ "no-cache" @@ -1135,34 +1035,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14984" ], "x-ms-correlation-request-id": [ - "0ba72e8a-3663-4a84-a159-e5bdc637d2ee" + "b5b926f0-a78c-4fde-9928-8a22432426fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180121Z:0ba72e8a-3663-4a84-a159-e5bdc637d2ee" + "WESTUS:20150714T202717Z:b5b926f0-a78c-4fde-9928-8a22432426fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:20 GMT" + "Tue, 14 Jul 2015 20:27:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzNzk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/015fd9f2-3baa-4103-a88c-8851b08f9bfd?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAxNWZkOWYyLTNiYWEtNDEwMy1hODhjLTg4NTFiMDhmOWJmZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/availabilitySets/AS1254\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3531/ospslibtest8967.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk1pslibtest8024.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk2pslibtest1971.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379\",\r\n \"name\": \"vm1379\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2209" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,11 +1076,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "1c00379b-0bf6-4d58-afa4-c28435530dae" + "13bc43ae-b572-4c50-95fa-6645d26673eb" ], "Cache-Control": [ "no-cache" @@ -1187,34 +1087,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14984" ], "x-ms-correlation-request-id": [ - "ac8f2eae-ad89-44a4-9b90-c4750d0b17c1" + "b5b926f0-a78c-4fde-9928-8a22432426fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180121Z:ac8f2eae-ad89-44a4-9b90-c4750d0b17c1" + "WESTUS:20150714T202717Z:b5b926f0-a78c-4fde-9928-8a22432426fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:20 GMT" + "Tue, 14 Jul 2015 20:27:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzNzk/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/availabilitySets/AS1254\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3531/ospslibtest8967.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk1pslibtest8024.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest6845.blob.core.windows.net/pslibtest3158/dataDisk2pslibtest1971.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Network/networkInterfaces/azsmnet9731\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-06-16T11:01:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T11:01:19.9245854-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T11:01:19.7057946-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T11:01:19.6589761-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379\",\r\n \"name\": \"vm1379\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364\",\r\n \"name\": \"pslibtest4364\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4364.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4364.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4364.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:26:47.2712402Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3789" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1225,11 +1128,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "f165e8b2-2297-410c-94b4-ccc2a57f9f88" + "277da656-ccfd-4ef5-8856-f81cd8f649e4" ], "Cache-Control": [ "no-cache" @@ -1239,34 +1139,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14983" ], "x-ms-correlation-request-id": [ - "36fa535d-877e-4b73-953a-df8522a257ac" + "a577ac2f-d9d2-4231-b5a0-2c8eb84e341a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180122Z:36fa535d-877e-4b73-953a-df8522a257ac" + "WESTUS:20150714T202727Z:a577ac2f-d9d2-4231-b5a0-2c8eb84e341a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:21 GMT" + "Tue, 14 Jul 2015 20:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364\",\r\n \"name\": \"pslibtest4364\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4364.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4364.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4364.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:26:47.2712402Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1277,11 +1180,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "d95dc64c-5aff-405d-a34c-ca43a7106b45" + "277da656-ccfd-4ef5-8856-f81cd8f649e4" ], "Cache-Control": [ "no-cache" @@ -1291,34 +1191,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14983" ], "x-ms-correlation-request-id": [ - "75eaef80-30f7-4d1b-ac5c-ca06b6f9a84a" + "a577ac2f-d9d2-4231-b5a0-2c8eb84e341a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180123Z:75eaef80-30f7-4d1b-ac5c-ca06b6f9a84a" + "WESTUS:20150714T202727Z:a577ac2f-d9d2-4231-b5a0-2c8eb84e341a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:22 GMT" + "Tue, 14 Jul 2015 20:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364\",\r\n \"name\": \"pslibtest4364\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4364.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4364.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4364.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:26:47.2712402Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,11 +1232,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "63b03eba-1d9b-4bee-a370-0dc85ec755af" + "277da656-ccfd-4ef5-8856-f81cd8f649e4" ], "Cache-Control": [ "no-cache" @@ -1343,34 +1243,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14983" ], "x-ms-correlation-request-id": [ - "2d98d888-22a0-488f-84f4-912b3fd1b812" + "a577ac2f-d9d2-4231-b5a0-2c8eb84e341a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180154Z:2d98d888-22a0-488f-84f4-912b3fd1b812" + "WESTUS:20150714T202727Z:a577ac2f-d9d2-4231-b5a0-2c8eb84e341a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:01:53 GMT" + "Tue, 14 Jul 2015 20:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364\",\r\n \"name\": \"pslibtest4364\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4364.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4364.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4364.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:26:47.2712402Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1381,11 +1284,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "73681def-f466-4027-b836-866127d8a0a5" + "277da656-ccfd-4ef5-8856-f81cd8f649e4" ], "Cache-Control": [ "no-cache" @@ -1395,34 +1295,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14983" ], "x-ms-correlation-request-id": [ - "b76a5a04-fa85-443f-a8cd-2533d2f70dc7" + "a577ac2f-d9d2-4231-b5a0-2c8eb84e341a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180225Z:b76a5a04-fa85-443f-a8cd-2533d2f70dc7" + "WESTUS:20150714T202727Z:a577ac2f-d9d2-4231-b5a0-2c8eb84e341a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:02:25 GMT" + "Tue, 14 Jul 2015 20:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0MzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364\",\r\n \"name\": \"pslibtest4364\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4364.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4364.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4364.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:26:47.2712402Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1433,11 +1336,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "84e4fb22-54ba-4e8b-bdcc-b6b9294731f3" + "7e525450-7c18-4d4c-ad3f-c396e90125af" ], "Cache-Control": [ "no-cache" @@ -1447,34 +1347,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14982" ], "x-ms-correlation-request-id": [ - "7831b6d6-d543-4fb1-bc2f-105bc54e5375" + "9a6f6992-4ec3-4a80-9e8f-e868c7f82771" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180256Z:7831b6d6-d543-4fb1-bc2f-105bc54e5375" + "WESTUS:20150714T202727Z:9a6f6992-4ec3-4a80-9e8f-e868c7f82771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:02:56 GMT" + "Tue, 14 Jul 2015 20:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0MzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364\",\r\n \"name\": \"pslibtest4364\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4364.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4364.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4364.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:26:47.2712402Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1485,11 +1388,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "9998737f-8252-4c0d-9fdf-252c0bfb760b" + "7e525450-7c18-4d4c-ad3f-c396e90125af" ], "Cache-Control": [ "no-cache" @@ -1499,34 +1399,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14982" ], "x-ms-correlation-request-id": [ - "07963bbf-cc34-43aa-bb41-832121de101c" + "9a6f6992-4ec3-4a80-9e8f-e868c7f82771" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180327Z:07963bbf-cc34-43aa-bb41-832121de101c" + "WESTUS:20150714T202727Z:9a6f6992-4ec3-4a80-9e8f-e868c7f82771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:03:27 GMT" + "Tue, 14 Jul 2015 20:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0MzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364\",\r\n \"name\": \"pslibtest4364\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4364.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4364.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4364.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:26:47.2712402Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1537,11 +1440,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "a4904fb1-8902-4b9d-b89a-6c5b9b76b188" + "7e525450-7c18-4d4c-ad3f-c396e90125af" ], "Cache-Control": [ "no-cache" @@ -1551,34 +1451,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14982" ], "x-ms-correlation-request-id": [ - "8c49be29-072e-4fb6-9683-1bde4c0ffd88" + "9a6f6992-4ec3-4a80-9e8f-e868c7f82771" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180357Z:8c49be29-072e-4fb6-9683-1bde4c0ffd88" + "WESTUS:20150714T202727Z:9a6f6992-4ec3-4a80-9e8f-e868c7f82771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:03:57 GMT" + "Tue, 14 Jul 2015 20:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0MzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Storage/storageAccounts/pslibtest4364\",\r\n \"name\": \"pslibtest4364\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4364.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4364.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4364.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T20:26:47.2712402Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1589,11 +1492,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "e0b04a1d-ed46-4726-ac71-16de34609a61" + "7e525450-7c18-4d4c-ad3f-c396e90125af" ], "Cache-Control": [ "no-cache" @@ -1603,34 +1503,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14982" ], "x-ms-correlation-request-id": [ - "861f6e2c-0165-4607-ad6b-daf0cd07bea8" + "9a6f6992-4ec3-4a80-9e8f-e868c7f82771" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180428Z:861f6e2c-0165-4607-ad6b-daf0cd07bea8" + "WESTUS:20150714T202727Z:9a6f6992-4ec3-4a80-9e8f-e868c7f82771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:04:28 GMT" + "Tue, 14 Jul 2015 20:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"1cacfaf6-34b3-4acf-b55d-02caf553c3cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1641,11 +1550,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "1bef38c4-fe26-4d6b-80f4-e558237e2188" + "65adce77-be27-4b46-b8bc-1efeae3257ee" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/65adce77-be27-4b46-b8bc-1efeae3257ee?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1654,35 +1569,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "efe27980-3e42-4ee4-af6a-cfd0c70cf079" + "20d34ea9-6fb7-422d-846c-92e5b4e0aad9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180459Z:efe27980-3e42-4ee4-af6a-cfd0c70cf079" + "WESTUS:20150714T202734Z:20d34ea9-6fb7-422d-846c-92e5b4e0aad9" ], "Date": [ - "Tue, 16 Jun 2015 18:04:59 GMT" + "Tue, 14 Jul 2015 20:27:33 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"1cacfaf6-34b3-4acf-b55d-02caf553c3cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1693,11 +1614,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "70756419-f817-440f-820c-6ea8497ea99b" + "65adce77-be27-4b46-b8bc-1efeae3257ee" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/65adce77-be27-4b46-b8bc-1efeae3257ee?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1706,35 +1633,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "b1f9ba33-07ec-455b-882a-7ad9128be5f2" + "20d34ea9-6fb7-422d-846c-92e5b4e0aad9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180530Z:b1f9ba33-07ec-455b-882a-7ad9128be5f2" + "WESTUS:20150714T202734Z:20d34ea9-6fb7-422d-846c-92e5b4e0aad9" ], "Date": [ - "Tue, 16 Jun 2015 18:05:29 GMT" + "Tue, 14 Jul 2015 20:27:33 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"1cacfaf6-34b3-4acf-b55d-02caf553c3cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1745,11 +1678,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "acd0512f-b53e-4eb7-812b-8efb2a79ff1e" + "65adce77-be27-4b46-b8bc-1efeae3257ee" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/65adce77-be27-4b46-b8bc-1efeae3257ee?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1758,35 +1697,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "9112f270-5824-43ff-9a35-fb67795eab06" + "20d34ea9-6fb7-422d-846c-92e5b4e0aad9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180601Z:9112f270-5824-43ff-9a35-fb67795eab06" + "WESTUS:20150714T202734Z:20d34ea9-6fb7-422d-846c-92e5b4e0aad9" ], "Date": [ - "Tue, 16 Jun 2015 18:06:00 GMT" + "Tue, 14 Jul 2015 20:27:33 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"1cacfaf6-34b3-4acf-b55d-02caf553c3cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1797,11 +1742,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "9cdd3f8c-75f3-413b-8b6f-fdfec8588464" + "65adce77-be27-4b46-b8bc-1efeae3257ee" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/65adce77-be27-4b46-b8bc-1efeae3257ee?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1810,35 +1761,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "956812be-e395-4508-9381-6fca4dadab5f" + "20d34ea9-6fb7-422d-846c-92e5b4e0aad9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180631Z:956812be-e395-4508-9381-6fca4dadab5f" + "WESTUS:20150714T202734Z:20d34ea9-6fb7-422d-846c-92e5b4e0aad9" ], "Date": [ - "Tue, 16 Jun 2015 18:06:31 GMT" + "Tue, 14 Jul 2015 20:27:33 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/65adce77-be27-4b46-b8bc-1efeae3257ee?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1YWRjZTc3LWJlMjctNGI0Ni1iOGJjLTFlZmVhZTMyNTdlZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1849,12 +1800,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "a2923072-2082-4414-8e1b-822ccf2f6db5" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "6f1c84ea-57c0-4e91-83f9-272e9d305937" - ], "Cache-Control": [ "no-cache" ], @@ -1863,34 +1814,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14981" ], "x-ms-correlation-request-id": [ - "5ccab9a4-0315-4b7f-8e34-9c2fb6567e10" + "9bb1be7e-eb96-43d0-b4ae-5d0ddceacaa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180702Z:5ccab9a4-0315-4b7f-8e34-9c2fb6567e10" + "WESTUS:20150714T202745Z:9bb1be7e-eb96-43d0-b4ae-5d0ddceacaa5" ], "Date": [ - "Tue, 16 Jun 2015 18:07:02 GMT" + "Tue, 14 Jul 2015 20:27:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/65adce77-be27-4b46-b8bc-1efeae3257ee?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1YWRjZTc3LWJlMjctNGI0Ni1iOGJjLTFlZmVhZTMyNTdlZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1901,12 +1852,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "a2923072-2082-4414-8e1b-822ccf2f6db5" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "35881544-5d7a-42a9-a422-2f3267da10a6" - ], "Cache-Control": [ "no-cache" ], @@ -1915,34 +1866,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14981" ], "x-ms-correlation-request-id": [ - "330395cb-e63e-49c3-aee6-28bd43fcd966" + "9bb1be7e-eb96-43d0-b4ae-5d0ddceacaa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180733Z:330395cb-e63e-49c3-aee6-28bd43fcd966" + "WESTUS:20150714T202745Z:9bb1be7e-eb96-43d0-b4ae-5d0ddceacaa5" ], "Date": [ - "Tue, 16 Jun 2015 18:07:32 GMT" + "Tue, 14 Jul 2015 20:27:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/65adce77-be27-4b46-b8bc-1efeae3257ee?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1YWRjZTc3LWJlMjctNGI0Ni1iOGJjLTFlZmVhZTMyNTdlZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1953,12 +1904,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "a2923072-2082-4414-8e1b-822ccf2f6db5" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "22474e99-d4ae-4409-bca3-a14e31f9f71b" - ], "Cache-Control": [ "no-cache" ], @@ -1967,34 +1918,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14981" ], "x-ms-correlation-request-id": [ - "e3e804d4-f63b-4d09-8fa7-a858ea07d8eb" + "9bb1be7e-eb96-43d0-b4ae-5d0ddceacaa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180804Z:e3e804d4-f63b-4d09-8fa7-a858ea07d8eb" + "WESTUS:20150714T202745Z:9bb1be7e-eb96-43d0-b4ae-5d0ddceacaa5" ], "Date": [ - "Tue, 16 Jun 2015 18:08:03 GMT" + "Tue, 14 Jul 2015 20:27:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/65adce77-be27-4b46-b8bc-1efeae3257ee?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1YWRjZTc3LWJlMjctNGI0Ni1iOGJjLTFlZmVhZTMyNTdlZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2005,12 +1956,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "a2923072-2082-4414-8e1b-822ccf2f6db5" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "307dd8f6-02c5-44fa-b454-32d3140da92d" - ], "Cache-Control": [ "no-cache" ], @@ -2019,34 +1970,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14981" ], "x-ms-correlation-request-id": [ - "8037676f-d6e8-48e3-9287-7af3257cc6fb" + "9bb1be7e-eb96-43d0-b4ae-5d0ddceacaa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180834Z:8037676f-d6e8-48e3-9287-7af3257cc6fb" + "WESTUS:20150714T202745Z:9bb1be7e-eb96-43d0-b4ae-5d0ddceacaa5" ], "Date": [ - "Tue, 16 Jun 2015 18:08:34 GMT" + "Tue, 14 Jul 2015 20:27:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2db3e089-2306-4314-bd76-ac7336089afb?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYjNlMDg5LTIzMDYtNDMxNC1iZDc2LWFjNzMzNjA4OWFmYj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2db3e089-2306-4314-bd76-ac7336089afb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T11:01:22.4558798-07:00\",\r\n \"endTime\": \"2015-06-16T11:08:55.0525196-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"4eba20bd-3d01-415e-a99f-995e54ad9403\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2057,48 +2008,54 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "f53bd734-0681-4190-b318-c611c7680c6d" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "7322a15c-aee1-4f55-be60-3a99c3690bd1" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"4eba20bd-3d01-415e-a99f-995e54ad9403\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14980" ], "x-ms-correlation-request-id": [ - "ecfa7475-28bd-4c19-93e1-fa3257cdcb44" + "fce92385-577b-4420-beaa-0955353e3492" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180905Z:ecfa7475-28bd-4c19-93e1-fa3257cdcb44" + "WESTUS:20150714T202745Z:fce92385-577b-4420-beaa-0955353e3492" ], "Date": [ - "Tue, 16 Jun 2015 18:09:05 GMT" + "Tue, 14 Jul 2015 20:27:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2033/providers/Microsoft.Compute/virtualMachines/vm1379?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDIwMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzNzk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"4eba20bd-3d01-415e-a99f-995e54ad9403\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2106,57 +2063,7580 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8f922913-4f10-4fae-b6b3-d410fa948a52?api-version=2015-06-15" + "x-ms-request-id": [ + "f53bd734-0681-4190-b318-c611c7680c6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "8f922913-4f10-4fae-b6b3-d410fa948a52" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8f922913-4f10-4fae-b6b3-d410fa948a52?monitor=true&api-version=2015-06-15" + "ETag": [ + "W/\"4eba20bd-3d01-415e-a99f-995e54ad9403\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "fce92385-577b-4420-beaa-0955353e3492" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202745Z:fce92385-577b-4420-beaa-0955353e3492" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"4eba20bd-3d01-415e-a99f-995e54ad9403\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f53bd734-0681-4190-b318-c611c7680c6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4eba20bd-3d01-415e-a99f-995e54ad9403\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "fce92385-577b-4420-beaa-0955353e3492" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202745Z:fce92385-577b-4420-beaa-0955353e3492" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"4eba20bd-3d01-415e-a99f-995e54ad9403\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f53bd734-0681-4190-b318-c611c7680c6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4eba20bd-3d01-415e-a99f-995e54ad9403\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "fce92385-577b-4420-beaa-0955353e3492" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202745Z:fce92385-577b-4420-beaa-0955353e3492" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"4eba20bd-3d01-415e-a99f-995e54ad9403\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4afe5158-8c0b-421f-8f2a-00c3827f9ead" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4eba20bd-3d01-415e-a99f-995e54ad9403\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "de64fc50-7e43-43c1-a93b-f09af727d8c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202745Z:de64fc50-7e43-43c1-a93b-f09af727d8c6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"4eba20bd-3d01-415e-a99f-995e54ad9403\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4afe5158-8c0b-421f-8f2a-00c3827f9ead" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4eba20bd-3d01-415e-a99f-995e54ad9403\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "de64fc50-7e43-43c1-a93b-f09af727d8c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202745Z:de64fc50-7e43-43c1-a93b-f09af727d8c6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"4eba20bd-3d01-415e-a99f-995e54ad9403\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4afe5158-8c0b-421f-8f2a-00c3827f9ead" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4eba20bd-3d01-415e-a99f-995e54ad9403\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "de64fc50-7e43-43c1-a93b-f09af727d8c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202745Z:de64fc50-7e43-43c1-a93b-f09af727d8c6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0MDA5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet4009\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/publicIPAddresses/azsmnet4009\",\r\n \"etag\": \"W/\\\"4eba20bd-3d01-415e-a99f-995e54ad9403\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2340\",\r\n \"fqdn\": \"azsmnet2340.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4afe5158-8c0b-421f-8f2a-00c3827f9ead" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4eba20bd-3d01-415e-a99f-995e54ad9403\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "de64fc50-7e43-43c1-a93b-f09af727d8c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202745Z:de64fc50-7e43-43c1-a93b-f09af727d8c6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1799\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799\",\r\n \"etag\": \"W/\\\"8768092c-9237-4cff-b708-4049afd3ace2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"8768092c-9237-4cff-b708-4049afd3ace2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd769c81-d7eb-4c57-bd50-87d1b8d9cc40" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd769c81-d7eb-4c57-bd50-87d1b8d9cc40?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "fc97d863-fc6e-4385-a84d-eef00a551d07" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202748Z:fc97d863-fc6e-4385-a84d-eef00a551d07" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:48 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1799\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799\",\r\n \"etag\": \"W/\\\"8768092c-9237-4cff-b708-4049afd3ace2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"8768092c-9237-4cff-b708-4049afd3ace2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd769c81-d7eb-4c57-bd50-87d1b8d9cc40" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd769c81-d7eb-4c57-bd50-87d1b8d9cc40?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "fc97d863-fc6e-4385-a84d-eef00a551d07" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202748Z:fc97d863-fc6e-4385-a84d-eef00a551d07" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:48 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1799\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799\",\r\n \"etag\": \"W/\\\"8768092c-9237-4cff-b708-4049afd3ace2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"8768092c-9237-4cff-b708-4049afd3ace2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd769c81-d7eb-4c57-bd50-87d1b8d9cc40" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd769c81-d7eb-4c57-bd50-87d1b8d9cc40?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "fc97d863-fc6e-4385-a84d-eef00a551d07" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202748Z:fc97d863-fc6e-4385-a84d-eef00a551d07" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:48 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1799\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799\",\r\n \"etag\": \"W/\\\"8768092c-9237-4cff-b708-4049afd3ace2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"8768092c-9237-4cff-b708-4049afd3ace2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd769c81-d7eb-4c57-bd50-87d1b8d9cc40" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd769c81-d7eb-4c57-bd50-87d1b8d9cc40?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "fc97d863-fc6e-4385-a84d-eef00a551d07" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202748Z:fc97d863-fc6e-4385-a84d-eef00a551d07" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:48 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd769c81-d7eb-4c57-bd50-87d1b8d9cc40?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZkNzY5YzgxLWQ3ZWItNGM1Ny1iZDUwLTg3ZDFiOGQ5Y2M0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "07b37782-4d06-4fab-8c96-ff0790240696" + ], + "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": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "7f4a3fef-b9f2-4052-997a-a16411017bb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202759Z:7f4a3fef-b9f2-4052-997a-a16411017bb5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd769c81-d7eb-4c57-bd50-87d1b8d9cc40?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZkNzY5YzgxLWQ3ZWItNGM1Ny1iZDUwLTg3ZDFiOGQ5Y2M0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "07b37782-4d06-4fab-8c96-ff0790240696" + ], + "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": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "7f4a3fef-b9f2-4052-997a-a16411017bb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202759Z:7f4a3fef-b9f2-4052-997a-a16411017bb5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd769c81-d7eb-4c57-bd50-87d1b8d9cc40?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZkNzY5YzgxLWQ3ZWItNGM1Ny1iZDUwLTg3ZDFiOGQ5Y2M0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "07b37782-4d06-4fab-8c96-ff0790240696" + ], + "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": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "7f4a3fef-b9f2-4052-997a-a16411017bb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202759Z:7f4a3fef-b9f2-4052-997a-a16411017bb5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd769c81-d7eb-4c57-bd50-87d1b8d9cc40?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZkNzY5YzgxLWQ3ZWItNGM1Ny1iZDUwLTg3ZDFiOGQ5Y2M0MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "07b37782-4d06-4fab-8c96-ff0790240696" + ], + "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": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "7f4a3fef-b9f2-4052-997a-a16411017bb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202759Z:7f4a3fef-b9f2-4052-997a-a16411017bb5" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1799\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb0b9285-890a-4dbf-8072-66ad137188eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"305153b6-f476-4cc2-9e0b-78b738c36fcb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "9878b2c7-8a43-437c-aeb9-c00d0bf7e240" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202800Z:9878b2c7-8a43-437c-aeb9-c00d0bf7e240" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1799\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb0b9285-890a-4dbf-8072-66ad137188eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"305153b6-f476-4cc2-9e0b-78b738c36fcb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "9878b2c7-8a43-437c-aeb9-c00d0bf7e240" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202800Z:9878b2c7-8a43-437c-aeb9-c00d0bf7e240" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1799\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb0b9285-890a-4dbf-8072-66ad137188eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"305153b6-f476-4cc2-9e0b-78b738c36fcb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "9878b2c7-8a43-437c-aeb9-c00d0bf7e240" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202800Z:9878b2c7-8a43-437c-aeb9-c00d0bf7e240" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet1799\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb0b9285-890a-4dbf-8072-66ad137188eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"305153b6-f476-4cc2-9e0b-78b738c36fcb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "9878b2c7-8a43-437c-aeb9-c00d0bf7e240" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202800Z:9878b2c7-8a43-437c-aeb9-c00d0bf7e240" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799/subnets/azsmnet3841?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OS9zdWJuZXRzL2F6c21uZXQzODQxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76f8933d-e61d-4016-b66d-fe17cceac1e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"305153b6-f476-4cc2-9e0b-78b738c36fcb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "a3f17388-dcfc-4c46-b250-f426c9ca9f70" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202800Z:a3f17388-dcfc-4c46-b250-f426c9ca9f70" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799/subnets/azsmnet3841?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OS9zdWJuZXRzL2F6c21uZXQzODQxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76f8933d-e61d-4016-b66d-fe17cceac1e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"305153b6-f476-4cc2-9e0b-78b738c36fcb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "a3f17388-dcfc-4c46-b250-f426c9ca9f70" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202800Z:a3f17388-dcfc-4c46-b250-f426c9ca9f70" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799/subnets/azsmnet3841?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OS9zdWJuZXRzL2F6c21uZXQzODQxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76f8933d-e61d-4016-b66d-fe17cceac1e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"305153b6-f476-4cc2-9e0b-78b738c36fcb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "a3f17388-dcfc-4c46-b250-f426c9ca9f70" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202800Z:a3f17388-dcfc-4c46-b250-f426c9ca9f70" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualnetworks/azsmnet1799/subnets/azsmnet3841?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MTc5OS9zdWJuZXRzL2F6c21uZXQzODQxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3841\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76f8933d-e61d-4016-b66d-fe17cceac1e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"305153b6-f476-4cc2-9e0b-78b738c36fcb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "a3f17388-dcfc-4c46-b250-f426c9ca9f70" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202800Z:a3f17388-dcfc-4c46-b250-f426c9ca9f70" + ], + "Date": [ + "Tue, 14 Jul 2015 20:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7394\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394/ipConfigurations/azsmnet5427\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b39fad93-b26f-470e-86d1-9672ec393fa7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/b39fad93-b26f-470e-86d1-9672ec393fa7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b1d9906f-9bfb-42ed-8fe4-bbf7a996ef48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202804Z:b1d9906f-9bfb-42ed-8fe4-bbf7a996ef48" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:03 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7394\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394/ipConfigurations/azsmnet5427\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b39fad93-b26f-470e-86d1-9672ec393fa7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/b39fad93-b26f-470e-86d1-9672ec393fa7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b1d9906f-9bfb-42ed-8fe4-bbf7a996ef48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202804Z:b1d9906f-9bfb-42ed-8fe4-bbf7a996ef48" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:03 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7394\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394/ipConfigurations/azsmnet5427\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b39fad93-b26f-470e-86d1-9672ec393fa7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/b39fad93-b26f-470e-86d1-9672ec393fa7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b1d9906f-9bfb-42ed-8fe4-bbf7a996ef48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202804Z:b1d9906f-9bfb-42ed-8fe4-bbf7a996ef48" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:03 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet3841\",\r\n \"etag\": \"W/\\\"305153b6-f476-4cc2-9e0b-78b738c36fcb\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7394\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394/ipConfigurations/azsmnet5427\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b39fad93-b26f-470e-86d1-9672ec393fa7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/b39fad93-b26f-470e-86d1-9672ec393fa7?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b1d9906f-9bfb-42ed-8fe4-bbf7a996ef48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202804Z:b1d9906f-9bfb-42ed-8fe4-bbf7a996ef48" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:03 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7394\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394/ipConfigurations/azsmnet5427\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bca691d0-9c7c-4508-b693-3b9de659e4f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "b53f6ca0-25db-46c9-ac82-918f28869620" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202804Z:b53f6ca0-25db-46c9-ac82-918f28869620" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7394\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394/ipConfigurations/azsmnet5427\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bca691d0-9c7c-4508-b693-3b9de659e4f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "b53f6ca0-25db-46c9-ac82-918f28869620" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202804Z:b53f6ca0-25db-46c9-ac82-918f28869620" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7394\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394/ipConfigurations/azsmnet5427\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bca691d0-9c7c-4508-b693-3b9de659e4f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "b53f6ca0-25db-46c9-ac82-918f28869620" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202804Z:b53f6ca0-25db-46c9-ac82-918f28869620" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7394\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5427\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394/ipConfigurations/azsmnet5427\",\r\n \"etag\": \"W/\\\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/virtualNetworks/azsmnet1799/subnets/azsmnet3841\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bca691d0-9c7c-4508-b693-3b9de659e4f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1f61a192-e42c-4863-9d6d-7e7e1d424b57\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "b53f6ca0-25db-46c9-ac82-918f28869620" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202804Z:b53f6ca0-25db-46c9-ac82-918f28869620" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MzIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321\",\r\n \"name\": \"as4321\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ff3e5428-c307-4b6a-b156-bceb0d75df53" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6bd8f1c2-286b-4f39-9330-8f80a2382c73" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202808Z:6bd8f1c2-286b-4f39-9330-8f80a2382c73" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MzIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321\",\r\n \"name\": \"as4321\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ff3e5428-c307-4b6a-b156-bceb0d75df53" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6bd8f1c2-286b-4f39-9330-8f80a2382c73" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202808Z:6bd8f1c2-286b-4f39-9330-8f80a2382c73" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MzIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321\",\r\n \"name\": \"as4321\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ff3e5428-c307-4b6a-b156-bceb0d75df53" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6bd8f1c2-286b-4f39-9330-8f80a2382c73" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202808Z:6bd8f1c2-286b-4f39-9330-8f80a2382c73" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MzIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321\",\r\n \"name\": \"as4321\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ff3e5428-c307-4b6a-b156-bceb0d75df53" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6bd8f1c2-286b-4f39-9330-8f80a2382c73" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202808Z:6bd8f1c2-286b-4f39-9330-8f80a2382c73" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3562\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321\"\r\n },\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"test\",\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"test\",\r\n \"typeHandlerVersion\": \"test\",\r\n \"status\": {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2868" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "eb4f70a3-d2ea-49b8-9be0-a8fd8852007d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "0d5b4942-cd9a-46a6-960c-163d6c43767f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202812Z:0d5b4942-cd9a-46a6-960c-163d6c43767f" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3562\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321\"\r\n },\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"test\",\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"test\",\r\n \"typeHandlerVersion\": \"test\",\r\n \"status\": {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2868" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "eb4f70a3-d2ea-49b8-9be0-a8fd8852007d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "0d5b4942-cd9a-46a6-960c-163d6c43767f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202812Z:0d5b4942-cd9a-46a6-960c-163d6c43767f" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3562\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321\"\r\n },\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"test\",\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"test\",\r\n \"typeHandlerVersion\": \"test\",\r\n \"status\": {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2868" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "eb4f70a3-d2ea-49b8-9be0-a8fd8852007d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "0d5b4942-cd9a-46a6-960c-163d6c43767f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202812Z:0d5b4942-cd9a-46a6-960c-163d6c43767f" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3562\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/as4321\"\r\n },\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"test\",\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"test\",\r\n \"typeHandlerVersion\": \"test\",\r\n \"status\": {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"test\",\r\n \"message\": \"test\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2868" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "eb4f70a3-d2ea-49b8-9be0-a8fd8852007d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "0d5b4942-cd9a-46a6-960c-163d6c43767f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202812Z:0d5b4942-cd9a-46a6-960c-163d6c43767f" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T20:33:21Z\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1330058Z\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1330058Z\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1799101Z\"\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\": \"2015-07-14T20:33:10.3848796Z\"\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}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3889" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "48782c3c-6cc1-4157-b5a5-51ab5f2ef5c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203323Z:48782c3c-6cc1-4157-b5a5-51ab5f2ef5c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T20:33:21Z\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1330058Z\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1330058Z\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1799101Z\"\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\": \"2015-07-14T20:33:10.3848796Z\"\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}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3889" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "48782c3c-6cc1-4157-b5a5-51ab5f2ef5c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203323Z:48782c3c-6cc1-4157-b5a5-51ab5f2ef5c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T20:33:21Z\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1330058Z\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1330058Z\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1799101Z\"\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\": \"2015-07-14T20:33:10.3848796Z\"\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}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3889" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "48782c3c-6cc1-4157-b5a5-51ab5f2ef5c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203323Z:48782c3c-6cc1-4157-b5a5-51ab5f2ef5c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T20:33:21Z\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1330058Z\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1330058Z\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T20:28:11.1799101Z\"\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\": \"2015-07-14T20:33:10.3848796Z\"\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}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3889" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "48782c3c-6cc1-4157-b5a5-51ab5f2ef5c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203323Z:48782c3c-6cc1-4157-b5a5-51ab5f2ef5c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "db657bc5-107f-43d1-8e03-026331a45ee3" + ], + "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": [ + "d3432fdf-7cd7-4163-853d-547f247eedd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202843Z:d3432fdf-7cd7-4163-853d-547f247eedd6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "db657bc5-107f-43d1-8e03-026331a45ee3" + ], + "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": [ + "d3432fdf-7cd7-4163-853d-547f247eedd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202843Z:d3432fdf-7cd7-4163-853d-547f247eedd6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "db657bc5-107f-43d1-8e03-026331a45ee3" + ], + "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": [ + "d3432fdf-7cd7-4163-853d-547f247eedd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202843Z:d3432fdf-7cd7-4163-853d-547f247eedd6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "db657bc5-107f-43d1-8e03-026331a45ee3" + ], + "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": [ + "d3432fdf-7cd7-4163-853d-547f247eedd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202843Z:d3432fdf-7cd7-4163-853d-547f247eedd6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:28:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "242c86b2-dbf6-4d65-a5dd-8582f45ba50a" + ], + "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": [ + "74f85b76-f5d3-4224-aafa-18a165e18df8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202914Z:74f85b76-f5d3-4224-aafa-18a165e18df8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:29:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "242c86b2-dbf6-4d65-a5dd-8582f45ba50a" + ], + "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": [ + "74f85b76-f5d3-4224-aafa-18a165e18df8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202914Z:74f85b76-f5d3-4224-aafa-18a165e18df8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:29:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "242c86b2-dbf6-4d65-a5dd-8582f45ba50a" + ], + "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": [ + "74f85b76-f5d3-4224-aafa-18a165e18df8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202914Z:74f85b76-f5d3-4224-aafa-18a165e18df8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:29:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "242c86b2-dbf6-4d65-a5dd-8582f45ba50a" + ], + "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": [ + "74f85b76-f5d3-4224-aafa-18a165e18df8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202914Z:74f85b76-f5d3-4224-aafa-18a165e18df8" + ], + "Date": [ + "Tue, 14 Jul 2015 20:29:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8268b40f-2ddc-40a3-a103-e23e3b421380" + ], + "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": [ + "137f5e07-3aa2-4990-a1a5-a4fa0c3d7a33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202945Z:137f5e07-3aa2-4990-a1a5-a4fa0c3d7a33" + ], + "Date": [ + "Tue, 14 Jul 2015 20:29:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8268b40f-2ddc-40a3-a103-e23e3b421380" + ], + "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": [ + "137f5e07-3aa2-4990-a1a5-a4fa0c3d7a33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202945Z:137f5e07-3aa2-4990-a1a5-a4fa0c3d7a33" + ], + "Date": [ + "Tue, 14 Jul 2015 20:29:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8268b40f-2ddc-40a3-a103-e23e3b421380" + ], + "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": [ + "137f5e07-3aa2-4990-a1a5-a4fa0c3d7a33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202945Z:137f5e07-3aa2-4990-a1a5-a4fa0c3d7a33" + ], + "Date": [ + "Tue, 14 Jul 2015 20:29:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8268b40f-2ddc-40a3-a103-e23e3b421380" + ], + "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": [ + "137f5e07-3aa2-4990-a1a5-a4fa0c3d7a33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T202945Z:137f5e07-3aa2-4990-a1a5-a4fa0c3d7a33" + ], + "Date": [ + "Tue, 14 Jul 2015 20:29:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2d6db879-eafa-428b-b8b0-97cf74f09f72" + ], + "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": [ + "544f6fbd-bad4-41f3-9bbf-086904f54169" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203016Z:544f6fbd-bad4-41f3-9bbf-086904f54169" + ], + "Date": [ + "Tue, 14 Jul 2015 20:30:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2d6db879-eafa-428b-b8b0-97cf74f09f72" + ], + "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": [ + "544f6fbd-bad4-41f3-9bbf-086904f54169" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203016Z:544f6fbd-bad4-41f3-9bbf-086904f54169" + ], + "Date": [ + "Tue, 14 Jul 2015 20:30:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2d6db879-eafa-428b-b8b0-97cf74f09f72" + ], + "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": [ + "544f6fbd-bad4-41f3-9bbf-086904f54169" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203016Z:544f6fbd-bad4-41f3-9bbf-086904f54169" + ], + "Date": [ + "Tue, 14 Jul 2015 20:30:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2d6db879-eafa-428b-b8b0-97cf74f09f72" + ], + "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": [ + "544f6fbd-bad4-41f3-9bbf-086904f54169" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203016Z:544f6fbd-bad4-41f3-9bbf-086904f54169" + ], + "Date": [ + "Tue, 14 Jul 2015 20:30:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "40a86f7f-9b84-4f08-a0d6-2fa9028541a7" + ], + "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": [ + "e1999c31-6244-47a3-b5af-d4a260c8b3c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203046Z:e1999c31-6244-47a3-b5af-d4a260c8b3c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:30:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "40a86f7f-9b84-4f08-a0d6-2fa9028541a7" + ], + "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": [ + "e1999c31-6244-47a3-b5af-d4a260c8b3c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203046Z:e1999c31-6244-47a3-b5af-d4a260c8b3c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:30:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "40a86f7f-9b84-4f08-a0d6-2fa9028541a7" + ], + "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": [ + "e1999c31-6244-47a3-b5af-d4a260c8b3c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203046Z:e1999c31-6244-47a3-b5af-d4a260c8b3c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:30:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "40a86f7f-9b84-4f08-a0d6-2fa9028541a7" + ], + "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": [ + "e1999c31-6244-47a3-b5af-d4a260c8b3c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203046Z:e1999c31-6244-47a3-b5af-d4a260c8b3c9" + ], + "Date": [ + "Tue, 14 Jul 2015 20:30:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4a95ee72-70a6-47d1-9557-3fe5622426ea" + ], + "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": [ + "99160277-91f0-40ed-b8f8-7ed292925e64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203117Z:99160277-91f0-40ed-b8f8-7ed292925e64" + ], + "Date": [ + "Tue, 14 Jul 2015 20:31:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4a95ee72-70a6-47d1-9557-3fe5622426ea" + ], + "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": [ + "99160277-91f0-40ed-b8f8-7ed292925e64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203117Z:99160277-91f0-40ed-b8f8-7ed292925e64" + ], + "Date": [ + "Tue, 14 Jul 2015 20:31:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4a95ee72-70a6-47d1-9557-3fe5622426ea" + ], + "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": [ + "99160277-91f0-40ed-b8f8-7ed292925e64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203117Z:99160277-91f0-40ed-b8f8-7ed292925e64" + ], + "Date": [ + "Tue, 14 Jul 2015 20:31:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4a95ee72-70a6-47d1-9557-3fe5622426ea" + ], + "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": [ + "99160277-91f0-40ed-b8f8-7ed292925e64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203117Z:99160277-91f0-40ed-b8f8-7ed292925e64" + ], + "Date": [ + "Tue, 14 Jul 2015 20:31:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f95bc1f4-3080-4a51-92bc-d814632a19b3" + ], + "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": [ + "0c028d8a-5405-479a-8c6c-614064248139" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203148Z:0c028d8a-5405-479a-8c6c-614064248139" + ], + "Date": [ + "Tue, 14 Jul 2015 20:31:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f95bc1f4-3080-4a51-92bc-d814632a19b3" + ], + "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": [ + "0c028d8a-5405-479a-8c6c-614064248139" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203148Z:0c028d8a-5405-479a-8c6c-614064248139" + ], + "Date": [ + "Tue, 14 Jul 2015 20:31:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f95bc1f4-3080-4a51-92bc-d814632a19b3" + ], + "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": [ + "0c028d8a-5405-479a-8c6c-614064248139" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203148Z:0c028d8a-5405-479a-8c6c-614064248139" + ], + "Date": [ + "Tue, 14 Jul 2015 20:31:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f95bc1f4-3080-4a51-92bc-d814632a19b3" + ], + "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": [ + "0c028d8a-5405-479a-8c6c-614064248139" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203148Z:0c028d8a-5405-479a-8c6c-614064248139" + ], + "Date": [ + "Tue, 14 Jul 2015 20:31:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6543dad2-9e05-42d0-938f-41952394afc9" + ], + "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": [ + "6d2d7ad3-8864-43e7-9c6b-db19988c4924" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203219Z:6d2d7ad3-8864-43e7-9c6b-db19988c4924" + ], + "Date": [ + "Tue, 14 Jul 2015 20:32:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6543dad2-9e05-42d0-938f-41952394afc9" + ], + "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": [ + "6d2d7ad3-8864-43e7-9c6b-db19988c4924" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203219Z:6d2d7ad3-8864-43e7-9c6b-db19988c4924" + ], + "Date": [ + "Tue, 14 Jul 2015 20:32:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6543dad2-9e05-42d0-938f-41952394afc9" + ], + "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": [ + "6d2d7ad3-8864-43e7-9c6b-db19988c4924" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203219Z:6d2d7ad3-8864-43e7-9c6b-db19988c4924" + ], + "Date": [ + "Tue, 14 Jul 2015 20:32:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6543dad2-9e05-42d0-938f-41952394afc9" + ], + "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": [ + "6d2d7ad3-8864-43e7-9c6b-db19988c4924" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203219Z:6d2d7ad3-8864-43e7-9c6b-db19988c4924" + ], + "Date": [ + "Tue, 14 Jul 2015 20:32:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b2ed80f-2f03-4a5f-a3c1-7e9ff3c3e01c" + ], + "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": [ + "086c7b5f-5c11-4b3e-9fcc-8f79f97efbe6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203249Z:086c7b5f-5c11-4b3e-9fcc-8f79f97efbe6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:32:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b2ed80f-2f03-4a5f-a3c1-7e9ff3c3e01c" + ], + "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": [ + "086c7b5f-5c11-4b3e-9fcc-8f79f97efbe6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203249Z:086c7b5f-5c11-4b3e-9fcc-8f79f97efbe6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:32:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b2ed80f-2f03-4a5f-a3c1-7e9ff3c3e01c" + ], + "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": [ + "086c7b5f-5c11-4b3e-9fcc-8f79f97efbe6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203249Z:086c7b5f-5c11-4b3e-9fcc-8f79f97efbe6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:32:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b2ed80f-2f03-4a5f-a3c1-7e9ff3c3e01c" + ], + "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": [ + "086c7b5f-5c11-4b3e-9fcc-8f79f97efbe6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203249Z:086c7b5f-5c11-4b3e-9fcc-8f79f97efbe6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:32:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\",\r\n \"endTime\": \"2015-07-14T13:33:10.4630558-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5313bf64-d1ab-45a6-8170-d2c780675d52" + ], + "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": [ + "9c3c1b5c-f149-49e1-a6e5-e2868f7852d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203320Z:9c3c1b5c-f149-49e1-a6e5-e2868f7852d7" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\",\r\n \"endTime\": \"2015-07-14T13:33:10.4630558-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5313bf64-d1ab-45a6-8170-d2c780675d52" + ], + "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": [ + "9c3c1b5c-f149-49e1-a6e5-e2868f7852d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203320Z:9c3c1b5c-f149-49e1-a6e5-e2868f7852d7" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\",\r\n \"endTime\": \"2015-07-14T13:33:10.4630558-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5313bf64-d1ab-45a6-8170-d2c780675d52" + ], + "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": [ + "9c3c1b5c-f149-49e1-a6e5-e2868f7852d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203320Z:9c3c1b5c-f149-49e1-a6e5-e2868f7852d7" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/eb4f70a3-d2ea-49b8-9be0-a8fd8852007d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ViNGY3MGEzLWQyZWEtNDliOC05YmUwLWE4ZmQ4ODUyMDA3ZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb4f70a3-d2ea-49b8-9be0-a8fd8852007d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:28:09.9142628-07:00\",\r\n \"endTime\": \"2015-07-14T13:33:10.4630558-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5313bf64-d1ab-45a6-8170-d2c780675d52" + ], + "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": [ + "9c3c1b5c-f149-49e1-a6e5-e2868f7852d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203320Z:9c3c1b5c-f149-49e1-a6e5-e2868f7852d7" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1e3893db-622f-45b5-9518-b572c9df9bb8" + ], + "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": [ + "cc51a624-224d-48fe-8122-8206e39d1e9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203321Z:cc51a624-224d-48fe-8122-8206e39d1e9a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1e3893db-622f-45b5-9518-b572c9df9bb8" + ], + "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": [ + "cc51a624-224d-48fe-8122-8206e39d1e9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203321Z:cc51a624-224d-48fe-8122-8206e39d1e9a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1e3893db-622f-45b5-9518-b572c9df9bb8" + ], + "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": [ + "cc51a624-224d-48fe-8122-8206e39d1e9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203321Z:cc51a624-224d-48fe-8122-8206e39d1e9a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1e3893db-622f-45b5-9518-b572c9df9bb8" + ], + "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": [ + "cc51a624-224d-48fe-8122-8206e39d1e9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203321Z:cc51a624-224d-48fe-8122-8206e39d1e9a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3287b237-d1a4-44ba-adb5-c2d28a4eabf6" + ], + "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": [ + "b871535f-7cb6-4109-9657-4e66393b3f9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203321Z:b871535f-7cb6-4109-9657-4e66393b3f9a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3287b237-d1a4-44ba-adb5-c2d28a4eabf6" + ], + "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": [ + "b871535f-7cb6-4109-9657-4e66393b3f9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203321Z:b871535f-7cb6-4109-9657-4e66393b3f9a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3287b237-d1a4-44ba-adb5-c2d28a4eabf6" + ], + "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": [ + "b871535f-7cb6-4109-9657-4e66393b3f9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203321Z:b871535f-7cb6-4109-9657-4e66393b3f9a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3287b237-d1a4-44ba-adb5-c2d28a4eabf6" + ], + "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": [ + "b871535f-7cb6-4109-9657-4e66393b3f9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203321Z:b871535f-7cb6-4109-9657-4e66393b3f9a" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "acf56bd8-1628-48fd-a865-a38585000900" + ], + "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": [ + "759f6455-858a-40fa-8157-c20c43124e99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203354Z:759f6455-858a-40fa-8157-c20c43124e99" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "acf56bd8-1628-48fd-a865-a38585000900" + ], + "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": [ + "759f6455-858a-40fa-8157-c20c43124e99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203354Z:759f6455-858a-40fa-8157-c20c43124e99" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "acf56bd8-1628-48fd-a865-a38585000900" + ], + "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": [ + "759f6455-858a-40fa-8157-c20c43124e99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203354Z:759f6455-858a-40fa-8157-c20c43124e99" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2207" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "acf56bd8-1628-48fd-a865-a38585000900" + ], + "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": [ + "759f6455-858a-40fa-8157-c20c43124e99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203354Z:759f6455-858a-40fa-8157-c20c43124e99" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T13:33:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1330058-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1330058-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1799101-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:33:10.3848796-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4058" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ee017bd3-51cf-4f0c-9e03-727b1d85150e" + ], + "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": [ + "64f54bbe-c367-4bd2-81d7-797828db5a97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203322Z:64f54bbe-c367-4bd2-81d7-797828db5a97" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T13:33:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1330058-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1330058-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1799101-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:33:10.3848796-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4058" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ee017bd3-51cf-4f0c-9e03-727b1d85150e" + ], + "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": [ + "64f54bbe-c367-4bd2-81d7-797828db5a97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203322Z:64f54bbe-c367-4bd2-81d7-797828db5a97" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T13:33:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1330058-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1330058-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1799101-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:33:10.3848796-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4058" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ee017bd3-51cf-4f0c-9e03-727b1d85150e" + ], + "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": [ + "64f54bbe-c367-4bd2-81d7-797828db5a97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203322Z:64f54bbe-c367-4bd2-81d7-797828db5a97" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/availabilitySets/AS4321\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest3431/ospslibtest4157.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk1pslibtest604.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4364.blob.core.windows.net/pslibtest995/dataDisk2pslibtest5935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Network/networkInterfaces/azsmnet7394\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T13:33:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1330058-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1330058-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:28:11.1799101-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T13:33:10.3848796-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933\",\r\n \"name\": \"vm8933\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4058" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ee017bd3-51cf-4f0c-9e03-727b1d85150e" + ], + "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": [ + "64f54bbe-c367-4bd2-81d7-797828db5a97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203322Z:64f54bbe-c367-4bd2-81d7-797828db5a97" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QxMGNjNThlLWQ5YzUtNDJhNy1hNGZiLTlkZDE2ZWFjMTdmMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:33:22.2444029-07:00\",\r\n \"endTime\": \"2015-07-14T13:33:22.7287027-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f0c726a3-5677-4700-a6a0-6c2cf23a14b3" + ], + "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": [ + "5e491ddf-bed3-439c-a71e-1df609741a5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203353Z:5e491ddf-bed3-439c-a71e-1df609741a5d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QxMGNjNThlLWQ5YzUtNDJhNy1hNGZiLTlkZDE2ZWFjMTdmMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:33:22.2444029-07:00\",\r\n \"endTime\": \"2015-07-14T13:33:22.7287027-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f0c726a3-5677-4700-a6a0-6c2cf23a14b3" + ], + "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": [ + "5e491ddf-bed3-439c-a71e-1df609741a5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203353Z:5e491ddf-bed3-439c-a71e-1df609741a5d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QxMGNjNThlLWQ5YzUtNDJhNy1hNGZiLTlkZDE2ZWFjMTdmMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:33:22.2444029-07:00\",\r\n \"endTime\": \"2015-07-14T13:33:22.7287027-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f0c726a3-5677-4700-a6a0-6c2cf23a14b3" + ], + "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": [ + "5e491ddf-bed3-439c-a71e-1df609741a5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203353Z:5e491ddf-bed3-439c-a71e-1df609741a5d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QxMGNjNThlLWQ5YzUtNDJhNy1hNGZiLTlkZDE2ZWFjMTdmMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d10cc58e-d9c5-42a7-a4fb-9dd16eac17f3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:33:22.2444029-07:00\",\r\n \"endTime\": \"2015-07-14T13:33:22.7287027-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f0c726a3-5677-4700-a6a0-6c2cf23a14b3" + ], + "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": [ + "5e491ddf-bed3-439c-a71e-1df609741a5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203353Z:5e491ddf-bed3-439c-a71e-1df609741a5d" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0c4c0cf-7688-4d7a-b257-3cd0957de19a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "489fb133-7051-44e6-ae31-12e0155e2df6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203357Z:489fb133-7051-44e6-ae31-12e0155e2df6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0c4c0cf-7688-4d7a-b257-3cd0957de19a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "489fb133-7051-44e6-ae31-12e0155e2df6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203357Z:489fb133-7051-44e6-ae31-12e0155e2df6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0c4c0cf-7688-4d7a-b257-3cd0957de19a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "489fb133-7051-44e6-ae31-12e0155e2df6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203357Z:489fb133-7051-44e6-ae31-12e0155e2df6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest3562/providers/Microsoft.Compute/virtualMachines/vm8933?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDM1NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTg5MzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b0c4c0cf-7688-4d7a-b257-3cd0957de19a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "489fb133-7051-44e6-ae31-12e0155e2df6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203357Z:489fb133-7051-44e6-ae31-12e0155e2df6" + ], + "Date": [ + "Tue, 14 Jul 2015 20:33:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c6ed18c-92f8-474a-af0e-c78c0b081663" + ], + "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": [ + "f615d527-c8a4-44fa-8779-9f69aa3ffafb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203428Z:f615d527-c8a4-44fa-8779-9f69aa3ffafb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:34:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c6ed18c-92f8-474a-af0e-c78c0b081663" + ], + "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": [ + "f615d527-c8a4-44fa-8779-9f69aa3ffafb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203428Z:f615d527-c8a4-44fa-8779-9f69aa3ffafb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:34:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c6ed18c-92f8-474a-af0e-c78c0b081663" + ], + "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": [ + "f615d527-c8a4-44fa-8779-9f69aa3ffafb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203428Z:f615d527-c8a4-44fa-8779-9f69aa3ffafb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:34:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c6ed18c-92f8-474a-af0e-c78c0b081663" + ], + "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": [ + "f615d527-c8a4-44fa-8779-9f69aa3ffafb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203428Z:f615d527-c8a4-44fa-8779-9f69aa3ffafb" + ], + "Date": [ + "Tue, 14 Jul 2015 20:34:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "54e60fff-c2ed-4aca-a5de-63b9dc43fb0d" + ], + "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": [ + "7e703d55-8c10-4844-9103-6e39861ae889" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203459Z:7e703d55-8c10-4844-9103-6e39861ae889" + ], + "Date": [ + "Tue, 14 Jul 2015 20:34:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "54e60fff-c2ed-4aca-a5de-63b9dc43fb0d" + ], + "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": [ + "7e703d55-8c10-4844-9103-6e39861ae889" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203459Z:7e703d55-8c10-4844-9103-6e39861ae889" + ], + "Date": [ + "Tue, 14 Jul 2015 20:34:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "54e60fff-c2ed-4aca-a5de-63b9dc43fb0d" + ], + "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": [ + "7e703d55-8c10-4844-9103-6e39861ae889" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203459Z:7e703d55-8c10-4844-9103-6e39861ae889" + ], + "Date": [ + "Tue, 14 Jul 2015 20:34:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "54e60fff-c2ed-4aca-a5de-63b9dc43fb0d" + ], + "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": [ + "7e703d55-8c10-4844-9103-6e39861ae889" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203459Z:7e703d55-8c10-4844-9103-6e39861ae889" + ], + "Date": [ + "Tue, 14 Jul 2015 20:34:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6bed8f36-e32a-4a5d-88dd-35bad1131069" + ], + "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": [ + "f994399d-4553-48ab-86be-b7c78ba31d83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203529Z:f994399d-4553-48ab-86be-b7c78ba31d83" + ], + "Date": [ + "Tue, 14 Jul 2015 20:35:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6bed8f36-e32a-4a5d-88dd-35bad1131069" + ], + "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": [ + "f994399d-4553-48ab-86be-b7c78ba31d83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203529Z:f994399d-4553-48ab-86be-b7c78ba31d83" + ], + "Date": [ + "Tue, 14 Jul 2015 20:35:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6bed8f36-e32a-4a5d-88dd-35bad1131069" + ], + "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": [ + "f994399d-4553-48ab-86be-b7c78ba31d83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203529Z:f994399d-4553-48ab-86be-b7c78ba31d83" + ], + "Date": [ + "Tue, 14 Jul 2015 20:35:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6bed8f36-e32a-4a5d-88dd-35bad1131069" + ], + "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": [ + "f994399d-4553-48ab-86be-b7c78ba31d83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203529Z:f994399d-4553-48ab-86be-b7c78ba31d83" + ], + "Date": [ + "Tue, 14 Jul 2015 20:35:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\",\r\n \"endTime\": \"2015-07-14T13:35:36.5264897-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c608e43-ac74-47a3-85d9-792f1dc22039" + ], + "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": [ + "ee96815e-633e-4720-b58e-de142363d269" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203600Z:ee96815e-633e-4720-b58e-de142363d269" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\",\r\n \"endTime\": \"2015-07-14T13:35:36.5264897-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c608e43-ac74-47a3-85d9-792f1dc22039" + ], + "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": [ + "ee96815e-633e-4720-b58e-de142363d269" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203600Z:ee96815e-633e-4720-b58e-de142363d269" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\",\r\n \"endTime\": \"2015-07-14T13:35:36.5264897-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c608e43-ac74-47a3-85d9-792f1dc22039" + ], + "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": [ + "ee96815e-633e-4720-b58e-de142363d269" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203600Z:ee96815e-633e-4720-b58e-de142363d269" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/b0c4c0cf-7688-4d7a-b257-3cd0957de19a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IwYzRjMGNmLTc2ODgtNGQ3YS1iMjU3LTNjZDA5NTdkZTE5YT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b0c4c0cf-7688-4d7a-b257-3cd0957de19a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T13:33:54.7602192-07:00\",\r\n \"endTime\": \"2015-07-14T13:35:36.5264897-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7c608e43-ac74-47a3-85d9-792f1dc22039" + ], + "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": [ + "ee96815e-633e-4720-b58e-de142363d269" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203600Z:ee96815e-633e-4720-b58e-de142363d269" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "x-ms-correlation-request-id": [ + "4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203604Z:4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "x-ms-correlation-request-id": [ + "4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203604Z:4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "x-ms-correlation-request-id": [ + "4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203604Z:4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest3562?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDM1NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "x-ms-correlation-request-id": [ + "4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203604Z:4ba9532d-3235-4f8b-b4d6-9c18ecb39db8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "x-ms-correlation-request-id": [ + "fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203620Z:fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "x-ms-correlation-request-id": [ + "fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203620Z:fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "x-ms-correlation-request-id": [ + "fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203620Z:fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "x-ms-correlation-request-id": [ + "fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203620Z:fcd970c0-6182-44cd-a9aa-62a977d0df75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "x-ms-correlation-request-id": [ + "05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203636Z:05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "x-ms-correlation-request-id": [ + "05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203636Z:05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "x-ms-correlation-request-id": [ + "05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203636Z:05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "x-ms-correlation-request-id": [ + "05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T203636Z:05c7e9ac-2e2f-417b-a77c-4044ac436b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 20:36:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "x-ms-request-id": [ + "010ec23a-30f2-45dd-bc53-620251eb923d" ], "x-ms-correlation-request-id": [ - "065e2aef-4780-4564-8ede-629a499b3a19" + "010ec23a-30f2-45dd-bc53-620251eb923d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180909Z:065e2aef-4780-4564-8ede-629a499b3a19" + "WESTUS:20150714T203651Z:010ec23a-30f2-45dd-bc53-620251eb923d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:09:09 GMT" + "Tue, 14 Jul 2015 20:36:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8f922913-4f10-4fae-b6b3-d410fa948a52?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhmOTIyOTEzLTRmMTAtNGZhZS1iNmIzLWQ0MTBmYTk0OGE1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8f922913-4f10-4fae-b6b3-d410fa948a52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:09:07.2557394-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2164,51 +9644,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1ce84e0f-c56e-4db6-9a5c-d976df06ca4e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14953" + ], + "x-ms-request-id": [ + "010ec23a-30f2-45dd-bc53-620251eb923d" ], "x-ms-correlation-request-id": [ - "dab4403d-242d-4553-a57d-bfea8e9c08f5" + "010ec23a-30f2-45dd-bc53-620251eb923d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180910Z:dab4403d-242d-4553-a57d-bfea8e9c08f5" + "WESTUS:20150714T203651Z:010ec23a-30f2-45dd-bc53-620251eb923d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:09:10 GMT" + "Tue, 14 Jul 2015 20:36:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8f922913-4f10-4fae-b6b3-d410fa948a52?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhmOTIyOTEzLTRmMTAtNGZhZS1iNmIzLWQ0MTBmYTk0OGE1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8f922913-4f10-4fae-b6b3-d410fa948a52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:09:07.2557394-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2216,51 +9695,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a0a5e72d-b3de-428e-9369-c217df1cb431" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14953" + ], + "x-ms-request-id": [ + "010ec23a-30f2-45dd-bc53-620251eb923d" ], "x-ms-correlation-request-id": [ - "73a75db0-b300-4fa8-b919-62c1b63655bc" + "010ec23a-30f2-45dd-bc53-620251eb923d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T180941Z:73a75db0-b300-4fa8-b919-62c1b63655bc" + "WESTUS:20150714T203651Z:010ec23a-30f2-45dd-bc53-620251eb923d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:09:40 GMT" + "Tue, 14 Jul 2015 20:36:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8f922913-4f10-4fae-b6b3-d410fa948a52?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhmOTIyOTEzLTRmMTAtNGZhZS1iNmIzLWQ0MTBmYTk0OGE1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8f922913-4f10-4fae-b6b3-d410fa948a52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:09:07.2557394-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2268,51 +9746,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "ca65e1cb-dfec-4298-a36e-facd7f522be9" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14953" + ], + "x-ms-request-id": [ + "010ec23a-30f2-45dd-bc53-620251eb923d" ], "x-ms-correlation-request-id": [ - "a0d7c3bb-bb65-40d6-9d98-9830e8d9e90c" + "010ec23a-30f2-45dd-bc53-620251eb923d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181012Z:a0d7c3bb-bb65-40d6-9d98-9830e8d9e90c" + "WESTUS:20150714T203651Z:010ec23a-30f2-45dd-bc53-620251eb923d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:10:11 GMT" + "Tue, 14 Jul 2015 20:36:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8f922913-4f10-4fae-b6b3-d410fa948a52?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhmOTIyOTEzLTRmMTAtNGZhZS1iNmIzLWQ0MTBmYTk0OGE1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8f922913-4f10-4fae-b6b3-d410fa948a52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:09:07.2557394-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2320,51 +9797,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "3c4c75b2-0280-4e31-8ba0-ae867fe678f1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14952" + ], + "x-ms-request-id": [ + "2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "x-ms-correlation-request-id": [ - "cf7f2ddc-babc-4ae4-b90c-37921760927a" + "2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181043Z:cf7f2ddc-babc-4ae4-b90c-37921760927a" + "WESTUS:20150714T203707Z:2f8445ec-fd06-4dd2-b05b-92fb500aab4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:10:42 GMT" + "Tue, 14 Jul 2015 20:37:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8f922913-4f10-4fae-b6b3-d410fa948a52?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhmOTIyOTEzLTRmMTAtNGZhZS1iNmIzLWQ0MTBmYTk0OGE1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8f922913-4f10-4fae-b6b3-d410fa948a52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:09:07.2557394-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2372,51 +9848,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "009ac8a1-ee3a-4bd6-bb92-d70fec1558cd" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14952" + ], + "x-ms-request-id": [ + "2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "x-ms-correlation-request-id": [ - "62782b56-5ba6-494a-8ad1-c21ebe9ff187" + "2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181113Z:62782b56-5ba6-494a-8ad1-c21ebe9ff187" + "WESTUS:20150714T203707Z:2f8445ec-fd06-4dd2-b05b-92fb500aab4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:11:12 GMT" + "Tue, 14 Jul 2015 20:37:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8f922913-4f10-4fae-b6b3-d410fa948a52?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhmOTIyOTEzLTRmMTAtNGZhZS1iNmIzLWQ0MTBmYTk0OGE1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"8f922913-4f10-4fae-b6b3-d410fa948a52\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T11:09:07.2557394-07:00\",\r\n \"endTime\": \"2015-06-16T11:11:29.2253789-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2424,38 +9899,40 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "788beb7a-b2db-428c-a230-4da23ae9ce00" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14952" + ], + "x-ms-request-id": [ + "2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "x-ms-correlation-request-id": [ - "6dc4bc06-a12f-4a37-b818-a5a7d1fee942" + "2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181144Z:6dc4bc06-a12f-4a37-b818-a5a7d1fee942" + "WESTUS:20150714T203707Z:2f8445ec-fd06-4dd2-b05b-92fb500aab4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:11:44 GMT" + "Tue, 14 Jul 2015 20:37:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest2033?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDIwMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -2476,17 +9953,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" ], "x-ms-request-id": [ - "41321c1c-6739-4634-949d-88c6951a9c97" + "2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "x-ms-correlation-request-id": [ - "41321c1c-6739-4634-949d-88c6951a9c97" + "2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181147Z:41321c1c-6739-4634-949d-88c6951a9c97" + "WESTUS:20150714T203707Z:2f8445ec-fd06-4dd2-b05b-92fb500aab4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2495,23 +9972,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:11:47 GMT" + "Tue, 14 Jul 2015 20:37:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TURNekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2531,16 +10005,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14951" ], "x-ms-request-id": [ - "4df5a7d6-7060-44b6-bf65-44dd33dd5db3" + "800c3c90-5f8f-4429-9665-6c40004db929" ], "x-ms-correlation-request-id": [ - "4df5a7d6-7060-44b6-bf65-44dd33dd5db3" + "800c3c90-5f8f-4429-9665-6c40004db929" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181148Z:4df5a7d6-7060-44b6-bf65-44dd33dd5db3" + "WESTUS:20150714T203722Z:800c3c90-5f8f-4429-9665-6c40004db929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2549,23 +10023,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:11:48 GMT" + "Tue, 14 Jul 2015 20:37:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TURNekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2585,16 +10056,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14951" ], "x-ms-request-id": [ - "2a6fade5-ddf2-4016-80f8-bc84c803c97c" + "800c3c90-5f8f-4429-9665-6c40004db929" ], "x-ms-correlation-request-id": [ - "2a6fade5-ddf2-4016-80f8-bc84c803c97c" + "800c3c90-5f8f-4429-9665-6c40004db929" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181204Z:2a6fade5-ddf2-4016-80f8-bc84c803c97c" + "WESTUS:20150714T203722Z:800c3c90-5f8f-4429-9665-6c40004db929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2603,23 +10074,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:12:03 GMT" + "Tue, 14 Jul 2015 20:37:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TURNekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2639,16 +10107,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14951" ], "x-ms-request-id": [ - "2d4adca0-8253-4f3d-9db5-565426421828" + "800c3c90-5f8f-4429-9665-6c40004db929" ], "x-ms-correlation-request-id": [ - "2d4adca0-8253-4f3d-9db5-565426421828" + "800c3c90-5f8f-4429-9665-6c40004db929" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181219Z:2d4adca0-8253-4f3d-9db5-565426421828" + "WESTUS:20150714T203722Z:800c3c90-5f8f-4429-9665-6c40004db929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2657,23 +10125,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:12:19 GMT" + "Tue, 14 Jul 2015 20:37:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TURNekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2693,16 +10158,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14951" ], "x-ms-request-id": [ - "20b72d50-d5f2-40a1-ba24-3994d40ab7de" + "800c3c90-5f8f-4429-9665-6c40004db929" ], "x-ms-correlation-request-id": [ - "20b72d50-d5f2-40a1-ba24-3994d40ab7de" + "800c3c90-5f8f-4429-9665-6c40004db929" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181235Z:20b72d50-d5f2-40a1-ba24-3994d40ab7de" + "WESTUS:20150714T203722Z:800c3c90-5f8f-4429-9665-6c40004db929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2711,23 +10176,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:12:34 GMT" + "Tue, 14 Jul 2015 20:37:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TURNekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2743,20 +10205,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14950" ], "x-ms-request-id": [ - "c903bc8f-165d-4431-9524-14510501725c" + "1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "x-ms-correlation-request-id": [ - "c903bc8f-165d-4431-9524-14510501725c" + "1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181250Z:c903bc8f-165d-4431-9524-14510501725c" + "WESTUS:20150714T203738Z:1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2765,23 +10224,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:12:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 20:37:37 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TURNekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2797,20 +10250,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14950" ], "x-ms-request-id": [ - "1fef0579-9063-4b41-8a82-53780dc469be" + "1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "x-ms-correlation-request-id": [ - "1fef0579-9063-4b41-8a82-53780dc469be" + "1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181306Z:1fef0579-9063-4b41-8a82-53780dc469be" + "WESTUS:20150714T203738Z:1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,23 +10269,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:13:05 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 20:37:37 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TURNekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2851,20 +10295,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14950" ], "x-ms-request-id": [ - "9df46c4b-8dc1-4316-b9cb-b5c4089951b1" + "1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "x-ms-correlation-request-id": [ - "9df46c4b-8dc1-4316-b9cb-b5c4089951b1" + "1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181321Z:9df46c4b-8dc1-4316-b9cb-b5c4089951b1" + "WESTUS:20150714T203738Z:1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2873,23 +10314,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:13:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 20:37:37 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyMDMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TURNekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzNTYyLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF6TlRZeUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2906,16 +10341,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14950" ], "x-ms-request-id": [ - "b396cfc2-4f33-4a65-8b9a-92c482668c70" + "1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "x-ms-correlation-request-id": [ - "b396cfc2-4f33-4a65-8b9a-92c482668c70" + "1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181337Z:b396cfc2-4f33-4a65-8b9a-92c482668c70" + "WESTUS:20150714T203738Z:1b0e5341-567b-44be-bee3-71534b4eaa8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2924,7 +10359,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:13:36 GMT" + "Tue, 14 Jul 2015 20:37:37 GMT" ] }, "StatusCode": 200 @@ -2932,36 +10367,37 @@ ], "Names": { "TestVMDataDiskScenario": [ - "pslibtest2033", - "pslibtest6845", - "as1254" + "pslibtest3562", + "pslibtest4364", + "as4321" ], "CreatePublicIP": [ - "azsmnet4493", - "azsmnet6604" + "azsmnet4009", + "azsmnet2340" ], "CreateVNET": [ - "azsmnet3160", - "azsmnet9771" + "azsmnet1799", + "azsmnet3841" ], "CreateNIC": [ - "azsmnet9731", - "azsmnet9549" + "azsmnet7394", + "azsmnet5427" ], "CreateDefaultVMInput": [ - "pslibtest3531", - "pslibtest7166", - "pslibtest8967", - "vm1379" + "pslibtest3431", + "pslibtest167", + "pslibtest4157", + "vm8933", + "Microsoft.Compute/virtualMachines109" ], "<TestVMDataDiskScenario>b__c": [ - "pslibtest3158", - "pslibtest6759", - "pslibtest8024", - "pslibtest1971" + "pslibtest995", + "pslibtest4479", + "pslibtest604", + "pslibtest5935" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageGet.json index 065fc864fd9e4..f41efc9f4e4a0 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageGet.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201505?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzQuMC4yMDE1MDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzQuMC4yMDE1MDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "414" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b71547f1-f6d0-4e01-841b-275597807e40" + "71c0dd2b-f33c-4bf2-afce-2b3d4ea71fac" ], "Cache-Control": [ "no-cache" @@ -38,16 +38,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14909" ], "x-ms-correlation-request-id": [ - "e8548942-06e2-4b26-90ab-db0d6ce91655" + "d957cbc2-4efc-4f73-bfdb-bec8742588f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175207Z:e8548942-06e2-4b26-90ab-db0d6ce91655" + "WESTUS:20150714T195454Z:d957cbc2-4efc-4f73-bfdb-bec8742588f8" ], "Date": [ - "Tue, 16 Jun 2015 17:52:06 GMT" + "Tue, 14 Jul 2015 19:54:53 GMT" ] }, "StatusCode": 200 @@ -55,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListFilters.json index d42bde950c2a7..08b4e12b17828 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListFilters.json @@ -1,328 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0w", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "ca311b15-4ddd-4933-9f63-ba4451d0b7df" - ], - "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": [ - "0474621b-3b6a-49c5-bcf7-46dc8070ffa4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175156Z:0474621b-3b6a-49c5-bcf7-46dc8070ffa4" - ], - "Date": [ - "Tue, 16 Jun 2015 17:51:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "313" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "7e3bfb1f-e702-4430-9219-82b3412ee20f" - ], - "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": [ - "4cc3b683-c8ca-4723-9c05-c6ac5247d2f8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175157Z:4cc3b683-c8ca-4723-9c05-c6ac5247d2f8" - ], - "Date": [ - "Tue, 16 Jun 2015 17:51:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=2", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0y", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "623" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "3e0b5284-79be-4843-84c9-684b736bde31" - ], - "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": [ - "c366a2c4-5af7-4153-9746-b21586889f31" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175158Z:c366a2c4-5af7-4153-9746-b21586889f31" - ], - "Date": [ - "Tue, 16 Jun 2015 17:51:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$orderby=name%20desc", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJG9yZGVyYnk9bmFtZSUyMGRlc2M=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "933" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "faecb4ec-9bfd-466b-9c3c-39ead8dddf58" - ], - "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": [ - "78a8f46d-1a24-4ff6-8597-eb149ab6c8a5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175159Z:78a8f46d-1a24-4ff6-8597-eb149ab6c8a5" - ], - "Date": [ - "Tue, 16 Jun 2015 17:51:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=2&$orderby=name%20asc", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0yJiRvcmRlcmJ5PW5hbWUlMjBhc2M=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "623" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8bec0de0-34ca-4bbc-9923-932d3c185838" - ], - "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": [ - "88b442db-71f7-4dfa-91c4-1de737e44ef3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175200Z:88b442db-71f7-4dfa-91c4-1de737e44ef3" - ], - "Date": [ - "Tue, 16 Jun 2015 17:51:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1&$orderby=name%20desc", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0xJiRvcmRlcmJ5PW5hbWUlMjBkZXNj", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "313" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8713dc82-a46f-4cd7-b26b-496783362182" - ], - "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": [ - "5d297760-47d3-4660-a03b-96dcee6f2085" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T175201Z:5d297760-47d3-4660-a03b-96dcee6f2085" - ], - "Date": [ - "Tue, 16 Jun 2015 17:52:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1&$orderby=name%20asc", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0xJiRvcmRlcmJ5PW5hbWUlMjBhc2M=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -340,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ab2f9bb-7413-4126-bfb5-27f784e92615" + "12c96fcf-d027-46de-a5a3-d7c3ebe7c106" ], "Cache-Control": [ "no-cache" @@ -350,16 +38,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14999" ], "x-ms-correlation-request-id": [ - "7c3fec9a-2fe5-4050-889a-158f714a8351" + "802728d5-8dcd-47c4-a3b4-fef50b21d95f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175201Z:7c3fec9a-2fe5-4050-889a-158f714a8351" + "WESTUS:20150715T011128Z:802728d5-8dcd-47c4-a3b4-fef50b21d95f" ], "Date": [ - "Tue, 16 Jun 2015 17:52:00 GMT" + "Wed, 15 Jul 2015 01:11:28 GMT" ] }, "StatusCode": 200 @@ -367,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListNoFilter.json index 3ecedcde6d928..b26e253d80111 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListNoFilter.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "933" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f408c8f0-26c0-40ac-bacc-9bb4809b49d3" + "48c4998f-56e2-4397-9684-1d8776569289" ], "Cache-Control": [ "no-cache" @@ -38,16 +38,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "1bdeb2ee-7827-4c87-943e-0b15cc0a2c46" + "88115a7b-41ab-438c-b30c-2e2f13979864" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175212Z:1bdeb2ee-7827-4c87-943e-0b15cc0a2c46" + "WESTUS:20150714T195519Z:88115a7b-41ab-438c-b30c-2e2f13979864" ], "Date": [ - "Tue, 16 Jun 2015 17:52:11 GMT" + "Tue, 14 Jul 2015 19:55:19 GMT" ] }, "StatusCode": 200 @@ -55,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListOffers.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListOffers.json index b5f752b227521..6f460dc20108d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListOffers.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListOffers.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a64b531a-5bd6-4d11-b7e9-66a9087c6d49" + "9804aa0a-65da-4ed0-bc5b-0962b04bf06a" ], "Cache-Control": [ "no-cache" @@ -38,16 +38,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14985" ], "x-ms-correlation-request-id": [ - "95118d98-c083-47a3-9312-1633af402e75" + "fb0752bb-8319-47a7-b280-db1c1c772e1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175217Z:95118d98-c083-47a3-9312-1633af402e75" + "WESTUS:20150714T195534Z:fb0752bb-8319-47a7-b280-db1c1c772e1a" ], "Date": [ - "Tue, 16 Jun 2015 17:52:17 GMT" + "Tue, 14 Jul 2015 19:55:33 GMT" ] }, "StatusCode": 200 @@ -55,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListPublishers.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListPublishers.json index cf131a5dbc00f..900aa902990cf 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListPublishers.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListPublishers.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "47137" + "57043" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f904fbc7-0812-40f3-8ffb-73a7b8c93132" + "9b0158c5-809c-457b-be01-7011aae39043" ], "Cache-Control": [ "no-cache" @@ -38,16 +38,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14986" ], "x-ms-correlation-request-id": [ - "0119a207-ef80-48a7-83e8-7f97a1ee22b1" + "8c7e3931-bf37-4a21-8147-9c5ded3bc181" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175145Z:0119a207-ef80-48a7-83e8-7f97a1ee22b1" + "WESTUS:20150714T195511Z:8c7e3931-bf37-4a21-8147-9c5ded3bc181" ], "Date": [ - "Tue, 16 Jun 2015 17:51:45 GMT" + "Tue, 14 Jul 2015 19:55:10 GMT" ] }, "StatusCode": 200 @@ -55,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListSkus.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListSkus.json index 77a76d5fca9fb..6e6f7ba026852 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListSkus.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMImagesTests/TestVMImageListSkus.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1203" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6be89288-a512-4479-9ddc-092030c3e3c9" + "6554ed36-fcb7-43c7-9ca6-584665ea5575" ], "Cache-Control": [ "no-cache" @@ -38,16 +38,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14996" ], "x-ms-correlation-request-id": [ - "fe793299-72e8-4c5b-a4c2-021b955f9d66" + "60c54fd4-7f53-4cb9-bf92-62d537fee58f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175151Z:fe793299-72e8-4c5b-a4c2-021b955f9d66" + "WESTUS:20150714T195503Z:60c54fd4-7f53-4cb9-bf92-62d537fee58f" ], "Date": [ - "Tue, 16 Jun 2015 17:51:50 GMT" + "Tue, 14 Jul 2015 19:55:03 GMT" ] }, "StatusCode": 200 @@ -55,6 +55,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json index dbbfaba509987..516e310bc629c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08dc881b-b5e1-4753-8c94-84f2b7a42050" + "88f1f549-ec91-4811-bd9a-f92adc4b40f5" ], "Cache-Control": [ "no-cache" @@ -41,37 +41,31 @@ "14999" ], "x-ms-correlation-request-id": [ - "03640639-a695-483f-971b-66703dafd1db" + "77ba07be-d8ec-481a-b7bf-4c89569ae325" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025838Z:03640639-a695-483f-971b-66703dafd1db" + "WESTUS:20150715T011154Z:77ba07be-d8ec-481a-b7bf-4c89569ae325" ], "Date": [ - "Wed, 17 Jun 2015 02:58:37 GMT" + "Wed, 15 Jul 2015 01:11:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourcegroups/pslibtest3084?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDMwODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084\",\r\n \"name\": \"pslibtest3084\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,107 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "94202f94-f0d6-4b0f-8bca-b4a96699dea8" - ], - "x-ms-correlation-request-id": [ - "94202f94-f0d6-4b0f-8bca-b4a96699dea8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T025841Z:94202f94-f0d6-4b0f-8bca-b4a96699dea8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 17 Jun 2015 02:58:41 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourcegroups/pslibtest3084?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDMwODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "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/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084\",\r\n \"name\": \"pslibtest3084\",\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" + "x-ms-request-id": [ + "88f1f549-ec91-4811-bd9a-f92adc4b40f5" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "e0b49f26-5300-4c19-ac9c-6151a973224e" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-correlation-request-id": [ - "e0b49f26-5300-4c19-ac9c-6151a973224e" + "77ba07be-d8ec-481a-b7bf-4c89569ae325" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025925Z:e0b49f26-5300-4c19-ac9c-6151a973224e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150715T011154Z:77ba07be-d8ec-481a-b7bf-4c89569ae325" ], "Date": [ - "Wed, 17 Jun 2015 02:59:25 GMT" + "Wed, 15 Jul 2015 01:11:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Storage/storageAccounts/pslibtest3530?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QzNTMwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "51cbbabd-efdd-4309-8874-304d506f6164" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +128,48 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a04567cc-ac2c-44ff-b76b-e231ad42d7fe" + "88f1f549-ec91-4811-bd9a-f92adc4b40f5" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Storage/operations/a04567cc-ac2c-44ff-b76b-e231ad42d7fe?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-correlation-request-id": [ - "7c5c8c63-b5b5-41a5-a68a-7f079761a3a5" + "77ba07be-d8ec-481a-b7bf-4c89569ae325" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025845Z:7c5c8c63-b5b5-41a5-a68a-7f079761a3a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150715T011154Z:77ba07be-d8ec-481a-b7bf-4c89569ae325" ], "Date": [ - "Wed, 17 Jun 2015 02:58:45 GMT" + "Wed, 15 Jul 2015 01:11:53 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Storage/operations/a04567cc-ac2c-44ff-b76b-e231ad42d7fe?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2EwNDU2N2NjLWFjMmMtNDRmZi1iNzZiLWUyMzFhZDQyZDdmZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "578c7a3e-6a5f-4d67-96a8-0ccfb3c133ea" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d62123c2-1d2f-4142-8f5a-a641726de1fa" + "88f1f549-ec91-4811-bd9a-f92adc4b40f5" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Storage/operations/a04567cc-ac2c-44ff-b76b-e231ad42d7fe?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "240a14b3-f00a-42ee-b8c2-11293c1adcfe" + "77ba07be-d8ec-481a-b7bf-4c89569ae325" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025846Z:240a14b3-f00a-42ee-b8c2-11293c1adcfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150715T011154Z:77ba07be-d8ec-481a-b7bf-4c89569ae325" ], "Date": [ - "Wed, 17 Jun 2015 02:58:46 GMT" + "Wed, 15 Jul 2015 01:11:53 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Storage/operations/a04567cc-ac2c-44ff-b76b-e231ad42d7fe?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2EwNDU2N2NjLWFjMmMtNDRmZi1iNzZiLWUyMzFhZDQyZDdmZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "1a73b61d-e187-48ec-bb7d-3d5cc56ee0d6" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687\",\r\n \"name\": \"pslibtest5687\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +238,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "f8f42897-a48d-4a6a-9957-84d9e08286c9" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "x-ms-request-id": [ + "1442c446-19d2-4b36-a371-24aec1677d13" ], "x-ms-correlation-request-id": [ - "9af749b4-2a7d-415c-a9ae-128645add8aa" + "1442c446-19d2-4b36-a371-24aec1677d13" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025911Z:9af749b4-2a7d-415c-a9ae-128645add8aa" + "WESTUS:20150715T011156Z:1442c446-19d2-4b36-a371-24aec1677d13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 17 Jun 2015 02:59:11 GMT" + "Wed, 15 Jul 2015 01:11:55 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "a4d5dd67-4a99-408e-9da5-ff8efcd07672" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Storage/storageAccounts/pslibtest3530\",\r\n \"name\": \"pslibtest3530\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest3530.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest3530.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest3530.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-17T02:58:43.881635Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687\",\r\n \"name\": \"pslibtest5687\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,48 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "a0801d58-e806-4060-927d-a6aad24ac95b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "x-ms-request-id": [ + "1442c446-19d2-4b36-a371-24aec1677d13" ], "x-ms-correlation-request-id": [ - "1a4becf2-bf7e-4526-bf8b-8862a5a1bbd1" + "1442c446-19d2-4b36-a371-24aec1677d13" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025922Z:1a4becf2-bf7e-4526-bf8b-8862a5a1bbd1" + "WESTUS:20150715T011156Z:1442c446-19d2-4b36-a371-24aec1677d13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 17 Jun 2015 02:59:21 GMT" + "Wed, 15 Jul 2015 01:11:55 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSYkdG9wPTE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687\",\r\n \"name\": \"pslibtest5687\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "320" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -422,48 +346,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "8253f593-3175-4072-8c14-9af6c34079fa" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "1442c446-19d2-4b36-a371-24aec1677d13" ], "x-ms-correlation-request-id": [ - "5049fc4e-8d27-42bf-ac7f-d24a8dc34d1b" + "1442c446-19d2-4b36-a371-24aec1677d13" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025923Z:5049fc4e-8d27-42bf-ac7f-d24a8dc34d1b" + "WESTUS:20150715T011156Z:1442c446-19d2-4b36-a371-24aec1677d13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 02:59:22 GMT" + "Wed, 15 Jul 2015 01:11:55 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687\",\r\n \"name\": \"pslibtest5687\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "576" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -474,54 +400,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "7690335a-9edb-4af9-a708-b4b4d9a07ead" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "1442c446-19d2-4b36-a371-24aec1677d13" ], "x-ms-correlation-request-id": [ - "9c7475ad-b107-40ff-9127-d5fe8d6e52f7" + "1442c446-19d2-4b36-a371-24aec1677d13" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025924Z:9c7475ad-b107-40ff-9127-d5fe8d6e52f7" + "WESTUS:20150715T011156Z:1442c446-19d2-4b36-a371-24aec1677d13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 02:59:24 GMT" + "Wed, 15 Jul 2015 01:11:55 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/publicIPAddresses/azsmnet2718/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQyNzE4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5551\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2718\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/publicIPAddresses/azsmnet2718\",\r\n \"etag\": \"W/\\\"e81fcec7-5115-4193-83a4-32997a166d10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5551\",\r\n \"fqdn\": \"azsmnet5551.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687\",\r\n \"name\": \"pslibtest5687\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "579" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,14 +454,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "6175f913-613d-4df9-966e-cd851a58f3d3" + "0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Network/locations/southeastasia/operations/6175f913-613d-4df9-966e-cd851a58f3d3?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011240Z:0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,42 +472,32 @@ "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": [ - "88bbec71-5af0-4698-b49c-a9357547ccd7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T025931Z:88bbec71-5af0-4698-b49c-a9357547ccd7" - ], "Date": [ - "Wed, 17 Jun 2015 02:59:31 GMT" + "Wed, 15 Jul 2015 01:12:39 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Network/locations/southeastasia/operations/6175f913-613d-4df9-966e-cd851a58f3d3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzYxNzVmOTEzLTYxM2QtNGRmOS05NjZlLWNkODUxYTU4ZjNkMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687\",\r\n \"name\": \"pslibtest5687\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -593,8 +508,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "51f03d0b-d291-4da1-99b2-3312286c2e12" + "0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" + ], + "x-ms-correlation-request-id": [ + "0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011240Z:0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -602,39 +526,32 @@ "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": [ - "28428747-394e-4566-8476-eeea378b389d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150617T025932Z:28428747-394e-4566-8476-eeea378b389d" - ], "Date": [ - "Wed, 17 Jun 2015 02:59:32 GMT" + "Wed, 15 Jul 2015 01:12:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/publicIPAddresses/azsmnet2718/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQyNzE4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2718\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/publicIPAddresses/azsmnet2718\",\r\n \"etag\": \"W/\\\"5391ea45-8324-4268-8ca6-548bc18ef9c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5551\",\r\n \"fqdn\": \"azsmnet5551.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687\",\r\n \"name\": \"pslibtest5687\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,8 +562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "3334c4b1-fb57-4f64-97fa-c5ad159ee7ed" + "0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" + ], + "x-ms-correlation-request-id": [ + "0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011240Z:0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,48 +580,86 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"5391ea45-8324-4268-8ca6-548bc18ef9c0\"" + "Date": [ + "Wed, 15 Jul 2015 01:12:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Content-Length": [ + "35" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687\",\r\n \"name\": \"pslibtest5687\",\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": [ + "1197" + ], + "x-ms-request-id": [ + "0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" ], "x-ms-correlation-request-id": [ - "1b048b3d-0c59-41db-899a-583a7e62791c" + "0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025932Z:1b048b3d-0c59-41db-899a-583a7e62791c" + "WESTUS:20150715T011240Z:0bb254b9-9c0a-4239-9bd3-3bfb7bab019f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 02:59:32 GMT" + "Wed, 15 Jul 2015 01:12:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/virtualnetworks/azsmnet4157?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NDE1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet7653\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4157\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/virtualNetworks/azsmnet4157\",\r\n \"etag\": \"W/\\\"08df43e0-8039-4435-8e10-53c1fe9ca09c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7653\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/virtualNetworks/azsmnet4157/subnets/azsmnet7653\",\r\n \"etag\": \"W/\\\"08df43e0-8039-4435-8e10-53c1fe9ca09c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "959" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -707,56 +671,59 @@ "no-cache" ], "Retry-After": [ - "10" + "25" ], "x-ms-request-id": [ - "975a1ab6-e7ba-4b0a-896a-2b48d8a08c21" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Network/locations/southeastasia/operations/975a1ab6-e7ba-4b0a-896a-2b48d8a08c21?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1273a2b9-b5f0-4aa2-8ebf-ff5490839502" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/1273a2b9-b5f0-4aa2-8ebf-ff5490839502?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "0deabd93-d983-47f6-8b82-821cec6666c4" + "1d890855-9882-43d9-8e41-65fb9c3af3a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025935Z:0deabd93-d983-47f6-8b82-821cec6666c4" + "WESTUS:20150715T011201Z:1d890855-9882-43d9-8e41-65fb9c3af3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:35 GMT" + "Wed, 15 Jul 2015 01:12:00 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Network/locations/southeastasia/operations/975a1ab6-e7ba-4b0a-896a-2b48d8a08c21?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3NWExYWI2LWU3YmEtNGIwYS04OTZhLTJiNDhkOGEwOGMyMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -767,48 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "3528461c-6c64-487a-b851-8b5f668e1f79" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "1273a2b9-b5f0-4aa2-8ebf-ff5490839502" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/1273a2b9-b5f0-4aa2-8ebf-ff5490839502?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "3802b8b2-fb4c-4ea4-a626-1f6bc29957b1" + "1d890855-9882-43d9-8e41-65fb9c3af3a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025936Z:3802b8b2-fb4c-4ea4-a626-1f6bc29957b1" + "WESTUS:20150715T011201Z:1d890855-9882-43d9-8e41-65fb9c3af3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:36 GMT" + "Wed, 15 Jul 2015 01:12:00 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/virtualnetworks/azsmnet4157/subnets/azsmnet7653?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NDE1Ny9zdWJuZXRzL2F6c21uZXQ3NjUzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7653\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/virtualNetworks/azsmnet4157/subnets/azsmnet7653\",\r\n \"etag\": \"W/\\\"80b8f34c-c569-4557-86a1-cc554b3c4e18\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "355" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,57 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "411df87f-140c-480d-869c-ca3c495d0f02" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "1273a2b9-b5f0-4aa2-8ebf-ff5490839502" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"80b8f34c-c569-4557-86a1-cc554b3c4e18\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/1273a2b9-b5f0-4aa2-8ebf-ff5490839502?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "c4d7616a-0a36-41b1-9d34-d82a900e9f1c" + "1d890855-9882-43d9-8e41-65fb9c3af3a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025937Z:c4d7616a-0a36-41b1-9d34-d82a900e9f1c" + "WESTUS:20150715T011201Z:1d890855-9882-43d9-8e41-65fb9c3af3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:36 GMT" + "Wed, 15 Jul 2015 01:12:00 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ0MzAxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/virtualNetworks/azsmnet4157/subnets/azsmnet7653\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/publicIPAddresses/azsmnet2718\"\r\n }\r\n },\r\n \"name\": \"azsmnet9191\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet4301\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "716" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4301\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301\",\r\n \"etag\": \"W/\\\"1de20388-85ac-426f-94fc-7726c9aa49a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9191\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301/ipConfigurations/azsmnet9191\",\r\n \"etag\": \"W/\\\"1de20388-85ac-426f-94fc-7726c9aa49a6\\\"\",\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/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/publicIPAddresses/azsmnet2718\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/virtualNetworks/azsmnet4157/subnets/azsmnet7653\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1324" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -880,54 +862,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "8c9ce4a3-cfd4-49eb-90b2-cf3464441579" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Network/locations/southeastasia/operations/8c9ce4a3-cfd4-49eb-90b2-cf3464441579?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "1273a2b9-b5f0-4aa2-8ebf-ff5490839502" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/1273a2b9-b5f0-4aa2-8ebf-ff5490839502?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "9db5e683-a5db-4c66-8fa9-5c67af85273d" + "1d890855-9882-43d9-8e41-65fb9c3af3a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025942Z:9db5e683-a5db-4c66-8fa9-5c67af85273d" + "WESTUS:20150715T011201Z:1d890855-9882-43d9-8e41-65fb9c3af3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:42 GMT" + "Wed, 15 Jul 2015 01:12:00 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Network/locations/southeastasia/operations/8c9ce4a3-cfd4-49eb-90b2-cf3464441579?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhjOWNlNGEzLWNmZDQtNDllYi05MGIyLWNmMzQ2NDQ0MTU3OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/1273a2b9-b5f0-4aa2-8ebf-ff5490839502?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyNzNhMmI5LWI1ZjAtNGFhMi04ZWJmLWZmNTQ5MDgzOTUwMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -939,10 +921,7 @@ "no-cache" ], "x-ms-request-id": [ - "571c17e9-7078-48ac-9b52-cd3424e99a36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d8cf80f-5661-45de-95cb-ded32b9fcbe1" ], "Cache-Control": [ "no-cache" @@ -952,34 +931,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14998" ], "x-ms-correlation-request-id": [ - "20d21a59-925d-4898-85e0-a1d228bf7bde" + "ca6c8f2b-5de2-4138-a498-4dce8ae7dab9" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025943Z:20d21a59-925d-4898-85e0-a1d228bf7bde" + "WESTUS:20150715T011227Z:ca6c8f2b-5de2-4138-a498-4dce8ae7dab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:43 GMT" + "Wed, 15 Jul 2015 01:12:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ0MzAxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/1273a2b9-b5f0-4aa2-8ebf-ff5490839502?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyNzNhMmI5LWI1ZjAtNGFhMi04ZWJmLWZmNTQ5MDgzOTUwMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4301\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301\",\r\n \"etag\": \"W/\\\"1de20388-85ac-426f-94fc-7726c9aa49a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9191\",\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301/ipConfigurations/azsmnet9191\",\r\n \"etag\": \"W/\\\"1de20388-85ac-426f-94fc-7726c9aa49a6\\\"\",\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/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/publicIPAddresses/azsmnet2718\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/virtualNetworks/azsmnet4157/subnets/azsmnet7653\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1324" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -991,56 +973,47 @@ "no-cache" ], "x-ms-request-id": [ - "274506bf-89ba-4f94-9b1d-dcb184000624" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d8cf80f-5661-45de-95cb-ded32b9fcbe1" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"1de20388-85ac-426f-94fc-7726c9aa49a6\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14998" ], "x-ms-correlation-request-id": [ - "8baf6144-e869-4880-bc7f-69d8c18f648a" + "ca6c8f2b-5de2-4138-a498-4dce8ae7dab9" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025944Z:8baf6144-e869-4880-bc7f-69d8c18f648a" + "WESTUS:20150715T011227Z:ca6c8f2b-5de2-4138-a498-4dce8ae7dab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:43 GMT" + "Wed, 15 Jul 2015 01:12:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/availabilitySets/as729?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as729\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/1273a2b9-b5f0-4aa2-8ebf-ff5490839502?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyNzNhMmI5LWI1ZjAtNGFhMi04ZWJmLWZmNTQ5MDgzOTUwMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "132" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/availabilitySets/as729\",\r\n \"name\": \"as729\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "401" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1051,11 +1024,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "15d374b9-cfce-4a4d-a205-822d32a63df3" + "1d8cf80f-5661-45de-95cb-ded32b9fcbe1" ], "Cache-Control": [ "no-cache" @@ -1064,41 +1034,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "c2a8a9e7-c113-4c05-a799-c1f10822cc66" + "ca6c8f2b-5de2-4138-a498-4dce8ae7dab9" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025948Z:c2a8a9e7-c113-4c05-a799-c1f10822cc66" + "WESTUS:20150715T011227Z:ca6c8f2b-5de2-4138-a498-4dce8ae7dab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:47 GMT" + "Wed, 15 Jul 2015 01:12:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/virtualMachines/vm7471?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc0NzE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"sandbox_single-node\",\r\n \"publisher\": \"datastax\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"datastax\",\r\n \"offer\": \"datastax-enterprise-non-production-use-only\",\r\n \"sku\": \"sandbox_single-node\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3530.blob.core.windows.net/pslibtest9813/ospslibtest8694.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest3084\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/availabilitySets/as729\"\r\n }\r\n },\r\n \"name\": \"vm7471\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/1273a2b9-b5f0-4aa2-8ebf-ff5490839502?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEyNzNhMmI5LWI1ZjAtNGFhMi04ZWJmLWZmNTQ5MDgzOTUwMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1479" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/availabilitySets/AS729\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"datastax\",\r\n \"offer\": \"datastax-enterprise-non-production-use-only\",\r\n \"sku\": \"sandbox_single-node\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3530.blob.core.windows.net/pslibtest9813/ospslibtest8694.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/virtualMachines/vm7471\",\r\n \"name\": \"vm7471\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"plan\": {\r\n \"name\": \"sandbox_single-node\",\r\n \"publisher\": \"datastax\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1707" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1109,14 +1076,60 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/b59a8acc-7219-4938-ab1c-83b4b6e378a7?api-version=2015-06-15" + "x-ms-request-id": [ + "1d8cf80f-5661-45de-95cb-ded32b9fcbe1" + ], + "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": [ + "ca6c8f2b-5de2-4138-a498-4dce8ae7dab9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011227Z:ca6c8f2b-5de2-4138-a498-4dce8ae7dab9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Wed, 15 Jul 2015 01:12:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336\",\r\n \"name\": \"pslibtest2336\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2336.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2336.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2336.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:11:57.9496261Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "b59a8acc-7219-4938-ab1c-83b4b6e378a7" + "7a360387-d58b-429d-80b8-65760e71ac01" ], "Cache-Control": [ "no-cache" @@ -1125,35 +1138,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "a2ade3eb-156f-4935-a672-947808ffcdd0" + "7b0bff22-e41f-43c8-9c7d-17f45fdaf7f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025955Z:a2ade3eb-156f-4935-a672-947808ffcdd0" + "WESTUS:20150715T011237Z:7b0bff22-e41f-43c8-9c7d-17f45fdaf7f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:55 GMT" + "Wed, 15 Jul 2015 01:12:36 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/b59a8acc-7219-4938-ab1c-83b4b6e378a7?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2I1OWE4YWNjLTcyMTktNDkzOC1hYjFjLTgzYjRiNmUzNzhhNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b59a8acc-7219-4938-ab1c-83b4b6e378a7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T19:59:52.6035073-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336\",\r\n \"name\": \"pslibtest2336\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2336.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2336.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2336.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:11:57.9496261Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1164,11 +1180,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "7a360387-d58b-429d-80b8-65760e71ac01" + ], + "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": [ + "7b0bff22-e41f-43c8-9c7d-17f45fdaf7f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011237Z:7b0bff22-e41f-43c8-9c7d-17f45fdaf7f3" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Wed, 15 Jul 2015 01:12:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336\",\r\n \"name\": \"pslibtest2336\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2336.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2336.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2336.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:11:57.9496261Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "705" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "54a1c838-95da-4805-b279-a9460248bfa7" + "7a360387-d58b-429d-80b8-65760e71ac01" ], "Cache-Control": [ "no-cache" @@ -1178,34 +1243,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14997" ], "x-ms-correlation-request-id": [ - "f5d53e91-bd92-4be2-b477-1559da127dd7" + "7b0bff22-e41f-43c8-9c7d-17f45fdaf7f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025956Z:f5d53e91-bd92-4be2-b477-1559da127dd7" + "WESTUS:20150715T011237Z:7b0bff22-e41f-43c8-9c7d-17f45fdaf7f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:55 GMT" + "Wed, 15 Jul 2015 01:12:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/virtualMachines/vm7471?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc0NzE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/availabilitySets/AS729\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"datastax\",\r\n \"offer\": \"datastax-enterprise-non-production-use-only\",\r\n \"sku\": \"sandbox_single-node\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest3530.blob.core.windows.net/pslibtest9813/ospslibtest8694.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Network/networkInterfaces/azsmnet4301\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/virtualMachines/vm7471\",\r\n \"name\": \"vm7471\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"plan\": {\r\n \"name\": \"sandbox_single-node\",\r\n \"publisher\": \"datastax\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336\",\r\n \"name\": \"pslibtest2336\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2336.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2336.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2336.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:11:57.9496261Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1707" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1216,11 +1284,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "7a360387-d58b-429d-80b8-65760e71ac01" + ], + "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": [ + "7b0bff22-e41f-43c8-9c7d-17f45fdaf7f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011237Z:7b0bff22-e41f-43c8-9c7d-17f45fdaf7f3" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Wed, 15 Jul 2015 01:12:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336\",\r\n \"name\": \"pslibtest2336\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2336.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2336.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2336.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:11:57.9496261Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "68bcdc6b-ce01-4d50-aee6-1407a0621d1b" + "b36cfa3e-a17a-4614-b11a-37b14c9963ff" ], "Cache-Control": [ "no-cache" @@ -1230,34 +1347,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14996" ], "x-ms-correlation-request-id": [ - "62702a58-0d7f-46d1-93bf-2891afc23d23" + "d95fef26-509f-46e6-a59c-d6251297aecb" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025956Z:62702a58-0d7f-46d1-93bf-2891afc23d23" + "WESTUS:20150715T011237Z:d95fef26-509f-46e6-a59c-d6251297aecb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 17 Jun 2015 02:59:56 GMT" + "Wed, 15 Jul 2015 01:12:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourceGroups/pslibtest3084/providers/Microsoft.Compute/virtualMachines/vm7471?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDMwODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc0NzE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336\",\r\n \"name\": \"pslibtest2336\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2336.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2336.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2336.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:11:57.9496261Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1265,57 +1388,5493 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15" + "x-ms-request-id": [ + "b36cfa3e-a17a-4614-b11a-37b14c9963ff" + ], + "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": [ + "d95fef26-509f-46e6-a59c-d6251297aecb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011237Z:d95fef26-509f-46e6-a59c-d6251297aecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Wed, 15 Jul 2015 01:12:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336\",\r\n \"name\": \"pslibtest2336\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2336.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2336.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2336.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:11:57.9496261Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "1c35779d-130c-48c4-a85d-c1edb3233a58" + "b36cfa3e-a17a-4614-b11a-37b14c9963ff" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "d95fef26-509f-46e6-a59c-d6251297aecb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011237Z:d95fef26-509f-46e6-a59c-d6251297aecb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyMzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Storage/storageAccounts/pslibtest2336\",\r\n \"name\": \"pslibtest2336\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2336.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2336.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2336.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:11:57.9496261Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b36cfa3e-a17a-4614-b11a-37b14c9963ff" + ], + "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": [ + "d95fef26-509f-46e6-a59c-d6251297aecb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011237Z:d95fef26-509f-46e6-a59c-d6251297aecb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb0bdc12-f682-41c5-be0f-7b7980621450" + ], + "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": [ + "d6a5dd4b-7721-4e35-9b69-27a2f1d367a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011238Z:d6a5dd4b-7721-4e35-9b69-27a2f1d367a0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb0bdc12-f682-41c5-be0f-7b7980621450" + ], + "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": [ + "d6a5dd4b-7721-4e35-9b69-27a2f1d367a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011238Z:d6a5dd4b-7721-4e35-9b69-27a2f1d367a0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb0bdc12-f682-41c5-be0f-7b7980621450" + ], + "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": [ + "d6a5dd4b-7721-4e35-9b69-27a2f1d367a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011238Z:d6a5dd4b-7721-4e35-9b69-27a2f1d367a0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb0bdc12-f682-41c5-be0f-7b7980621450" + ], + "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": [ + "d6a5dd4b-7721-4e35-9b69-27a2f1d367a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011238Z:d6a5dd4b-7721-4e35-9b69-27a2f1d367a0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c51482ba-839f-4df7-ba3f-7cafb422d1d0" + ], + "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": [ + "985383f5-56a9-4484-90ec-1c2dfb9080c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011239Z:985383f5-56a9-4484-90ec-1c2dfb9080c9" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c51482ba-839f-4df7-ba3f-7cafb422d1d0" + ], + "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": [ + "985383f5-56a9-4484-90ec-1c2dfb9080c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011239Z:985383f5-56a9-4484-90ec-1c2dfb9080c9" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c51482ba-839f-4df7-ba3f-7cafb422d1d0" + ], + "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": [ + "985383f5-56a9-4484-90ec-1c2dfb9080c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011239Z:985383f5-56a9-4484-90ec-1c2dfb9080c9" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL2RhdGFzdGF4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YXN0YXgtZW50ZXJwcmlzZS1ub24tcHJvZHVjdGlvbi11c2Utb25seS9za3VzL3NhbmRib3hfc2luZ2xlLW5vZGUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c51482ba-839f-4df7-ba3f-7cafb422d1d0" + ], + "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": [ + "985383f5-56a9-4484-90ec-1c2dfb9080c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011239Z:985383f5-56a9-4484-90ec-1c2dfb9080c9" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"86eafc74-5072-4927-be53-7bc87042fb06\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c36b68a5-c828-4c0c-aa1c-d73351645d7f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c36b68a5-c828-4c0c-aa1c-d73351645d7f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "aed51113-e545-40be-8e31-426339b1b5af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011245Z:aed51113-e545-40be-8e31-426339b1b5af" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"86eafc74-5072-4927-be53-7bc87042fb06\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c36b68a5-c828-4c0c-aa1c-d73351645d7f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c36b68a5-c828-4c0c-aa1c-d73351645d7f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "aed51113-e545-40be-8e31-426339b1b5af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011245Z:aed51113-e545-40be-8e31-426339b1b5af" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"86eafc74-5072-4927-be53-7bc87042fb06\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c36b68a5-c828-4c0c-aa1c-d73351645d7f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c36b68a5-c828-4c0c-aa1c-d73351645d7f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "aed51113-e545-40be-8e31-426339b1b5af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011245Z:aed51113-e545-40be-8e31-426339b1b5af" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"86eafc74-5072-4927-be53-7bc87042fb06\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c36b68a5-c828-4c0c-aa1c-d73351645d7f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c36b68a5-c828-4c0c-aa1c-d73351645d7f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "aed51113-e545-40be-8e31-426339b1b5af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011245Z:aed51113-e545-40be-8e31-426339b1b5af" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c36b68a5-c828-4c0c-aa1c-d73351645d7f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNmI2OGE1LWM4MjgtNGMwYy1hYTFjLWQ3MzM1MTY0NWQ3Zj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd9c42fe-5151-4d6b-86b6-ab11235a9c48" + ], + "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": [ + "b273e496-5684-4978-b9a8-ec4a82419a6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011256Z:b273e496-5684-4978-b9a8-ec4a82419a6f" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c36b68a5-c828-4c0c-aa1c-d73351645d7f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNmI2OGE1LWM4MjgtNGMwYy1hYTFjLWQ3MzM1MTY0NWQ3Zj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd9c42fe-5151-4d6b-86b6-ab11235a9c48" + ], + "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": [ + "b273e496-5684-4978-b9a8-ec4a82419a6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011256Z:b273e496-5684-4978-b9a8-ec4a82419a6f" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c36b68a5-c828-4c0c-aa1c-d73351645d7f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNmI2OGE1LWM4MjgtNGMwYy1hYTFjLWQ3MzM1MTY0NWQ3Zj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd9c42fe-5151-4d6b-86b6-ab11235a9c48" + ], + "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": [ + "b273e496-5684-4978-b9a8-ec4a82419a6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011256Z:b273e496-5684-4978-b9a8-ec4a82419a6f" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c36b68a5-c828-4c0c-aa1c-d73351645d7f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2MzNmI2OGE1LWM4MjgtNGMwYy1hYTFjLWQ3MzM1MTY0NWQ3Zj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd9c42fe-5151-4d6b-86b6-ab11235a9c48" + ], + "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": [ + "b273e496-5684-4978-b9a8-ec4a82419a6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011256Z:b273e496-5684-4978-b9a8-ec4a82419a6f" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "614ea980-1618-48e0-8886-185ae452df24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "ea5bbe8f-0ffc-475b-94ab-55b72238198b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011256Z:ea5bbe8f-0ffc-475b-94ab-55b72238198b" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "614ea980-1618-48e0-8886-185ae452df24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "ea5bbe8f-0ffc-475b-94ab-55b72238198b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011256Z:ea5bbe8f-0ffc-475b-94ab-55b72238198b" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "614ea980-1618-48e0-8886-185ae452df24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "ea5bbe8f-0ffc-475b-94ab-55b72238198b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011256Z:ea5bbe8f-0ffc-475b-94ab-55b72238198b" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "614ea980-1618-48e0-8886-185ae452df24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "ea5bbe8f-0ffc-475b-94ab-55b72238198b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011256Z:ea5bbe8f-0ffc-475b-94ab-55b72238198b" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "51760fdc-9bf5-4d34-b11f-b1521b52e35e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "94b48477-549d-4a5e-b967-fa53b47b52c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011257Z:94b48477-549d-4a5e-b967-fa53b47b52c4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "51760fdc-9bf5-4d34-b11f-b1521b52e35e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "94b48477-549d-4a5e-b967-fa53b47b52c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011257Z:94b48477-549d-4a5e-b967-fa53b47b52c4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "51760fdc-9bf5-4d34-b11f-b1521b52e35e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "94b48477-549d-4a5e-b967-fa53b47b52c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011257Z:94b48477-549d-4a5e-b967-fa53b47b52c4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQzMzMxLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/publicIPAddresses/azsmnet3331\",\r\n \"etag\": \"W/\\\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3563\",\r\n \"fqdn\": \"azsmnet3563.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "51760fdc-9bf5-4d34-b11f-b1521b52e35e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1b92f387-7ffe-421a-af20-4b3dc9e5d8b7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "94b48477-549d-4a5e-b967-fa53b47b52c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011257Z:94b48477-549d-4a5e-b967-fa53b47b52c4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet564\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564\",\r\n \"etag\": \"W/\\\"5235aac4-433b-4e3f-ad2b-1476fa8f4c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"5235aac4-433b-4e3f-ad2b-1476fa8f4c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "956" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "356e2a68-dcb7-4a6e-8fb3-5ade298e71d4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/356e2a68-dcb7-4a6e-8fb3-5ade298e71d4?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "faf4c2a1-c67c-42de-98b0-a76794b23dc4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011300Z:faf4c2a1-c67c-42de-98b0-a76794b23dc4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:59 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet564\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564\",\r\n \"etag\": \"W/\\\"5235aac4-433b-4e3f-ad2b-1476fa8f4c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"5235aac4-433b-4e3f-ad2b-1476fa8f4c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "956" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "356e2a68-dcb7-4a6e-8fb3-5ade298e71d4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/356e2a68-dcb7-4a6e-8fb3-5ade298e71d4?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "faf4c2a1-c67c-42de-98b0-a76794b23dc4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011300Z:faf4c2a1-c67c-42de-98b0-a76794b23dc4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:59 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet564\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564\",\r\n \"etag\": \"W/\\\"5235aac4-433b-4e3f-ad2b-1476fa8f4c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"5235aac4-433b-4e3f-ad2b-1476fa8f4c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "956" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "356e2a68-dcb7-4a6e-8fb3-5ade298e71d4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/356e2a68-dcb7-4a6e-8fb3-5ade298e71d4?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "faf4c2a1-c67c-42de-98b0-a76794b23dc4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011300Z:faf4c2a1-c67c-42de-98b0-a76794b23dc4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:59 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet564\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564\",\r\n \"etag\": \"W/\\\"5235aac4-433b-4e3f-ad2b-1476fa8f4c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"5235aac4-433b-4e3f-ad2b-1476fa8f4c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "956" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "356e2a68-dcb7-4a6e-8fb3-5ade298e71d4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/356e2a68-dcb7-4a6e-8fb3-5ade298e71d4?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "faf4c2a1-c67c-42de-98b0-a76794b23dc4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011300Z:faf4c2a1-c67c-42de-98b0-a76794b23dc4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:12:59 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/356e2a68-dcb7-4a6e-8fb3-5ade298e71d4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NmUyYTY4LWRjYjctNGE2ZS04ZmIzLTVhZGUyOThlNzFkND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be0d4375-f39f-413f-909e-cc2f022b6047" + ], + "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": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "c0718edd-d8d6-4f26-be26-a4bd604bd32e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:c0718edd-d8d6-4f26-be26-a4bd604bd32e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/356e2a68-dcb7-4a6e-8fb3-5ade298e71d4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NmUyYTY4LWRjYjctNGE2ZS04ZmIzLTVhZGUyOThlNzFkND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be0d4375-f39f-413f-909e-cc2f022b6047" + ], + "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": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "c0718edd-d8d6-4f26-be26-a4bd604bd32e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:c0718edd-d8d6-4f26-be26-a4bd604bd32e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/356e2a68-dcb7-4a6e-8fb3-5ade298e71d4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NmUyYTY4LWRjYjctNGE2ZS04ZmIzLTVhZGUyOThlNzFkND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be0d4375-f39f-413f-909e-cc2f022b6047" + ], + "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": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "c0718edd-d8d6-4f26-be26-a4bd604bd32e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:c0718edd-d8d6-4f26-be26-a4bd604bd32e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/356e2a68-dcb7-4a6e-8fb3-5ade298e71d4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NmUyYTY4LWRjYjctNGE2ZS04ZmIzLTVhZGUyOThlNzFkND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be0d4375-f39f-413f-909e-cc2f022b6047" + ], + "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": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "c0718edd-d8d6-4f26-be26-a4bd604bd32e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:c0718edd-d8d6-4f26-be26-a4bd604bd32e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet564\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e5c165b-6ccd-4ad2-80fe-96ec83d1af15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ec04a43f-7c32-40ec-924d-168aca45998a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "4f29622e-6bbc-4185-9492-f03a80ce849a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:4f29622e-6bbc-4185-9492-f03a80ce849a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet564\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e5c165b-6ccd-4ad2-80fe-96ec83d1af15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ec04a43f-7c32-40ec-924d-168aca45998a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "4f29622e-6bbc-4185-9492-f03a80ce849a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:4f29622e-6bbc-4185-9492-f03a80ce849a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet564\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e5c165b-6ccd-4ad2-80fe-96ec83d1af15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ec04a43f-7c32-40ec-924d-168aca45998a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "4f29622e-6bbc-4185-9492-f03a80ce849a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:4f29622e-6bbc-4185-9492-f03a80ce849a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet564\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e5c165b-6ccd-4ad2-80fe-96ec83d1af15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ec04a43f-7c32-40ec-924d-168aca45998a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "4f29622e-6bbc-4185-9492-f03a80ce849a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:4f29622e-6bbc-4185-9492-f03a80ce849a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564/subnets/azsmnet7672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0L3N1Ym5ldHMvYXpzbW5ldDc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "354" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a9d9bd51-d0a4-4d15-826f-2fcfdebb0fe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ec04a43f-7c32-40ec-924d-168aca45998a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "b3f255e8-28af-482c-82d1-5a331ade97ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:b3f255e8-28af-482c-82d1-5a331ade97ad" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564/subnets/azsmnet7672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0L3N1Ym5ldHMvYXpzbW5ldDc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "354" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a9d9bd51-d0a4-4d15-826f-2fcfdebb0fe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ec04a43f-7c32-40ec-924d-168aca45998a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "b3f255e8-28af-482c-82d1-5a331ade97ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:b3f255e8-28af-482c-82d1-5a331ade97ad" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564/subnets/azsmnet7672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0L3N1Ym5ldHMvYXpzbW5ldDc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "354" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a9d9bd51-d0a4-4d15-826f-2fcfdebb0fe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ec04a43f-7c32-40ec-924d-168aca45998a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "b3f255e8-28af-482c-82d1-5a331ade97ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:b3f255e8-28af-482c-82d1-5a331ade97ad" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualnetworks/azsmnet564/subnets/azsmnet7672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NTY0L3N1Ym5ldHMvYXpzbW5ldDc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet7672\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "354" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a9d9bd51-d0a4-4d15-826f-2fcfdebb0fe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ec04a43f-7c32-40ec-924d-168aca45998a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "b3f255e8-28af-482c-82d1-5a331ade97ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011311Z:b3f255e8-28af-482c-82d1-5a331ade97ad" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "726" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet958\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958/ipConfigurations/azsmnet8878\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c5c1ceb9-def5-4058-ba33-06b66fc14227" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c5c1ceb9-def5-4058-ba33-06b66fc14227?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "f1b61e81-9a20-46e3-8041-32958ce1f150" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011315Z:f1b61e81-9a20-46e3-8041-32958ce1f150" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:15 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "726" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet958\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958/ipConfigurations/azsmnet8878\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c5c1ceb9-def5-4058-ba33-06b66fc14227" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c5c1ceb9-def5-4058-ba33-06b66fc14227?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "f1b61e81-9a20-46e3-8041-32958ce1f150" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011315Z:f1b61e81-9a20-46e3-8041-32958ce1f150" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:15 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "726" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet958\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958/ipConfigurations/azsmnet8878\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c5c1ceb9-def5-4058-ba33-06b66fc14227" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c5c1ceb9-def5-4058-ba33-06b66fc14227?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "f1b61e81-9a20-46e3-8041-32958ce1f150" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011315Z:f1b61e81-9a20-46e3-8041-32958ce1f150" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:15 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7672\",\r\n \"etag\": \"W/\\\"ec04a43f-7c32-40ec-924d-168aca45998a\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "726" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet958\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958/ipConfigurations/azsmnet8878\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c5c1ceb9-def5-4058-ba33-06b66fc14227" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/c5c1ceb9-def5-4058-ba33-06b66fc14227?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "f1b61e81-9a20-46e3-8041-32958ce1f150" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011315Z:f1b61e81-9a20-46e3-8041-32958ce1f150" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:15 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet958\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958/ipConfigurations/azsmnet8878\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "67b8f615-66c6-45e1-a6c0-31110aa6e50c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "3757325b-d037-436d-b6fe-d8dd57a3ab22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011315Z:3757325b-d037-436d-b6fe-d8dd57a3ab22" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet958\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958/ipConfigurations/azsmnet8878\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "67b8f615-66c6-45e1-a6c0-31110aa6e50c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "3757325b-d037-436d-b6fe-d8dd57a3ab22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011315Z:3757325b-d037-436d-b6fe-d8dd57a3ab22" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet958\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958/ipConfigurations/azsmnet8878\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "67b8f615-66c6-45e1-a6c0-31110aa6e50c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "3757325b-d037-436d-b6fe-d8dd57a3ab22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011315Z:3757325b-d037-436d-b6fe-d8dd57a3ab22" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet958\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet8878\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958/ipConfigurations/azsmnet8878\",\r\n \"etag\": \"W/\\\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/virtualNetworks/azsmnet564/subnets/azsmnet7672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "67b8f615-66c6-45e1-a6c0-31110aa6e50c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1e0b5cb1-46d8-4d15-ad3f-58c5e6f171ac\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "3757325b-d037-436d-b6fe-d8dd57a3ab22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011315Z:3757325b-d037-436d-b6fe-d8dd57a3ab22" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzMjM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236\",\r\n \"name\": \"as3236\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1fea920b-42f3-40e5-8029-a0dc2f7c4f25" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "4a465deb-ea5e-448d-98f0-41ae26dd5684" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011319Z:4a465deb-ea5e-448d-98f0-41ae26dd5684" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzMjM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236\",\r\n \"name\": \"as3236\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1fea920b-42f3-40e5-8029-a0dc2f7c4f25" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "4a465deb-ea5e-448d-98f0-41ae26dd5684" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011319Z:4a465deb-ea5e-448d-98f0-41ae26dd5684" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzMjM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236\",\r\n \"name\": \"as3236\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1fea920b-42f3-40e5-8029-a0dc2f7c4f25" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "4a465deb-ea5e-448d-98f0-41ae26dd5684" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011319Z:4a465deb-ea5e-448d-98f0-41ae26dd5684" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzMjM2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236\",\r\n \"name\": \"as3236\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1fea920b-42f3-40e5-8029-a0dc2f7c4f25" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "4a465deb-ea5e-448d-98f0-41ae26dd5684" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011319Z:4a465deb-ea5e-448d-98f0-41ae26dd5684" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/virtualMachines/vm2769?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI3Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"sandbox_single-node\",\r\n \"publisher\": \"datastax\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"datastax\",\r\n \"offer\": \"datastax-enterprise-non-production-use-only\",\r\n \"sku\": \"sandbox_single-node\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2336.blob.core.windows.net/pslibtest6674/ospslibtest945.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest5687\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1409" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourcePurchaseValidationFailed\",\r\n \"message\": \"User failed validation to purchase resources. Error message: 'Legal terms have not been accepted for this item on this subscription. To accept legal terms, please go to the Azure portal (http://go.microsoft.com/fwlink/?LinkId=534873) and create this item there for the first time'\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "x-ms-correlation-request-id": [ + "6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011321Z:6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:21 GMT" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/virtualMachines/vm2769?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI3Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"sandbox_single-node\",\r\n \"publisher\": \"datastax\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"datastax\",\r\n \"offer\": \"datastax-enterprise-non-production-use-only\",\r\n \"sku\": \"sandbox_single-node\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2336.blob.core.windows.net/pslibtest6674/ospslibtest945.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest5687\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1409" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourcePurchaseValidationFailed\",\r\n \"message\": \"User failed validation to purchase resources. Error message: 'Legal terms have not been accepted for this item on this subscription. To accept legal terms, please go to the Azure portal (http://go.microsoft.com/fwlink/?LinkId=534873) and create this item there for the first time'\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "x-ms-correlation-request-id": [ + "6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011321Z:6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:21 GMT" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/virtualMachines/vm2769?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI3Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"sandbox_single-node\",\r\n \"publisher\": \"datastax\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"datastax\",\r\n \"offer\": \"datastax-enterprise-non-production-use-only\",\r\n \"sku\": \"sandbox_single-node\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2336.blob.core.windows.net/pslibtest6674/ospslibtest945.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest5687\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1409" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourcePurchaseValidationFailed\",\r\n \"message\": \"User failed validation to purchase resources. Error message: 'Legal terms have not been accepted for this item on this subscription. To accept legal terms, please go to the Azure portal (http://go.microsoft.com/fwlink/?LinkId=534873) and create this item there for the first time'\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "x-ms-correlation-request-id": [ + "6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011321Z:6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:21 GMT" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/virtualMachines/vm2769?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDU2ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI3Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"sandbox_single-node\",\r\n \"publisher\": \"datastax\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"datastax\",\r\n \"offer\": \"datastax-enterprise-non-production-use-only\",\r\n \"sku\": \"sandbox_single-node\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2336.blob.core.windows.net/pslibtest6674/ospslibtest945.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest5687\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Network/networkInterfaces/azsmnet958\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest5687/providers/Microsoft.Compute/availabilitySets/as3236\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1409" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourcePurchaseValidationFailed\",\r\n \"message\": \"User failed validation to purchase resources. Error message: 'Legal terms have not been accepted for this item on this subscription. To accept legal terms, please go to the Azure portal (http://go.microsoft.com/fwlink/?LinkId=534873) and create this item there for the first time'\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "x-ms-correlation-request-id": [ + "6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011321Z:6756a4ab-0001-4656-a65f-2e4e4e52a6de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:21 GMT" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "x-ms-correlation-request-id": [ + "cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011323Z:cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "x-ms-correlation-request-id": [ + "cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011323Z:cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "x-ms-correlation-request-id": [ + "cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011323Z:cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "x-ms-correlation-request-id": [ + "cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011323Z:cb0809eb-3e47-48f9-a29c-85ff9aa1ce62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'pslibtest5687' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "x-ms-correlation-request-id": [ + "ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011612Z:ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:16:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'pslibtest5687' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "x-ms-correlation-request-id": [ + "ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011612Z:ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:16:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'pslibtest5687' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "x-ms-correlation-request-id": [ + "ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011612Z:ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:16:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest5687?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDU2ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'pslibtest5687' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "x-ms-correlation-request-id": [ + "ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011612Z:ab6d0067-a7b0-47ff-84bd-9e1225abe78f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:16:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14986" + ], + "x-ms-request-id": [ + "23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "x-ms-correlation-request-id": [ + "23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011338Z:23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14986" + ], + "x-ms-request-id": [ + "23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "x-ms-correlation-request-id": [ + "23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011338Z:23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14986" + ], + "x-ms-request-id": [ + "23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "x-ms-correlation-request-id": [ + "23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011338Z:23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14986" + ], + "x-ms-request-id": [ + "23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "x-ms-correlation-request-id": [ + "23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011338Z:23524fd0-58fd-43ee-92cc-ef1ef517138c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14985" + ], + "x-ms-request-id": [ + "5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "x-ms-correlation-request-id": [ + "5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011353Z:5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14985" + ], + "x-ms-request-id": [ + "5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "x-ms-correlation-request-id": [ + "5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011353Z:5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14985" + ], + "x-ms-request-id": [ + "5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "x-ms-correlation-request-id": [ + "5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011353Z:5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14985" + ], + "x-ms-request-id": [ + "5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "x-ms-correlation-request-id": [ + "5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011353Z:5dd37cd8-a55b-4571-b068-1466d54a70c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:13:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "x-ms-correlation-request-id": [ + "d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011409Z:d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:09 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "x-ms-correlation-request-id": [ + "d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011409Z:d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:09 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "x-ms-correlation-request-id": [ + "d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011409Z:d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:09 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14984" + ], + "x-ms-request-id": [ + "d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "x-ms-correlation-request-id": [ + "d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011409Z:d2eafd7c-fdf1-41ec-b7e6-8bd98cfa176d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:09 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14983" + ], + "x-ms-request-id": [ + "e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "x-ms-correlation-request-id": [ + "e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011424Z:e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14983" + ], + "x-ms-request-id": [ + "e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "x-ms-correlation-request-id": [ + "e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011424Z:e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14983" + ], + "x-ms-request-id": [ + "e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "x-ms-correlation-request-id": [ + "e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011424Z:e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14983" + ], + "x-ms-request-id": [ + "e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "x-ms-correlation-request-id": [ + "e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011424Z:e0b04c08-5209-4344-ad87-ffd90aa4e0be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14982" + ], + "x-ms-request-id": [ + "a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "x-ms-correlation-request-id": [ + "a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011440Z:a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14982" + ], + "x-ms-request-id": [ + "a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "x-ms-correlation-request-id": [ + "a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011440Z:a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14982" + ], + "x-ms-request-id": [ + "a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "x-ms-correlation-request-id": [ + "a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011440Z:a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14982" + ], + "x-ms-request-id": [ + "a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "x-ms-correlation-request-id": [ + "a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011440Z:a10e0eb4-e155-4ce8-beab-d4389d71cf7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14981" + ], + "x-ms-request-id": [ + "6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "x-ms-correlation-request-id": [ + "6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011455Z:6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14981" + ], + "x-ms-request-id": [ + "6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "x-ms-correlation-request-id": [ + "6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011455Z:6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14981" + ], + "x-ms-request-id": [ + "6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "x-ms-correlation-request-id": [ + "6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011455Z:6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14981" + ], + "x-ms-request-id": [ + "6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "x-ms-correlation-request-id": [ + "6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011455Z:6602852d-d68c-4aec-bf4e-db3c64b4d415" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:14:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14980" + ], + "x-ms-request-id": [ + "6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "x-ms-correlation-request-id": [ + "6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011511Z:6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14980" + ], + "x-ms-request-id": [ + "6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "x-ms-correlation-request-id": [ + "6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011511Z:6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14980" + ], + "x-ms-request-id": [ + "6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "x-ms-correlation-request-id": [ + "6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011511Z:6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14980" + ], + "x-ms-request-id": [ + "6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "x-ms-correlation-request-id": [ + "6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011511Z:6c38c88a-089a-4e71-ae7e-937e580cacc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14979" + ], + "x-ms-request-id": [ + "5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "x-ms-correlation-request-id": [ + "5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011526Z:5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14979" + ], + "x-ms-request-id": [ + "5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "x-ms-correlation-request-id": [ + "5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011526Z:5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14979" + ], + "x-ms-request-id": [ + "5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "x-ms-correlation-request-id": [ + "5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011526Z:5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14979" + ], + "x-ms-request-id": [ + "5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "x-ms-correlation-request-id": [ + "5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011526Z:5657419a-7fe7-4a2a-ad71-ad6a488c7e23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14978" + ], + "x-ms-request-id": [ + "2b998fde-39da-4f1a-9bcc-866114167653" + ], + "x-ms-correlation-request-id": [ + "2b998fde-39da-4f1a-9bcc-866114167653" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011542Z:2b998fde-39da-4f1a-9bcc-866114167653" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14978" + ], + "x-ms-request-id": [ + "2b998fde-39da-4f1a-9bcc-866114167653" + ], + "x-ms-correlation-request-id": [ + "2b998fde-39da-4f1a-9bcc-866114167653" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011542Z:2b998fde-39da-4f1a-9bcc-866114167653" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:15:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14978" + ], + "x-ms-request-id": [ + "2b998fde-39da-4f1a-9bcc-866114167653" ], "x-ms-correlation-request-id": [ - "1e166cb4-c0fd-4d50-bc57-3254c94ed63d" + "2b998fde-39da-4f1a-9bcc-866114167653" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T025959Z:1e166cb4-c0fd-4d50-bc57-3254c94ed63d" + "WESTUS:20150715T011542Z:2b998fde-39da-4f1a-9bcc-866114167653" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 02:59:59 GMT" + "Wed, 15 Jul 2015 01:15:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjMzU3NzlkLTEzMGMtNDhjNC1hODVkLWMxZWRiMzIzM2E1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1c35779d-130c-48c4-a85d-c1edb3233a58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T19:59:57.7285958-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1323,51 +6882,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f013fa7b-ee45-4e34-86ca-42204ffd8ea3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14978" + ], + "x-ms-request-id": [ + "2b998fde-39da-4f1a-9bcc-866114167653" ], "x-ms-correlation-request-id": [ - "f0afa6ed-2d67-4be0-a6c1-6a36ec8a8e18" + "2b998fde-39da-4f1a-9bcc-866114167653" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030000Z:f0afa6ed-2d67-4be0-a6c1-6a36ec8a8e18" + "WESTUS:20150715T011542Z:2b998fde-39da-4f1a-9bcc-866114167653" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 02:59:59 GMT" + "Wed, 15 Jul 2015 01:15:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjMzU3NzlkLTEzMGMtNDhjNC1hODVkLWMxZWRiMzIzM2E1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1c35779d-130c-48c4-a85d-c1edb3233a58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T19:59:57.7285958-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1375,51 +6933,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "c62629fa-302d-4241-9e9b-99b655ee20a2" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14977" + ], + "x-ms-request-id": [ + "b6787b85-e776-492f-b019-a3891581d119" ], "x-ms-correlation-request-id": [ - "0823f36a-ceb2-4d8c-9b32-65e244bb70b0" + "b6787b85-e776-492f-b019-a3891581d119" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030030Z:0823f36a-ceb2-4d8c-9b32-65e244bb70b0" + "WESTUS:20150715T011557Z:b6787b85-e776-492f-b019-a3891581d119" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:00:30 GMT" + "Wed, 15 Jul 2015 01:15:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjMzU3NzlkLTEzMGMtNDhjNC1hODVkLWMxZWRiMzIzM2E1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1c35779d-130c-48c4-a85d-c1edb3233a58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T19:59:57.7285958-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1427,51 +6984,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "ba8b65ab-4aec-4e07-9c81-a16ab326b0fb" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14977" + ], + "x-ms-request-id": [ + "b6787b85-e776-492f-b019-a3891581d119" ], "x-ms-correlation-request-id": [ - "44c4254c-926e-4043-aab7-9af6f14ea9cc" + "b6787b85-e776-492f-b019-a3891581d119" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030101Z:44c4254c-926e-4043-aab7-9af6f14ea9cc" + "WESTUS:20150715T011557Z:b6787b85-e776-492f-b019-a3891581d119" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:01:01 GMT" + "Wed, 15 Jul 2015 01:15:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjMzU3NzlkLTEzMGMtNDhjNC1hODVkLWMxZWRiMzIzM2E1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1c35779d-130c-48c4-a85d-c1edb3233a58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T19:59:57.7285958-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1479,51 +7035,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "87cd3eba-d9e7-447b-9d4d-f06c50cc49d3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14977" + ], + "x-ms-request-id": [ + "b6787b85-e776-492f-b019-a3891581d119" ], "x-ms-correlation-request-id": [ - "372e50dc-da14-4063-94e4-a3e974596339" + "b6787b85-e776-492f-b019-a3891581d119" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030132Z:372e50dc-da14-4063-94e4-a3e974596339" + "WESTUS:20150715T011557Z:b6787b85-e776-492f-b019-a3891581d119" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:01:32 GMT" + "Wed, 15 Jul 2015 01:15:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjMzU3NzlkLTEzMGMtNDhjNC1hODVkLWMxZWRiMzIzM2E1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1c35779d-130c-48c4-a85d-c1edb3233a58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T19:59:57.7285958-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1531,51 +7086,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "af464f2e-26d8-46a1-bb42-a8e7a9e7ef84" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14977" + ], + "x-ms-request-id": [ + "b6787b85-e776-492f-b019-a3891581d119" ], "x-ms-correlation-request-id": [ - "0a9a4d1f-e5af-4ffb-bf1d-cd4faeec9a6b" + "b6787b85-e776-492f-b019-a3891581d119" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030203Z:0a9a4d1f-e5af-4ffb-bf1d-cd4faeec9a6b" + "WESTUS:20150715T011557Z:b6787b85-e776-492f-b019-a3891581d119" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:02:03 GMT" + "Wed, 15 Jul 2015 01:15:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjMzU3NzlkLTEzMGMtNDhjNC1hODVkLWMxZWRiMzIzM2E1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1c35779d-130c-48c4-a85d-c1edb3233a58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T19:59:57.7285958-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1583,51 +7137,44 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" ], "x-ms-request-id": [ - "1860dcb6-2df5-479d-846d-1fb11ee10228" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "2bf94cc2-61f9-455e-80b8-01f882209b71" ], "x-ms-correlation-request-id": [ - "b721aab7-4c30-4d1e-a619-69243c5b5af2" + "2bf94cc2-61f9-455e-80b8-01f882209b71" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030234Z:b721aab7-4c30-4d1e-a619-69243c5b5af2" + "WESTUS:20150715T011612Z:2bf94cc2-61f9-455e-80b8-01f882209b71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:02:33 GMT" + "Wed, 15 Jul 2015 01:16:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjMzU3NzlkLTEzMGMtNDhjNC1hODVkLWMxZWRiMzIzM2E1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1c35779d-130c-48c4-a85d-c1edb3233a58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T19:59:57.7285958-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1635,51 +7182,44 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" ], "x-ms-request-id": [ - "cf495559-4b47-454d-8aae-0dc591add26f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "2bf94cc2-61f9-455e-80b8-01f882209b71" ], "x-ms-correlation-request-id": [ - "d15a581a-7072-40ac-a900-b6ba63c3bd24" + "2bf94cc2-61f9-455e-80b8-01f882209b71" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030304Z:d15a581a-7072-40ac-a900-b6ba63c3bd24" + "WESTUS:20150715T011612Z:2bf94cc2-61f9-455e-80b8-01f882209b71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:03:04 GMT" + "Wed, 15 Jul 2015 01:16:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/providers/Microsoft.Compute/locations/southeastasia/operations/1c35779d-130c-48c4-a85d-c1edb3233a58?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjMzU3NzlkLTEzMGMtNDhjNC1hODVkLWMxZWRiMzIzM2E1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1c35779d-130c-48c4-a85d-c1edb3233a58\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T19:59:57.7285958-07:00\",\r\n \"endTime\": \"2015-06-16T20:03:33.3549425-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1687,38 +7227,34 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" ], "x-ms-request-id": [ - "e0181d2a-c55b-4034-9eed-03080c2c0eb7" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "2bf94cc2-61f9-455e-80b8-01f882209b71" ], "x-ms-correlation-request-id": [ - "1df78264-a4eb-4b6c-9519-b8c381dc9d69" + "2bf94cc2-61f9-455e-80b8-01f882209b71" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030335Z:1df78264-a4eb-4b6c-9519-b8c381dc9d69" + "WESTUS:20150715T011612Z:2bf94cc2-61f9-455e-80b8-01f882209b71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:03:35 GMT" + "Wed, 15 Jul 2015 01:16:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/resourcegroups/pslibtest3084?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWFiZWFjMDQtNTI2My00MDZjLTgzMmEtYjVhZGM2YjIzNDI1L3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDMwODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q1Njg3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVExTmpnM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -1736,20 +7272,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" ], "x-ms-request-id": [ - "c044a678-dbfa-44a1-a508-cd79f1a30220" + "2bf94cc2-61f9-455e-80b8-01f882209b71" ], "x-ms-correlation-request-id": [ - "c044a678-dbfa-44a1-a508-cd79f1a30220" + "2bf94cc2-61f9-455e-80b8-01f882209b71" ], "x-ms-routing-request-id": [ - "WESTUS:20150617T030339Z:c044a678-dbfa-44a1-a508-cd79f1a30220" + "WESTUS:20150715T011612Z:2bf94cc2-61f9-455e-80b8-01f882209b71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1758,41 +7291,39 @@ "no-cache" ], "Date": [ - "Wed, 17 Jun 2015 03:03:39 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/eabeac04-5263-406c-832a-b5adc6b23425/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QzMDg0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Wed, 15 Jul 2015 01:16:11 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 } ], "Names": { "TestVMMarketplace": [ - "pslibtest3084", - "pslibtest3530", - "as729" + "pslibtest5687", + "pslibtest2336", + "as3236" ], "CreatePublicIP": [ - "azsmnet2718", - "azsmnet5551" + "azsmnet3331", + "azsmnet3563" ], "CreateVNET": [ - "azsmnet4157", - "azsmnet7653" + "azsmnet564", + "azsmnet7672" ], "CreateNIC": [ - "azsmnet4301", - "azsmnet9191" + "azsmnet958", + "azsmnet8878" ], "CreateDefaultVMInput": [ - "pslibtest9813", - "pslibtest5500", - "pslibtest8694", - "vm7471" + "pslibtest6674", + "pslibtest2420", + "pslibtest945", + "vm2769", + "Microsoft.Compute/virtualMachines6780" ] }, "Variables": { - "SubscriptionId": "eabeac04-5263-406c-832a-b5adc6b23425" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json index 4f988256c5639..65e09862483d1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0bff11c9-2416-477e-a9f8-6b69a73f138e" + "1e587811-b7e2-4d12-a35c-ffb80f274d98" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14945" ], "x-ms-correlation-request-id": [ - "420bc352-e238-4e18-9f80-26973187f880" + "a1f7ab36-1224-45ec-9ad8-3d8cf1fc16aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181424Z:420bc352-e238-4e18-9f80-26973187f880" + "WESTUS:20150714T213749Z:a1f7ab36-1224-45ec-9ad8-3d8cf1fc16aa" ], "Date": [ - "Tue, 16 Jun 2015 18:14:24 GMT" + "Tue, 14 Jul 2015 21:37:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest2645?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDI2NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645\",\r\n \"name\": \"pslibtest2645\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,107 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "77fd6a8a-be1f-4c23-abae-c3d5cdc4d5e6" - ], - "x-ms-correlation-request-id": [ - "77fd6a8a-be1f-4c23-abae-c3d5cdc4d5e6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T181426Z:77fd6a8a-be1f-4c23-abae-c3d5cdc4d5e6" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Jun 2015 18:14:26 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest2645?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDI2NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645\",\r\n \"name\": \"pslibtest2645\",\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" + "x-ms-request-id": [ + "1e587811-b7e2-4d12-a35c-ffb80f274d98" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "4cf68e0e-3606-469d-9e54-b87666a02bca" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" ], "x-ms-correlation-request-id": [ - "4cf68e0e-3606-469d-9e54-b87666a02bca" + "a1f7ab36-1224-45ec-9ad8-3d8cf1fc16aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181427Z:4cf68e0e-3606-469d-9e54-b87666a02bca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150714T213749Z:a1f7ab36-1224-45ec-9ad8-3d8cf1fc16aa" ], "Date": [ - "Tue, 16 Jun 2015 18:14:27 GMT" + "Tue, 14 Jul 2015 21:37:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Storage/storageAccounts/pslibtest9338?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q5MzM4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "1b4104cd-c298-4efa-a1bd-e88718aa1259" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +128,48 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ccd82e1-88bd-4e35-9633-b22df9ad1e83" + "1e587811-b7e2-4d12-a35c-ffb80f274d98" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/1ccd82e1-88bd-4e35-9633-b22df9ad1e83?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" ], "x-ms-correlation-request-id": [ - "ac431616-94c6-40ec-9d90-49127c254af6" + "a1f7ab36-1224-45ec-9ad8-3d8cf1fc16aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181432Z:ac431616-94c6-40ec-9d90-49127c254af6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T213749Z:a1f7ab36-1224-45ec-9ad8-3d8cf1fc16aa" ], "Date": [ - "Tue, 16 Jun 2015 18:14:32 GMT" + "Tue, 14 Jul 2015 21:37:48 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/1ccd82e1-88bd-4e35-9633-b22df9ad1e83?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzFjY2Q4MmUxLTg4YmQtNGUzNS05NjMzLWIyMmRmOWFkMWU4Mz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3928d5b1-f016-4786-a24b-24a553aab155" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83e54f85-f0b3-4b94-8e8f-37807d13265b" + "1e587811-b7e2-4d12-a35c-ffb80f274d98" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/1ccd82e1-88bd-4e35-9633-b22df9ad1e83?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14945" ], "x-ms-correlation-request-id": [ - "0cbd3d04-e152-4ce8-a6bb-73d12bee1dc0" + "a1f7ab36-1224-45ec-9ad8-3d8cf1fc16aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181433Z:0cbd3d04-e152-4ce8-a6bb-73d12bee1dc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T213749Z:a1f7ab36-1224-45ec-9ad8-3d8cf1fc16aa" ], "Date": [ - "Tue, 16 Jun 2015 18:14:32 GMT" + "Tue, 14 Jul 2015 21:37:48 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/1ccd82e1-88bd-4e35-9633-b22df9ad1e83?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzFjY2Q4MmUxLTg4YmQtNGUzNS05NjMzLWIyMmRmOWFkMWU4Mz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "26503fd5-90c5-4b45-b64e-f6c255f0eb3c" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917\",\r\n \"name\": \"pslibtest1917\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +238,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "a94b68d3-c09b-49d9-9c28-53c2489b33b5" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "x-ms-request-id": [ + "e21fec80-7e53-4549-8e49-17395ee241b9" ], "x-ms-correlation-request-id": [ - "bb499502-4b99-49b0-bca8-c162db2ee177" + "e21fec80-7e53-4549-8e49-17395ee241b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181458Z:bb499502-4b99-49b0-bca8-c162db2ee177" + "WESTUS:20150714T213750Z:e21fec80-7e53-4549-8e49-17395ee241b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 18:14:58 GMT" + "Tue, 14 Jul 2015 21:37:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "043b57eb-2cee-4763-b813-3ce4c1de29c0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Storage/storageAccounts/pslibtest9338\",\r\n \"name\": \"pslibtest9338\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest9338.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest9338.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest9338.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T18:14:29.8088799Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917\",\r\n \"name\": \"pslibtest1917\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "6e4222f7-ae85-400e-a6a4-cdf5e4a021a7" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "x-ms-request-id": [ + "e21fec80-7e53-4549-8e49-17395ee241b9" ], "x-ms-correlation-request-id": [ - "44ed6d35-cf54-49b4-924b-c2fdc2938ed8" + "e21fec80-7e53-4549-8e49-17395ee241b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181509Z:44ed6d35-cf54-49b4-924b-c2fdc2938ed8" + "WESTUS:20150714T213750Z:e21fec80-7e53-4549-8e49-17395ee241b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 18:15:08 GMT" + "Tue, 14 Jul 2015 21:37:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualnetworks/azsmnet3018?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzAxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet3177\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3018\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018\",\r\n \"etag\": \"W/\\\"cbb4a5f8-d387-4eae-a579-c2a49fc7d01e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3177\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\",\r\n \"etag\": \"W/\\\"cbb4a5f8-d387-4eae-a579-c2a49fc7d01e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917\",\r\n \"name\": \"pslibtest1917\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "959" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +346,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" ], "x-ms-request-id": [ - "14d43939-76ef-4956-af0e-08c40b6263fe" + "e21fec80-7e53-4549-8e49-17395ee241b9" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/14d43939-76ef-4956-af0e-08c40b6263fe?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "e21fec80-7e53-4549-8e49-17395ee241b9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213750Z:e21fec80-7e53-4549-8e49-17395ee241b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +364,32 @@ "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": [ - "2ed03fa7-5425-442e-8abd-fa32fc233d12" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T181518Z:2ed03fa7-5425-442e-8abd-fa32fc233d12" - ], "Date": [ - "Tue, 16 Jun 2015 18:15:17 GMT" + "Tue, 14 Jul 2015 21:37:50 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/14d43939-76ef-4956-af0e-08c40b6263fe?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE0ZDQzOTM5LTc2ZWYtNDk1Ni1hZjBlLTA4YzQwYjYyNjNmZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917\",\r\n \"name\": \"pslibtest1917\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +400,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], "x-ms-request-id": [ - "7882ca56-e1a5-45e2-9db0-a0a4b5e098ba" + "e21fec80-7e53-4549-8e49-17395ee241b9" + ], + "x-ms-correlation-request-id": [ + "e21fec80-7e53-4549-8e49-17395ee241b9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213750Z:e21fec80-7e53-4549-8e49-17395ee241b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +418,32 @@ "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": [ - "b6a9fac2-0edb-4aaf-a963-c295c1eb65ff" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T181519Z:b6a9fac2-0edb-4aaf-a963-c295c1eb65ff" - ], "Date": [ - "Tue, 16 Jun 2015 18:15:18 GMT" + "Tue, 14 Jul 2015 21:37:50 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualnetworks/azsmnet3018/subnets/azsmnet3177?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzAxOC9zdWJuZXRzL2F6c21uZXQzMTc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3177\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\",\r\n \"etag\": \"W/\\\"6621525e-4a4c-42e6-ba85-bf87d51d9fb9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917\",\r\n \"name\": \"pslibtest1917\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,8 +454,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], "x-ms-request-id": [ - "4495b13e-5b9d-442b-87bb-7a3f351133a4" + "6d6b57a4-3dea-4069-aa77-ad45ff471360" + ], + "x-ms-correlation-request-id": [ + "6d6b57a4-3dea-4069-aa77-ad45ff471360" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213751Z:6d6b57a4-3dea-4069-aa77-ad45ff471360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,48 +472,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"6621525e-4a4c-42e6-ba85-bf87d51d9fb9\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "f7853de0-8d86-4701-b271-2dfe3a682cce" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T181519Z:f7853de0-8d86-4701-b271-2dfe3a682cce" - ], "Date": [ - "Tue, 16 Jun 2015 18:15:18 GMT" + "Tue, 14 Jul 2015 21:37:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3NTEwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\"\r\n }\r\n },\r\n \"name\": \"azsmnet7579\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet7510\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "510" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7510\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510\",\r\n \"etag\": \"W/\\\"b65838f7-e763-4d4c-ba44-242cdddc4e3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7579\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510/ipConfigurations/azsmnet7579\",\r\n \"etag\": \"W/\\\"b65838f7-e763-4d4c-ba44-242cdddc4e3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917\",\r\n \"name\": \"pslibtest1917\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1118" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,11 +508,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], "x-ms-request-id": [ - "b39291e7-5b63-4de8-acdd-04d3c7852f3b" + "6d6b57a4-3dea-4069-aa77-ad45ff471360" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/b39291e7-5b63-4de8-acdd-04d3c7852f3b?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "6d6b57a4-3dea-4069-aa77-ad45ff471360" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213751Z:6d6b57a4-3dea-4069-aa77-ad45ff471360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -614,42 +526,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "d58433ac-c4a1-4936-9476-d25fe01684ce" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T181523Z:d58433ac-c4a1-4936-9476-d25fe01684ce" - ], "Date": [ - "Tue, 16 Jun 2015 18:15:22 GMT" + "Tue, 14 Jul 2015 21:37:50 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/b39291e7-5b63-4de8-acdd-04d3c7852f3b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2IzOTI5MWU3LTViNjMtNGRlOC1hY2RkLTA0ZDNjNzg1MmYzYj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917\",\r\n \"name\": \"pslibtest1917\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,8 +562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], "x-ms-request-id": [ - "a62fe45e-3e65-4819-aab5-610891459130" + "6d6b57a4-3dea-4069-aa77-ad45ff471360" + ], + "x-ms-correlation-request-id": [ + "6d6b57a4-3dea-4069-aa77-ad45ff471360" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213751Z:6d6b57a4-3dea-4069-aa77-ad45ff471360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,39 +580,32 @@ "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": [ - "aa60fb5d-be68-439a-9c16-9e68a0bb640a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T181524Z:aa60fb5d-be68-439a-9c16-9e68a0bb640a" - ], "Date": [ - "Tue, 16 Jun 2015 18:15:23 GMT" + "Tue, 14 Jul 2015 21:37:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3NTEwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7510\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510\",\r\n \"etag\": \"W/\\\"b65838f7-e763-4d4c-ba44-242cdddc4e3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7579\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510/ipConfigurations/azsmnet7579\",\r\n \"etag\": \"W/\\\"b65838f7-e763-4d4c-ba44-242cdddc4e3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917\",\r\n \"name\": \"pslibtest1917\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1118" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -712,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], "x-ms-request-id": [ - "6a458763-2b6a-49b0-987f-38c93e0baa5c" + "6d6b57a4-3dea-4069-aa77-ad45ff471360" + ], + "x-ms-correlation-request-id": [ + "6d6b57a4-3dea-4069-aa77-ad45ff471360" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213751Z:6d6b57a4-3dea-4069-aa77-ad45ff471360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,42 +634,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"b65838f7-e763-4d4c-ba44-242cdddc4e3b\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "f1d6fefb-c49d-42ce-988d-6b5ad2b41591" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T181524Z:f1d6fefb-c49d-42ce-988d-6b5ad2b41591" - ], "Date": [ - "Tue, 16 Jun 2015 18:15:23 GMT" + "Tue, 14 Jul 2015 21:37:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ3NTEwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7510\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510\",\r\n \"etag\": \"W/\\\"9877aff7-c2b3-4d00-9904-08b1ca1a9e46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7579\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510/ipConfigurations/azsmnet7579\",\r\n \"etag\": \"W/\\\"9877aff7-c2b3-4d00-9904-08b1ca1a9e46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A3-A7\",\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/virtualMachines/vm1166\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1361" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -767,57 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "61a2d48b-e36d-47e2-9167-fa4e65075bac" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "e22ab418-d9c1-4ba7-867f-5249723f5175" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"9877aff7-c2b3-4d00-9904-08b1ca1a9e46\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/e22ab418-d9c1-4ba7-867f-5249723f5175?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" ], "x-ms-correlation-request-id": [ - "9cbf09e6-ddec-4421-bba8-4850f9cac1aa" + "3072d00a-05d9-41ba-8ed4-e70c30cf8720" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183613Z:9cbf09e6-ddec-4421-bba8-4850f9cac1aa" + "WESTUS:20150714T213757Z:3072d00a-05d9-41ba-8ed4-e70c30cf8720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:36:13 GMT" + "Tue, 14 Jul 2015 21:37:56 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5MjA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\"\r\n }\r\n },\r\n \"name\": \"azsmnet5733\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet920\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "509" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet920\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920\",\r\n \"etag\": \"W/\\\"574535b7-75b1-46a4-84c7-2d6fd2762b8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5733\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920/ipConfigurations/azsmnet5733\",\r\n \"etag\": \"W/\\\"574535b7-75b1-46a4-84c7-2d6fd2762b8b\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1115" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,54 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ef52a2e5-4d24-4716-b633-7735077e3218" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/ef52a2e5-4d24-4716-b633-7735077e3218?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "e22ab418-d9c1-4ba7-867f-5249723f5175" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/e22ab418-d9c1-4ba7-867f-5249723f5175?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1189" ], "x-ms-correlation-request-id": [ - "2e148c90-e432-4302-8e0e-15fb119e3f35" + "3072d00a-05d9-41ba-8ed4-e70c30cf8720" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181528Z:2e148c90-e432-4302-8e0e-15fb119e3f35" + "WESTUS:20150714T213757Z:3072d00a-05d9-41ba-8ed4-e70c30cf8720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:15:28 GMT" + "Tue, 14 Jul 2015 21:37:56 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/ef52a2e5-4d24-4716-b633-7735077e3218?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VmNTJhMmU1LTRkMjQtNDcxNi1iNjMzLTc3MzUwNzdlMzIxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,48 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "fd84f07e-8b59-4855-b512-9622adaea397" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "e22ab418-d9c1-4ba7-867f-5249723f5175" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/e22ab418-d9c1-4ba7-867f-5249723f5175?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" ], "x-ms-correlation-request-id": [ - "9343b8b9-3e7e-43d3-ab10-d17516bb84ec" + "3072d00a-05d9-41ba-8ed4-e70c30cf8720" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181529Z:9343b8b9-3e7e-43d3-ab10-d17516bb84ec" + "WESTUS:20150714T213757Z:3072d00a-05d9-41ba-8ed4-e70c30cf8720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:15:29 GMT" + "Tue, 14 Jul 2015 21:37:56 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5MjA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet920\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920\",\r\n \"etag\": \"W/\\\"574535b7-75b1-46a4-84c7-2d6fd2762b8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5733\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920/ipConfigurations/azsmnet5733\",\r\n \"etag\": \"W/\\\"574535b7-75b1-46a4-84c7-2d6fd2762b8b\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1115" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,51 +862,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ef690817-82a2-44c7-8678-d23ca3f8f60a" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "e22ab418-d9c1-4ba7-867f-5249723f5175" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"574535b7-75b1-46a4-84c7-2d6fd2762b8b\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/e22ab418-d9c1-4ba7-867f-5249723f5175?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" ], "x-ms-correlation-request-id": [ - "d16013e2-b68d-4753-8c30-de81edd273b8" + "3072d00a-05d9-41ba-8ed4-e70c30cf8720" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181529Z:d16013e2-b68d-4753-8c30-de81edd273b8" + "WESTUS:20150714T213757Z:3072d00a-05d9-41ba-8ed4-e70c30cf8720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:15:29 GMT" + "Tue, 14 Jul 2015 21:37:56 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5MjA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/e22ab418-d9c1-4ba7-867f-5249723f5175?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UyMmFiNDE4LWQ5YzEtNGJhNy04NjdmLTUyNDk3MjNmNTE3NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet920\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920\",\r\n \"etag\": \"W/\\\"a74a7105-7bfb-40f8-a901-738f028207ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5733\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920/ipConfigurations/azsmnet5733\",\r\n \"etag\": \"W/\\\"a74a7105-7bfb-40f8-a901-738f028207ba\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/virtualNetworks/azsmnet3018/subnets/azsmnet3177\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-22\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/virtualMachines/vm1166\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1357" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -994,56 +921,47 @@ "no-cache" ], "x-ms-request-id": [ - "1fd13cd7-cb59-4750-9277-f826d32170e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "59d8f8e1-1294-48c3-9af2-107dcf31723d" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"a74a7105-7bfb-40f8-a901-738f028207ba\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14944" ], "x-ms-correlation-request-id": [ - "7aa97699-83b2-4abe-89b0-87678c99c95f" + "67195510-c95c-4f2a-9f03-e8128b2d1b1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183614Z:7aa97699-83b2-4abe-89b0-87678c99c95f" + "WESTUS:20150714T213823Z:67195510-c95c-4f2a-9f03-e8128b2d1b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:36:13 GMT" + "Tue, 14 Jul 2015 21:38:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/availabilitySets/as5320?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM1MzIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as5320\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/e22ab418-d9c1-4ba7-867f-5249723f5175?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UyMmFiNDE4LWQ5YzEtNGJhNy04NjdmLTUyNDk3MjNmNTE3NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "133" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/availabilitySets/as5320\",\r\n \"name\": \"as5320\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "403" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1054,11 +972,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "86f82526-2000-408f-8467-a262a4924ce7" + "59d8f8e1-1294-48c3-9af2-107dcf31723d" ], "Cache-Control": [ "no-cache" @@ -1067,41 +982,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" ], "x-ms-correlation-request-id": [ - "02b12282-e242-474f-aa16-4e4632a353f2" + "67195510-c95c-4f2a-9f03-e8128b2d1b1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181534Z:02b12282-e242-474f-aa16-4e4632a353f2" + "WESTUS:20150714T213823Z:67195510-c95c-4f2a-9f03-e8128b2d1b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:15:33 GMT" + "Tue, 14 Jul 2015 21:38:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/virtualMachines/vm1166?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTExNjY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest9338.blob.core.windows.net/pslibtest9972/ospslibtest3372.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest2645\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/availabilitySets/as5320\"\r\n }\r\n },\r\n \"name\": \"vm1166\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/e22ab418-d9c1-4ba7-867f-5249723f5175?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UyMmFiNDE4LWQ5YzEtNGJhNy04NjdmLTUyNDk3MjNmNTE3NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1613" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/availabilitySets/AS5320\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest9338.blob.core.windows.net/pslibtest9972/ospslibtest3372.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/virtualMachines/vm1166\",\r\n \"name\": \"vm1166\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1772" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1112,14 +1024,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe" + "59d8f8e1-1294-48c3-9af2-107dcf31723d" ], "Cache-Control": [ "no-cache" @@ -1128,35 +1034,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" ], "x-ms-correlation-request-id": [ - "de5209d5-f80e-4d0e-9310-73cfcffa25d3" + "67195510-c95c-4f2a-9f03-e8128b2d1b1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181538Z:de5209d5-f80e-4d0e-9310-73cfcffa25d3" + "WESTUS:20150714T213823Z:67195510-c95c-4f2a-9f03-e8128b2d1b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:15:37 GMT" + "Tue, 14 Jul 2015 21:38:22 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/e22ab418-d9c1-4ba7-867f-5249723f5175?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UyMmFiNDE4LWQ5YzEtNGJhNy04NjdmLTUyNDk3MjNmNTE3NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,11 +1076,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "c873a6ea-8b48-404b-aa19-1e557b1c4d33" + "59d8f8e1-1294-48c3-9af2-107dcf31723d" ], "Cache-Control": [ "no-cache" @@ -1181,34 +1087,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14944" ], "x-ms-correlation-request-id": [ - "b689a4eb-81d7-46a1-903a-6679f38ec3f0" + "67195510-c95c-4f2a-9f03-e8128b2d1b1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181539Z:b689a4eb-81d7-46a1-903a-6679f38ec3f0" + "WESTUS:20150714T213823Z:67195510-c95c-4f2a-9f03-e8128b2d1b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:15:38 GMT" + "Tue, 14 Jul 2015 21:38:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905\",\r\n \"name\": \"pslibtest7905\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7905.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7905.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7905.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:37:53.5330958Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1219,11 +1128,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "6d91192e-019c-46c9-96c5-aac8e85d40ed" + "bc7125e9-b9d3-43f9-96dc-937b2eb9096d" ], "Cache-Control": [ "no-cache" @@ -1233,34 +1139,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14943" ], "x-ms-correlation-request-id": [ - "38c8ba81-3bce-40fa-b373-947fad558b7f" + "c62f2d82-6ebb-447b-9384-3028d29d07bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181610Z:38c8ba81-3bce-40fa-b373-947fad558b7f" + "WESTUS:20150714T213833Z:c62f2d82-6ebb-447b-9384-3028d29d07bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:16:09 GMT" + "Tue, 14 Jul 2015 21:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905\",\r\n \"name\": \"pslibtest7905\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7905.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7905.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7905.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:37:53.5330958Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1271,11 +1180,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "f5fd1247-3165-4618-b53e-4403462bc65a" + "bc7125e9-b9d3-43f9-96dc-937b2eb9096d" ], "Cache-Control": [ "no-cache" @@ -1285,34 +1191,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14943" ], "x-ms-correlation-request-id": [ - "a5a30537-dd4f-4c8d-9671-a7096fb95f3c" + "c62f2d82-6ebb-447b-9384-3028d29d07bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181640Z:a5a30537-dd4f-4c8d-9671-a7096fb95f3c" + "WESTUS:20150714T213833Z:c62f2d82-6ebb-447b-9384-3028d29d07bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:16:39 GMT" + "Tue, 14 Jul 2015 21:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905\",\r\n \"name\": \"pslibtest7905\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7905.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7905.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7905.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:37:53.5330958Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1323,11 +1232,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "277991b2-3532-4593-993d-7799d58bfdb0" + "bc7125e9-b9d3-43f9-96dc-937b2eb9096d" ], "Cache-Control": [ "no-cache" @@ -1337,34 +1243,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14943" ], "x-ms-correlation-request-id": [ - "a139c975-93ec-47d1-961b-3dee2500f6b6" + "c62f2d82-6ebb-447b-9384-3028d29d07bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181711Z:a139c975-93ec-47d1-961b-3dee2500f6b6" + "WESTUS:20150714T213833Z:c62f2d82-6ebb-447b-9384-3028d29d07bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:17:10 GMT" + "Tue, 14 Jul 2015 21:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905\",\r\n \"name\": \"pslibtest7905\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7905.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7905.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7905.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:37:53.5330958Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1375,11 +1284,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "492c9cad-a8fc-43af-9c4a-4093da46b8e3" + "bc7125e9-b9d3-43f9-96dc-937b2eb9096d" ], "Cache-Control": [ "no-cache" @@ -1389,34 +1295,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14943" ], "x-ms-correlation-request-id": [ - "c89b2336-5428-438e-9b22-857dd355a7bc" + "c62f2d82-6ebb-447b-9384-3028d29d07bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181742Z:c89b2336-5428-438e-9b22-857dd355a7bc" + "WESTUS:20150714T213833Z:c62f2d82-6ebb-447b-9384-3028d29d07bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:17:41 GMT" + "Tue, 14 Jul 2015 21:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905\",\r\n \"name\": \"pslibtest7905\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7905.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7905.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7905.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:37:53.5330958Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1427,11 +1336,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "57a216bf-4573-4d60-bebc-98b29a2089a3" + "c06fc91d-dce9-4bbf-bbf1-5726cc77f2b6" ], "Cache-Control": [ "no-cache" @@ -1441,34 +1347,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14942" ], "x-ms-correlation-request-id": [ - "837c16da-9848-4f8e-bf23-c4791e09df4e" + "27972107-a67b-4b7d-8d3c-bc94f9de3133" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181813Z:837c16da-9848-4f8e-bf23-c4791e09df4e" + "WESTUS:20150714T213833Z:27972107-a67b-4b7d-8d3c-bc94f9de3133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:18:12 GMT" + "Tue, 14 Jul 2015 21:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905\",\r\n \"name\": \"pslibtest7905\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7905.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7905.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7905.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:37:53.5330958Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1479,11 +1388,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "db5f8977-3aac-4bce-93eb-fe7ea7c303c0" + "c06fc91d-dce9-4bbf-bbf1-5726cc77f2b6" ], "Cache-Control": [ "no-cache" @@ -1493,34 +1399,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14942" ], "x-ms-correlation-request-id": [ - "c4df4f57-d449-4495-8834-d270f040f279" + "27972107-a67b-4b7d-8d3c-bc94f9de3133" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181844Z:c4df4f57-d449-4495-8834-d270f040f279" + "WESTUS:20150714T213833Z:27972107-a67b-4b7d-8d3c-bc94f9de3133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:18:43 GMT" + "Tue, 14 Jul 2015 21:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905\",\r\n \"name\": \"pslibtest7905\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7905.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7905.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7905.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:37:53.5330958Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1531,11 +1440,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "00ed437b-4864-41b1-a31d-43854040209f" + "c06fc91d-dce9-4bbf-bbf1-5726cc77f2b6" ], "Cache-Control": [ "no-cache" @@ -1545,34 +1451,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14942" ], "x-ms-correlation-request-id": [ - "0728d721-5dfb-4769-8024-73eab2f00d94" + "27972107-a67b-4b7d-8d3c-bc94f9de3133" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181915Z:0728d721-5dfb-4769-8024-73eab2f00d94" + "WESTUS:20150714T213833Z:27972107-a67b-4b7d-8d3c-bc94f9de3133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:19:15 GMT" + "Tue, 14 Jul 2015 21:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Storage/storageAccounts/pslibtest7905\",\r\n \"name\": \"pslibtest7905\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7905.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7905.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7905.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:37:53.5330958Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1583,11 +1492,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "bc3c2a13-6c8c-4bf5-af17-2402c491b799" + "c06fc91d-dce9-4bbf-bbf1-5726cc77f2b6" ], "Cache-Control": [ "no-cache" @@ -1597,34 +1503,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14942" ], "x-ms-correlation-request-id": [ - "04844355-bdda-495b-b1f3-192f0f37a2bd" + "27972107-a67b-4b7d-8d3c-bc94f9de3133" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T181945Z:04844355-bdda-495b-b1f3-192f0f37a2bd" + "WESTUS:20150714T213833Z:27972107-a67b-4b7d-8d3c-bc94f9de3133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:19:44 GMT" + "Tue, 14 Jul 2015 21:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3863\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863\",\r\n \"etag\": \"W/\\\"8b2dda15-0ea4-42cb-8fa4-ddb53a56af94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"8b2dda15-0ea4-42cb-8fa4-ddb53a56af94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1635,11 +1550,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "f9e2d2fc-bb06-4723-b9ee-b63dd710574f" + "580aa3c0-a5a6-46b2-9a68-93a94b5b25da" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/580aa3c0-a5a6-46b2-9a68-93a94b5b25da?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1648,35 +1569,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-correlation-request-id": [ - "e64ed89e-647c-4b29-94c9-ee8c18024046" + "e31ab2dd-20c2-4109-8362-9395f41ee6db" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182016Z:e64ed89e-647c-4b29-94c9-ee8c18024046" + "WESTUS:20150714T213837Z:e31ab2dd-20c2-4109-8362-9395f41ee6db" ], "Date": [ - "Tue, 16 Jun 2015 18:20:16 GMT" + "Tue, 14 Jul 2015 21:38:36 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3863\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863\",\r\n \"etag\": \"W/\\\"8b2dda15-0ea4-42cb-8fa4-ddb53a56af94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"8b2dda15-0ea4-42cb-8fa4-ddb53a56af94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1687,11 +1614,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "e947b79f-4af3-4018-8348-85227c0f37e0" + "580aa3c0-a5a6-46b2-9a68-93a94b5b25da" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/580aa3c0-a5a6-46b2-9a68-93a94b5b25da?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1700,35 +1633,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-correlation-request-id": [ - "099354da-2036-4363-b713-0d0a0eb92ead" + "e31ab2dd-20c2-4109-8362-9395f41ee6db" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182047Z:099354da-2036-4363-b713-0d0a0eb92ead" + "WESTUS:20150714T213837Z:e31ab2dd-20c2-4109-8362-9395f41ee6db" ], "Date": [ - "Tue, 16 Jun 2015 18:20:46 GMT" + "Tue, 14 Jul 2015 21:38:36 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3863\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863\",\r\n \"etag\": \"W/\\\"8b2dda15-0ea4-42cb-8fa4-ddb53a56af94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"8b2dda15-0ea4-42cb-8fa4-ddb53a56af94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1739,11 +1678,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "e2ad9d5b-e398-41b6-9e97-69dbfd91a3f1" + "580aa3c0-a5a6-46b2-9a68-93a94b5b25da" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/580aa3c0-a5a6-46b2-9a68-93a94b5b25da?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1752,35 +1697,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-correlation-request-id": [ - "5084e2e4-b2d9-450c-83f6-c05b15262df7" + "e31ab2dd-20c2-4109-8362-9395f41ee6db" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182118Z:5084e2e4-b2d9-450c-83f6-c05b15262df7" + "WESTUS:20150714T213837Z:e31ab2dd-20c2-4109-8362-9395f41ee6db" ], "Date": [ - "Tue, 16 Jun 2015 18:21:18 GMT" + "Tue, 14 Jul 2015 21:38:36 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3863\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863\",\r\n \"etag\": \"W/\\\"8b2dda15-0ea4-42cb-8fa4-ddb53a56af94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"8b2dda15-0ea4-42cb-8fa4-ddb53a56af94\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1791,11 +1742,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "111417fd-5379-4793-8516-67339915dacd" + "580aa3c0-a5a6-46b2-9a68-93a94b5b25da" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/580aa3c0-a5a6-46b2-9a68-93a94b5b25da?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1804,35 +1761,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-correlation-request-id": [ - "1692e887-5559-4f08-b55d-4f3e5ad2d5d6" + "e31ab2dd-20c2-4109-8362-9395f41ee6db" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182148Z:1692e887-5559-4f08-b55d-4f3e5ad2d5d6" + "WESTUS:20150714T213837Z:e31ab2dd-20c2-4109-8362-9395f41ee6db" ], "Date": [ - "Tue, 16 Jun 2015 18:21:48 GMT" + "Tue, 14 Jul 2015 21:38:36 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/580aa3c0-a5a6-46b2-9a68-93a94b5b25da?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU4MGFhM2MwLWE1YTYtNDZiMi05YTY4LTkzYTk0YjViMjVkYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1843,12 +1800,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "8db06ada-ac4e-4ee2-b5f3-65b4fc388468" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "44f4cb38-41ec-466f-a650-f6962bade839" - ], "Cache-Control": [ "no-cache" ], @@ -1857,34 +1814,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14941" ], "x-ms-correlation-request-id": [ - "cc1a9381-a050-43e5-ba7e-51cafdcf61be" + "148128ba-29da-4e41-bfae-77216edd0c66" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182219Z:cc1a9381-a050-43e5-ba7e-51cafdcf61be" + "WESTUS:20150714T213848Z:148128ba-29da-4e41-bfae-77216edd0c66" ], "Date": [ - "Tue, 16 Jun 2015 18:22:19 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/580aa3c0-a5a6-46b2-9a68-93a94b5b25da?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU4MGFhM2MwLWE1YTYtNDZiMi05YTY4LTkzYTk0YjViMjVkYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1895,12 +1852,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "8db06ada-ac4e-4ee2-b5f3-65b4fc388468" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "9dbe4755-afbc-4aba-a36c-76cf7ab8837e" - ], "Cache-Control": [ "no-cache" ], @@ -1909,34 +1866,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14941" ], "x-ms-correlation-request-id": [ - "611a2ef7-1c89-4814-9258-e6f1e1a4c899" + "148128ba-29da-4e41-bfae-77216edd0c66" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182250Z:611a2ef7-1c89-4814-9258-e6f1e1a4c899" + "WESTUS:20150714T213848Z:148128ba-29da-4e41-bfae-77216edd0c66" ], "Date": [ - "Tue, 16 Jun 2015 18:22:50 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/580aa3c0-a5a6-46b2-9a68-93a94b5b25da?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU4MGFhM2MwLWE1YTYtNDZiMi05YTY4LTkzYTk0YjViMjVkYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1947,12 +1904,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "8db06ada-ac4e-4ee2-b5f3-65b4fc388468" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "620c5433-3ffa-454b-beff-9c7beb81b373" - ], "Cache-Control": [ "no-cache" ], @@ -1961,34 +1918,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14941" ], "x-ms-correlation-request-id": [ - "1cd56f39-3410-40a3-a9c4-7a291631dfef" + "148128ba-29da-4e41-bfae-77216edd0c66" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182321Z:1cd56f39-3410-40a3-a9c4-7a291631dfef" + "WESTUS:20150714T213848Z:148128ba-29da-4e41-bfae-77216edd0c66" ], "Date": [ - "Tue, 16 Jun 2015 18:23:21 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/580aa3c0-a5a6-46b2-9a68-93a94b5b25da?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU4MGFhM2MwLWE1YTYtNDZiMi05YTY4LTkzYTk0YjViMjVkYT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1999,12 +1956,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "8db06ada-ac4e-4ee2-b5f3-65b4fc388468" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "558e9d8b-e2fd-4fae-906f-697a3d7641b3" - ], "Cache-Control": [ "no-cache" ], @@ -2013,34 +1970,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14941" ], "x-ms-correlation-request-id": [ - "67032ae4-3aae-4842-8c90-dffe562a1790" + "148128ba-29da-4e41-bfae-77216edd0c66" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182352Z:67032ae4-3aae-4842-8c90-dffe562a1790" + "WESTUS:20150714T213848Z:148128ba-29da-4e41-bfae-77216edd0c66" ], "Date": [ - "Tue, 16 Jun 2015 18:23:51 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3863\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2051,48 +2008,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "96c6240e-c422-4af4-9e2c-bd3e63456d4f" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "dc046883-fbb4-4bff-8c56-965a26a9b4e1" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"5d9acd40-ee3c-4279-ad15-0af2143f8835\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14940" ], "x-ms-correlation-request-id": [ - "ca974653-710b-49c0-b845-6ad93211819e" + "bcfd74c9-e34a-4b58-be5a-b4c627012e4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182423Z:ca974653-710b-49c0-b845-6ad93211819e" + "WESTUS:20150714T213848Z:bcfd74c9-e34a-4b58-be5a-b4c627012e4f" ], "Date": [ - "Tue, 16 Jun 2015 18:24:22 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3863\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2103,48 +2063,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "96c6240e-c422-4af4-9e2c-bd3e63456d4f" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "c9931467-eb3a-4d96-88e9-753d3efd3be8" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"5d9acd40-ee3c-4279-ad15-0af2143f8835\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14940" ], "x-ms-correlation-request-id": [ - "13352008-b0e0-4737-850e-f7d5aed48bca" + "bcfd74c9-e34a-4b58-be5a-b4c627012e4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182454Z:13352008-b0e0-4737-850e-f7d5aed48bca" + "WESTUS:20150714T213848Z:bcfd74c9-e34a-4b58-be5a-b4c627012e4f" ], "Date": [ - "Tue, 16 Jun 2015 18:24:53 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3863\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2155,48 +2118,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "96c6240e-c422-4af4-9e2c-bd3e63456d4f" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "075cf23f-2c03-4035-a8b4-32c8df415c4c" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"5d9acd40-ee3c-4279-ad15-0af2143f8835\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14940" ], "x-ms-correlation-request-id": [ - "158337c8-e1be-4b4b-ba13-dae3cd37dafa" + "bcfd74c9-e34a-4b58-be5a-b4c627012e4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182525Z:158337c8-e1be-4b4b-ba13-dae3cd37dafa" + "WESTUS:20150714T213848Z:bcfd74c9-e34a-4b58-be5a-b4c627012e4f" ], "Date": [ - "Tue, 16 Jun 2015 18:25:24 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3863\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2207,48 +2173,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "96c6240e-c422-4af4-9e2c-bd3e63456d4f" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "6676a932-d14a-4b25-b241-f4cf31faf1f3" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"5d9acd40-ee3c-4279-ad15-0af2143f8835\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14940" ], "x-ms-correlation-request-id": [ - "4285dc31-9743-4daa-b18e-0150456e3526" + "bcfd74c9-e34a-4b58-be5a-b4c627012e4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182555Z:4285dc31-9743-4daa-b18e-0150456e3526" + "WESTUS:20150714T213848Z:bcfd74c9-e34a-4b58-be5a-b4c627012e4f" ], "Date": [ - "Tue, 16 Jun 2015 18:25:55 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863/subnets/azsmnet6337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2My9zdWJuZXRzL2F6c21uZXQ2MzM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2259,48 +2228,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "e47681bc-36d7-42f8-851e-ac653ba06121" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "c83ba383-5a6b-41e4-ad45-cbb9f47dcc90" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"5d9acd40-ee3c-4279-ad15-0af2143f8835\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14939" ], "x-ms-correlation-request-id": [ - "5e5a3edd-e8ed-41e0-8087-863dd71e21d8" + "0fc1dedc-7e31-40f8-b3f4-377dffd26d07" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182626Z:5e5a3edd-e8ed-41e0-8087-863dd71e21d8" + "WESTUS:20150714T213848Z:0fc1dedc-7e31-40f8-b3f4-377dffd26d07" ], "Date": [ - "Tue, 16 Jun 2015 18:26:26 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863/subnets/azsmnet6337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2My9zdWJuZXRzL2F6c21uZXQ2MzM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2311,48 +2283,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "e47681bc-36d7-42f8-851e-ac653ba06121" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "1c8f745e-829b-419c-8c53-0391e47d2c97" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"5d9acd40-ee3c-4279-ad15-0af2143f8835\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14939" ], "x-ms-correlation-request-id": [ - "9ce4f55a-aa02-464d-b5cd-f1af6edee6d1" + "0fc1dedc-7e31-40f8-b3f4-377dffd26d07" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182657Z:9ce4f55a-aa02-464d-b5cd-f1af6edee6d1" + "WESTUS:20150714T213848Z:0fc1dedc-7e31-40f8-b3f4-377dffd26d07" ], "Date": [ - "Tue, 16 Jun 2015 18:26:56 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863/subnets/azsmnet6337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2My9zdWJuZXRzL2F6c21uZXQ2MzM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2363,48 +2338,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "e47681bc-36d7-42f8-851e-ac653ba06121" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "91e8aced-6500-482a-8fae-57525229ddfb" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"5d9acd40-ee3c-4279-ad15-0af2143f8835\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14939" ], "x-ms-correlation-request-id": [ - "c10d89e7-ee6a-4ea9-8a93-cdd960729b6b" + "0fc1dedc-7e31-40f8-b3f4-377dffd26d07" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182728Z:c10d89e7-ee6a-4ea9-8a93-cdd960729b6b" + "WESTUS:20150714T213848Z:0fc1dedc-7e31-40f8-b3f4-377dffd26d07" ], "Date": [ - "Tue, 16 Jun 2015 18:27:27 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualnetworks/azsmnet3863/subnets/azsmnet6337?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0Mzg2My9zdWJuZXRzL2F6c21uZXQ2MzM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6337\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2415,48 +2393,57 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "e47681bc-36d7-42f8-851e-ac653ba06121" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "6c4088ed-d236-481b-82b6-33d098d2ddb1" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"5d9acd40-ee3c-4279-ad15-0af2143f8835\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14939" ], "x-ms-correlation-request-id": [ - "63d77937-2419-42db-946a-2ca6e8593370" + "0fc1dedc-7e31-40f8-b3f4-377dffd26d07" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182759Z:63d77937-2419-42db-946a-2ca6e8593370" + "WESTUS:20150714T213848Z:0fc1dedc-7e31-40f8-b3f4-377dffd26d07" ], "Date": [ - "Tue, 16 Jun 2015 18:27:59 GMT" + "Tue, 14 Jul 2015 21:38:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "726" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2467,11 +2454,75 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "fd757887-be56-41b7-a8e0-20e4c24997fc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd757887-be56-41b7-a8e0-20e4c24997fc?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "36775495-5928-4b4e-9ff9-3b1522b1dd79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213852Z:36775495-5928-4b4e-9ff9-3b1522b1dd79" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "726" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "d80f0d6a-c466-48f3-a8bf-67f9e52a2469" + "fd757887-be56-41b7-a8e0-20e4c24997fc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd757887-be56-41b7-a8e0-20e4c24997fc?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -2480,35 +2531,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-correlation-request-id": [ - "69760c35-f772-41bd-a58b-89eb65c2db07" + "36775495-5928-4b4e-9ff9-3b1522b1dd79" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182830Z:69760c35-f772-41bd-a58b-89eb65c2db07" + "WESTUS:20150714T213852Z:36775495-5928-4b4e-9ff9-3b1522b1dd79" ], "Date": [ - "Tue, 16 Jun 2015 18:28:29 GMT" + "Tue, 14 Jul 2015 21:38:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "726" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2519,11 +2576,75 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "fd757887-be56-41b7-a8e0-20e4c24997fc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd757887-be56-41b7-a8e0-20e4c24997fc?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "36775495-5928-4b4e-9ff9-3b1522b1dd79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213852Z:36775495-5928-4b4e-9ff9-3b1522b1dd79" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "726" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "e534ad83-46b6-4fb9-a744-4447dfdfd8b9" + "fd757887-be56-41b7-a8e0-20e4c24997fc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/fd757887-be56-41b7-a8e0-20e4c24997fc?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -2532,35 +2653,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-correlation-request-id": [ - "5645634c-e5ed-4e19-b34d-a931a14aa3ac" + "36775495-5928-4b4e-9ff9-3b1522b1dd79" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182900Z:5645634c-e5ed-4e19-b34d-a931a14aa3ac" + "WESTUS:20150714T213852Z:36775495-5928-4b4e-9ff9-3b1522b1dd79" ], "Date": [ - "Tue, 16 Jun 2015 18:29:00 GMT" + "Tue, 14 Jul 2015 21:38:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2571,48 +2692,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "7eb2e42f-47cf-4ecc-8e72-d23d8ba811d4" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "6363d5de-1881-4d61-969a-324256e8b052" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"e55885e2-533d-4a52-8edb-91fa8a377e60\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14938" ], "x-ms-correlation-request-id": [ - "f2fad5f4-0329-4248-9c9b-4211ce549762" + "4f7203ea-2244-4154-ac83-4dc559b90142" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T182931Z:f2fad5f4-0329-4248-9c9b-4211ce549762" + "WESTUS:20150714T213852Z:4f7203ea-2244-4154-ac83-4dc559b90142" ], "Date": [ - "Tue, 16 Jun 2015 18:29:31 GMT" + "Tue, 14 Jul 2015 21:38:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2623,48 +2747,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "7eb2e42f-47cf-4ecc-8e72-d23d8ba811d4" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "5566d899-8742-45a8-82ab-1d731f96793d" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"e55885e2-533d-4a52-8edb-91fa8a377e60\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14938" ], "x-ms-correlation-request-id": [ - "d4700b4c-f82d-4484-8da3-981bf67fb32f" + "4f7203ea-2244-4154-ac83-4dc559b90142" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183002Z:d4700b4c-f82d-4484-8da3-981bf67fb32f" + "WESTUS:20150714T213852Z:4f7203ea-2244-4154-ac83-4dc559b90142" ], "Date": [ - "Tue, 16 Jun 2015 18:30:02 GMT" + "Tue, 14 Jul 2015 21:38:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2675,48 +2802,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "7eb2e42f-47cf-4ecc-8e72-d23d8ba811d4" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "97868a1a-41b2-407f-83b6-8ae2054e65f7" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"e55885e2-533d-4a52-8edb-91fa8a377e60\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14938" ], "x-ms-correlation-request-id": [ - "7469e6d0-6c46-4773-b242-ad0b8af285a4" + "4f7203ea-2244-4154-ac83-4dc559b90142" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183033Z:7469e6d0-6c46-4773-b242-ad0b8af285a4" + "WESTUS:20150714T213852Z:4f7203ea-2244-4154-ac83-4dc559b90142" ], "Date": [ - "Tue, 16 Jun 2015 18:30:33 GMT" + "Tue, 14 Jul 2015 21:38:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"e55885e2-533d-4a52-8edb-91fa8a377e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2727,48 +2857,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "7eb2e42f-47cf-4ecc-8e72-d23d8ba811d4" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f5850f9b-4a6f-41a5-a1c7-1a7e82f84fc7" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"e55885e2-533d-4a52-8edb-91fa8a377e60\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14938" ], "x-ms-correlation-request-id": [ - "1a494515-27a1-4854-9306-f7270767ec5b" + "4f7203ea-2244-4154-ac83-4dc559b90142" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183104Z:1a494515-27a1-4854-9306-f7270767ec5b" + "WESTUS:20150714T213852Z:4f7203ea-2244-4154-ac83-4dc559b90142" ], "Date": [ - "Tue, 16 Jun 2015 18:31:03 GMT" + "Tue, 14 Jul 2015 21:38:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"38efe24d-62b0-4d8d-afc3-d8c29340815b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"38efe24d-62b0-4d8d-afc3-d8c29340815b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-69\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2779,48 +2912,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "58e0275a-3622-4017-984c-5a673552cf07" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "7f991912-33a6-4e88-92f4-3d2d7b4bc1d9" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"38efe24d-62b0-4d8d-afc3-d8c29340815b\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14919" ], "x-ms-correlation-request-id": [ - "60540af9-87e3-4d08-bf6a-2d6ad5ef0dde" + "c5a22263-d582-4664-aacb-340255d41f52" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183135Z:60540af9-87e3-4d08-bf6a-2d6ad5ef0dde" + "WESTUS:20150714T214648Z:c5a22263-d582-4664-aacb-340255d41f52" ], "Date": [ - "Tue, 16 Jun 2015 18:31:34 GMT" + "Tue, 14 Jul 2015 21:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"38efe24d-62b0-4d8d-afc3-d8c29340815b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"38efe24d-62b0-4d8d-afc3-d8c29340815b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-69\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2831,48 +2967,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "58e0275a-3622-4017-984c-5a673552cf07" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "82dcef26-a040-42d9-9119-bc765f11e50f" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"38efe24d-62b0-4d8d-afc3-d8c29340815b\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14919" ], "x-ms-correlation-request-id": [ - "c1aeef0f-f20f-48ee-a985-c24b416827ce" + "c5a22263-d582-4664-aacb-340255d41f52" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183206Z:c1aeef0f-f20f-48ee-a985-c24b416827ce" + "WESTUS:20150714T214648Z:c5a22263-d582-4664-aacb-340255d41f52" ], "Date": [ - "Tue, 16 Jun 2015 18:32:05 GMT" + "Tue, 14 Jul 2015 21:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"38efe24d-62b0-4d8d-afc3-d8c29340815b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"38efe24d-62b0-4d8d-afc3-d8c29340815b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-69\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2883,48 +3022,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "58e0275a-3622-4017-984c-5a673552cf07" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "2585bcaa-0c40-4f7c-8f62-6b5b5e085d4f" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"38efe24d-62b0-4d8d-afc3-d8c29340815b\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14919" ], "x-ms-correlation-request-id": [ - "c8eae142-188c-478b-99d9-166cd2e98c72" + "c5a22263-d582-4664-aacb-340255d41f52" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183236Z:c8eae142-188c-478b-99d9-166cd2e98c72" + "WESTUS:20150714T214648Z:c5a22263-d582-4664-aacb-340255d41f52" ], "Date": [ - "Tue, 16 Jun 2015 18:32:35 GMT" + "Tue, 14 Jul 2015 21:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5349\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"etag\": \"W/\\\"38efe24d-62b0-4d8d-afc3-d8c29340815b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet207\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349/ipConfigurations/azsmnet207\",\r\n \"etag\": \"W/\\\"38efe24d-62b0-4d8d-afc3-d8c29340815b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-69\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2935,48 +3077,57 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "58e0275a-3622-4017-984c-5a673552cf07" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "28c5bfd3-0f81-41e3-9ea8-2adb28e68395" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"38efe24d-62b0-4d8d-afc3-d8c29340815b\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14919" ], "x-ms-correlation-request-id": [ - "c4e5baa6-1d88-42a9-80d4-7b1ef80fe410" + "c5a22263-d582-4664-aacb-340255d41f52" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183307Z:c4e5baa6-1d88-42a9-80d4-7b1ef80fe410" + "WESTUS:20150714T214648Z:c5a22263-d582-4664-aacb-340255d41f52" ], "Date": [ - "Tue, 16 Jun 2015 18:33:07 GMT" + "Tue, 14 Jul 2015 21:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1152" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2987,12 +3138,15 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "39e85b1a-c689-4c74-b744-22a5fa18e576" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/39e85b1a-c689-4c74-b744-22a5fa18e576?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "c3b109cc-fadf-48b4-85e9-e4799dd4aa6b" - ], "Cache-Control": [ "no-cache" ], @@ -3000,35 +3154,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" ], "x-ms-correlation-request-id": [ - "b78ff513-c8b3-4c95-90b7-e9a0110c4f0b" + "15e356dd-fdf2-4e4f-b1b0-bcec11818b4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183338Z:b78ff513-c8b3-4c95-90b7-e9a0110c4f0b" + "WESTUS:20150714T213856Z:15e356dd-fdf2-4e4f-b1b0-bcec11818b4e" ], "Date": [ - "Tue, 16 Jun 2015 18:33:37 GMT" + "Tue, 14 Jul 2015 21:38:56 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1152" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3039,51 +3199,14186 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "39e85b1a-c689-4c74-b744-22a5fa18e576" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/39e85b1a-c689-4c74-b744-22a5fa18e576?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "b376f077-0474-4e2b-a5f0-732e272ef8e6" + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "15e356dd-fdf2-4e4f-b1b0-bcec11818b4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213856Z:15e356dd-fdf2-4e4f-b1b0-bcec11818b4e" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "39e85b1a-c689-4c74-b744-22a5fa18e576" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/39e85b1a-c689-4c74-b744-22a5fa18e576?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "15e356dd-fdf2-4e4f-b1b0-bcec11818b4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213856Z:15e356dd-fdf2-4e4f-b1b0-bcec11818b4e" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet6337\",\r\n \"etag\": \"W/\\\"5d9acd40-ee3c-4279-ad15-0af2143f8835\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "39e85b1a-c689-4c74-b744-22a5fa18e576" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/39e85b1a-c689-4c74-b744-22a5fa18e576?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "15e356dd-fdf2-4e4f-b1b0-bcec11818b4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213856Z:15e356dd-fdf2-4e4f-b1b0-bcec11818b4e" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a830045b-fa6e-450e-aa11-577cbd021800" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65b52ae0-71ac-4040-b149-7279e5280708\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "c423ea29-5181-4d4b-a1ff-68ab2e98e6fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213856Z:c423ea29-5181-4d4b-a1ff-68ab2e98e6fe" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a830045b-fa6e-450e-aa11-577cbd021800" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65b52ae0-71ac-4040-b149-7279e5280708\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "c423ea29-5181-4d4b-a1ff-68ab2e98e6fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213856Z:c423ea29-5181-4d4b-a1ff-68ab2e98e6fe" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a830045b-fa6e-450e-aa11-577cbd021800" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65b52ae0-71ac-4040-b149-7279e5280708\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "c423ea29-5181-4d4b-a1ff-68ab2e98e6fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213856Z:c423ea29-5181-4d4b-a1ff-68ab2e98e6fe" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"65b52ae0-71ac-4040-b149-7279e5280708\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a830045b-fa6e-450e-aa11-577cbd021800" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65b52ae0-71ac-4040-b149-7279e5280708\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "c423ea29-5181-4d4b-a1ff-68ab2e98e6fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213856Z:c423ea29-5181-4d4b-a1ff-68ab2e98e6fe" + ], + "Date": [ + "Tue, 14 Jul 2015 21:38:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-E0\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "87535214-57e4-45a1-9581-a9d8448cff55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "13cfdcf5-4e0f-4271-a465-7b070df84272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214648Z:13cfdcf5-4e0f-4271-a465-7b070df84272" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-E0\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "87535214-57e4-45a1-9581-a9d8448cff55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "13cfdcf5-4e0f-4271-a465-7b070df84272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214648Z:13cfdcf5-4e0f-4271-a465-7b070df84272" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-E0\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "87535214-57e4-45a1-9581-a9d8448cff55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "13cfdcf5-4e0f-4271-a465-7b070df84272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214648Z:13cfdcf5-4e0f-4271-a465-7b070df84272" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ4MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8250\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"etag\": \"W/\\\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet7149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250/ipConfigurations/azsmnet7149\",\r\n \"etag\": \"W/\\\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\\\"\",\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/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/virtualNetworks/azsmnet3863/subnets/azsmnet6337\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-A4-E0\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "87535214-57e4-45a1-9581-a9d8448cff55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a2772eb5-f8a1-40cc-8319-ea5f5e9f3f7e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "13cfdcf5-4e0f-4271-a465-7b070df84272" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214648Z:13cfdcf5-4e0f-4271-a465-7b070df84272" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM1ODcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872\",\r\n \"name\": \"as5872\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2a6d43ac-860c-47bc-9862-b7d47d5f5b38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "7c55a55d-c988-4528-a769-7f50fc0f2bd7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213900Z:7c55a55d-c988-4528-a769-7f50fc0f2bd7" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM1ODcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872\",\r\n \"name\": \"as5872\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2a6d43ac-860c-47bc-9862-b7d47d5f5b38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "7c55a55d-c988-4528-a769-7f50fc0f2bd7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213900Z:7c55a55d-c988-4528-a769-7f50fc0f2bd7" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM1ODcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872\",\r\n \"name\": \"as5872\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2a6d43ac-860c-47bc-9862-b7d47d5f5b38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "7c55a55d-c988-4528-a769-7f50fc0f2bd7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213900Z:7c55a55d-c988-4528-a769-7f50fc0f2bd7" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM1ODcyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872\",\r\n \"name\": \"as5872\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2a6d43ac-860c-47bc-9862-b7d47d5f5b38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "7c55a55d-c988-4528-a769-7f50fc0f2bd7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213900Z:7c55a55d-c988-4528-a769-7f50fc0f2bd7" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1917\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1545" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "41deeaca-7f1d-492f-b50c-ccce5de56c3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "76e036b7-05af-42f2-8415-3cf68c13c3d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213904Z:76e036b7-05af-42f2-8415-3cf68c13c3d0" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:04 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1917\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1545" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "41deeaca-7f1d-492f-b50c-ccce5de56c3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "76e036b7-05af-42f2-8415-3cf68c13c3d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213904Z:76e036b7-05af-42f2-8415-3cf68c13c3d0" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:04 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1917\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1545" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "41deeaca-7f1d-492f-b50c-ccce5de56c3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "76e036b7-05af-42f2-8415-3cf68c13c3d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213904Z:76e036b7-05af-42f2-8415-3cf68c13c3d0" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:04 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1917\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/as5872\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1545" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1773" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "41deeaca-7f1d-492f-b50c-ccce5de56c3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "76e036b7-05af-42f2-8415-3cf68c13c3d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213904Z:76e036b7-05af-42f2-8415-3cf68c13c3d0" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:04 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b6360191-04bc-4aff-9a4a-3ca365f0da22" + ], + "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": [ + "64bafbb4-484a-4cbe-be8d-c9ff067bc220" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213935Z:64bafbb4-484a-4cbe-be8d-c9ff067bc220" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b6360191-04bc-4aff-9a4a-3ca365f0da22" + ], + "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": [ + "64bafbb4-484a-4cbe-be8d-c9ff067bc220" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213935Z:64bafbb4-484a-4cbe-be8d-c9ff067bc220" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b6360191-04bc-4aff-9a4a-3ca365f0da22" + ], + "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": [ + "64bafbb4-484a-4cbe-be8d-c9ff067bc220" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213935Z:64bafbb4-484a-4cbe-be8d-c9ff067bc220" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b6360191-04bc-4aff-9a4a-3ca365f0da22" + ], + "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": [ + "64bafbb4-484a-4cbe-be8d-c9ff067bc220" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213935Z:64bafbb4-484a-4cbe-be8d-c9ff067bc220" + ], + "Date": [ + "Tue, 14 Jul 2015 21:39:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f94978b-6104-4937-b006-e3154f74ca34" + ], + "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": [ + "de863fd8-d16f-411a-8fa5-c7bee6023e29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214006Z:de863fd8-d16f-411a-8fa5-c7bee6023e29" + ], + "Date": [ + "Tue, 14 Jul 2015 21:40:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f94978b-6104-4937-b006-e3154f74ca34" + ], + "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": [ + "de863fd8-d16f-411a-8fa5-c7bee6023e29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214006Z:de863fd8-d16f-411a-8fa5-c7bee6023e29" + ], + "Date": [ + "Tue, 14 Jul 2015 21:40:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f94978b-6104-4937-b006-e3154f74ca34" + ], + "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": [ + "de863fd8-d16f-411a-8fa5-c7bee6023e29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214006Z:de863fd8-d16f-411a-8fa5-c7bee6023e29" + ], + "Date": [ + "Tue, 14 Jul 2015 21:40:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f94978b-6104-4937-b006-e3154f74ca34" + ], + "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": [ + "de863fd8-d16f-411a-8fa5-c7bee6023e29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214006Z:de863fd8-d16f-411a-8fa5-c7bee6023e29" + ], + "Date": [ + "Tue, 14 Jul 2015 21:40:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f83ac3a1-7b15-4eb7-96f5-ef0ecdd12eb4" + ], + "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": [ + "43804887-e42a-44aa-afed-0c67c29e2f9e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214037Z:43804887-e42a-44aa-afed-0c67c29e2f9e" + ], + "Date": [ + "Tue, 14 Jul 2015 21:40:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f83ac3a1-7b15-4eb7-96f5-ef0ecdd12eb4" + ], + "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": [ + "43804887-e42a-44aa-afed-0c67c29e2f9e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214037Z:43804887-e42a-44aa-afed-0c67c29e2f9e" + ], + "Date": [ + "Tue, 14 Jul 2015 21:40:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f83ac3a1-7b15-4eb7-96f5-ef0ecdd12eb4" + ], + "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": [ + "43804887-e42a-44aa-afed-0c67c29e2f9e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214037Z:43804887-e42a-44aa-afed-0c67c29e2f9e" + ], + "Date": [ + "Tue, 14 Jul 2015 21:40:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f83ac3a1-7b15-4eb7-96f5-ef0ecdd12eb4" + ], + "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": [ + "43804887-e42a-44aa-afed-0c67c29e2f9e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214037Z:43804887-e42a-44aa-afed-0c67c29e2f9e" + ], + "Date": [ + "Tue, 14 Jul 2015 21:40:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0c2960e5-6a85-40ef-903a-7cfb924209e7" + ], + "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": [ + "b4a4de46-4d3a-440d-a617-cd60cfaf4556" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214108Z:b4a4de46-4d3a-440d-a617-cd60cfaf4556" + ], + "Date": [ + "Tue, 14 Jul 2015 21:41:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0c2960e5-6a85-40ef-903a-7cfb924209e7" + ], + "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": [ + "b4a4de46-4d3a-440d-a617-cd60cfaf4556" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214108Z:b4a4de46-4d3a-440d-a617-cd60cfaf4556" + ], + "Date": [ + "Tue, 14 Jul 2015 21:41:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0c2960e5-6a85-40ef-903a-7cfb924209e7" + ], + "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": [ + "b4a4de46-4d3a-440d-a617-cd60cfaf4556" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214108Z:b4a4de46-4d3a-440d-a617-cd60cfaf4556" + ], + "Date": [ + "Tue, 14 Jul 2015 21:41:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0c2960e5-6a85-40ef-903a-7cfb924209e7" + ], + "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": [ + "b4a4de46-4d3a-440d-a617-cd60cfaf4556" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214108Z:b4a4de46-4d3a-440d-a617-cd60cfaf4556" + ], + "Date": [ + "Tue, 14 Jul 2015 21:41:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "45bf32aa-f980-49ee-b238-e35006bf7e70" + ], + "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": [ + "a99cb739-d177-42ab-b499-25eda9f50b64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214139Z:a99cb739-d177-42ab-b499-25eda9f50b64" + ], + "Date": [ + "Tue, 14 Jul 2015 21:41:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "45bf32aa-f980-49ee-b238-e35006bf7e70" + ], + "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": [ + "a99cb739-d177-42ab-b499-25eda9f50b64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214139Z:a99cb739-d177-42ab-b499-25eda9f50b64" + ], + "Date": [ + "Tue, 14 Jul 2015 21:41:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "45bf32aa-f980-49ee-b238-e35006bf7e70" + ], + "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": [ + "a99cb739-d177-42ab-b499-25eda9f50b64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214139Z:a99cb739-d177-42ab-b499-25eda9f50b64" + ], + "Date": [ + "Tue, 14 Jul 2015 21:41:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "45bf32aa-f980-49ee-b238-e35006bf7e70" + ], + "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": [ + "a99cb739-d177-42ab-b499-25eda9f50b64" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214139Z:a99cb739-d177-42ab-b499-25eda9f50b64" + ], + "Date": [ + "Tue, 14 Jul 2015 21:41:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "97fe6cfc-83d3-4c7f-950e-db1911ddf84d" + ], + "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": [ + "ead2448c-4ff4-468c-8f80-4b8b731fc748" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214209Z:ead2448c-4ff4-468c-8f80-4b8b731fc748" + ], + "Date": [ + "Tue, 14 Jul 2015 21:42:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "97fe6cfc-83d3-4c7f-950e-db1911ddf84d" + ], + "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": [ + "ead2448c-4ff4-468c-8f80-4b8b731fc748" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214209Z:ead2448c-4ff4-468c-8f80-4b8b731fc748" + ], + "Date": [ + "Tue, 14 Jul 2015 21:42:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "97fe6cfc-83d3-4c7f-950e-db1911ddf84d" + ], + "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": [ + "ead2448c-4ff4-468c-8f80-4b8b731fc748" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214209Z:ead2448c-4ff4-468c-8f80-4b8b731fc748" + ], + "Date": [ + "Tue, 14 Jul 2015 21:42:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "97fe6cfc-83d3-4c7f-950e-db1911ddf84d" + ], + "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": [ + "ead2448c-4ff4-468c-8f80-4b8b731fc748" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214209Z:ead2448c-4ff4-468c-8f80-4b8b731fc748" + ], + "Date": [ + "Tue, 14 Jul 2015 21:42:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b2c4036a-e250-497b-a7f1-00edc57b241b" + ], + "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": [ + "32252871-4c29-4b73-af6b-8401f66a04b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214240Z:32252871-4c29-4b73-af6b-8401f66a04b5" + ], + "Date": [ + "Tue, 14 Jul 2015 21:42:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b2c4036a-e250-497b-a7f1-00edc57b241b" + ], + "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": [ + "32252871-4c29-4b73-af6b-8401f66a04b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214240Z:32252871-4c29-4b73-af6b-8401f66a04b5" + ], + "Date": [ + "Tue, 14 Jul 2015 21:42:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b2c4036a-e250-497b-a7f1-00edc57b241b" + ], + "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": [ + "32252871-4c29-4b73-af6b-8401f66a04b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214240Z:32252871-4c29-4b73-af6b-8401f66a04b5" + ], + "Date": [ + "Tue, 14 Jul 2015 21:42:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b2c4036a-e250-497b-a7f1-00edc57b241b" + ], + "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": [ + "32252871-4c29-4b73-af6b-8401f66a04b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214240Z:32252871-4c29-4b73-af6b-8401f66a04b5" + ], + "Date": [ + "Tue, 14 Jul 2015 21:42:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1099f062-7f5b-45e3-be8c-e2273c77eb8c" + ], + "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": [ + "15ba51be-b7e4-47e7-ab53-8f648b548478" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214311Z:15ba51be-b7e4-47e7-ab53-8f648b548478" + ], + "Date": [ + "Tue, 14 Jul 2015 21:43:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1099f062-7f5b-45e3-be8c-e2273c77eb8c" + ], + "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": [ + "15ba51be-b7e4-47e7-ab53-8f648b548478" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214311Z:15ba51be-b7e4-47e7-ab53-8f648b548478" + ], + "Date": [ + "Tue, 14 Jul 2015 21:43:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1099f062-7f5b-45e3-be8c-e2273c77eb8c" + ], + "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": [ + "15ba51be-b7e4-47e7-ab53-8f648b548478" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214311Z:15ba51be-b7e4-47e7-ab53-8f648b548478" + ], + "Date": [ + "Tue, 14 Jul 2015 21:43:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1099f062-7f5b-45e3-be8c-e2273c77eb8c" + ], + "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": [ + "15ba51be-b7e4-47e7-ab53-8f648b548478" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214311Z:15ba51be-b7e4-47e7-ab53-8f648b548478" + ], + "Date": [ + "Tue, 14 Jul 2015 21:43:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "038003ed-fe47-484f-aa9e-94e9e01bd6f5" + ], + "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": [ + "cb30e046-9ef9-409e-9b39-f5ec0757f349" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214341Z:cb30e046-9ef9-409e-9b39-f5ec0757f349" + ], + "Date": [ + "Tue, 14 Jul 2015 21:43:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "038003ed-fe47-484f-aa9e-94e9e01bd6f5" + ], + "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": [ + "cb30e046-9ef9-409e-9b39-f5ec0757f349" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214341Z:cb30e046-9ef9-409e-9b39-f5ec0757f349" + ], + "Date": [ + "Tue, 14 Jul 2015 21:43:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "038003ed-fe47-484f-aa9e-94e9e01bd6f5" + ], + "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": [ + "cb30e046-9ef9-409e-9b39-f5ec0757f349" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214341Z:cb30e046-9ef9-409e-9b39-f5ec0757f349" + ], + "Date": [ + "Tue, 14 Jul 2015 21:43:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "038003ed-fe47-484f-aa9e-94e9e01bd6f5" + ], + "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": [ + "cb30e046-9ef9-409e-9b39-f5ec0757f349" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214341Z:cb30e046-9ef9-409e-9b39-f5ec0757f349" + ], + "Date": [ + "Tue, 14 Jul 2015 21:43:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "75b63d19-b05f-40e9-ad44-8c2b4dd5605e" + ], + "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": [ + "0bec4f16-22e8-409c-9891-8146f0b68eb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214412Z:0bec4f16-22e8-409c-9891-8146f0b68eb2" + ], + "Date": [ + "Tue, 14 Jul 2015 21:44:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "75b63d19-b05f-40e9-ad44-8c2b4dd5605e" + ], + "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": [ + "0bec4f16-22e8-409c-9891-8146f0b68eb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214412Z:0bec4f16-22e8-409c-9891-8146f0b68eb2" + ], + "Date": [ + "Tue, 14 Jul 2015 21:44:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "75b63d19-b05f-40e9-ad44-8c2b4dd5605e" + ], + "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": [ + "0bec4f16-22e8-409c-9891-8146f0b68eb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214412Z:0bec4f16-22e8-409c-9891-8146f0b68eb2" + ], + "Date": [ + "Tue, 14 Jul 2015 21:44:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "75b63d19-b05f-40e9-ad44-8c2b4dd5605e" + ], + "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": [ + "0bec4f16-22e8-409c-9891-8146f0b68eb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214412Z:0bec4f16-22e8-409c-9891-8146f0b68eb2" + ], + "Date": [ + "Tue, 14 Jul 2015 21:44:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8a66915f-2bbc-4b79-adaf-63da476c9a48" + ], + "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": [ + "97571dac-eb0d-4d71-b538-8b906b67c0a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214443Z:97571dac-eb0d-4d71-b538-8b906b67c0a1" + ], + "Date": [ + "Tue, 14 Jul 2015 21:44:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8a66915f-2bbc-4b79-adaf-63da476c9a48" + ], + "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": [ + "97571dac-eb0d-4d71-b538-8b906b67c0a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214443Z:97571dac-eb0d-4d71-b538-8b906b67c0a1" + ], + "Date": [ + "Tue, 14 Jul 2015 21:44:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8a66915f-2bbc-4b79-adaf-63da476c9a48" + ], + "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": [ + "97571dac-eb0d-4d71-b538-8b906b67c0a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214443Z:97571dac-eb0d-4d71-b538-8b906b67c0a1" + ], + "Date": [ + "Tue, 14 Jul 2015 21:44:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8a66915f-2bbc-4b79-adaf-63da476c9a48" + ], + "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": [ + "97571dac-eb0d-4d71-b538-8b906b67c0a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214443Z:97571dac-eb0d-4d71-b538-8b906b67c0a1" + ], + "Date": [ + "Tue, 14 Jul 2015 21:44:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a8553861-5915-4154-a335-24cc416cf314" + ], + "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": [ + "97be6016-7283-43ac-a2aa-954788045469" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214514Z:97be6016-7283-43ac-a2aa-954788045469" + ], + "Date": [ + "Tue, 14 Jul 2015 21:45:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a8553861-5915-4154-a335-24cc416cf314" + ], + "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": [ + "97be6016-7283-43ac-a2aa-954788045469" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214514Z:97be6016-7283-43ac-a2aa-954788045469" + ], + "Date": [ + "Tue, 14 Jul 2015 21:45:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a8553861-5915-4154-a335-24cc416cf314" + ], + "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": [ + "97be6016-7283-43ac-a2aa-954788045469" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214514Z:97be6016-7283-43ac-a2aa-954788045469" + ], + "Date": [ + "Tue, 14 Jul 2015 21:45:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a8553861-5915-4154-a335-24cc416cf314" + ], + "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": [ + "97be6016-7283-43ac-a2aa-954788045469" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214514Z:97be6016-7283-43ac-a2aa-954788045469" + ], + "Date": [ + "Tue, 14 Jul 2015 21:45:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6189a2c8-f3ba-4056-9527-d77b857cb023" + ], + "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": [ + "fb5e2f74-8110-41ab-a408-64a9b0d71e16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214544Z:fb5e2f74-8110-41ab-a408-64a9b0d71e16" + ], + "Date": [ + "Tue, 14 Jul 2015 21:45:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6189a2c8-f3ba-4056-9527-d77b857cb023" + ], + "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": [ + "fb5e2f74-8110-41ab-a408-64a9b0d71e16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214544Z:fb5e2f74-8110-41ab-a408-64a9b0d71e16" + ], + "Date": [ + "Tue, 14 Jul 2015 21:45:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6189a2c8-f3ba-4056-9527-d77b857cb023" + ], + "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": [ + "fb5e2f74-8110-41ab-a408-64a9b0d71e16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214544Z:fb5e2f74-8110-41ab-a408-64a9b0d71e16" + ], + "Date": [ + "Tue, 14 Jul 2015 21:45:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6189a2c8-f3ba-4056-9527-d77b857cb023" + ], + "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": [ + "fb5e2f74-8110-41ab-a408-64a9b0d71e16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214544Z:fb5e2f74-8110-41ab-a408-64a9b0d71e16" + ], + "Date": [ + "Tue, 14 Jul 2015 21:45:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ddd7cc40-69ec-4a7b-b559-7a2f960282fd" + ], + "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": [ + "ea7eadfe-2494-43a7-8b73-de063353552f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214615Z:ea7eadfe-2494-43a7-8b73-de063353552f" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ddd7cc40-69ec-4a7b-b559-7a2f960282fd" + ], + "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": [ + "ea7eadfe-2494-43a7-8b73-de063353552f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214615Z:ea7eadfe-2494-43a7-8b73-de063353552f" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ddd7cc40-69ec-4a7b-b559-7a2f960282fd" + ], + "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": [ + "ea7eadfe-2494-43a7-8b73-de063353552f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214615Z:ea7eadfe-2494-43a7-8b73-de063353552f" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ddd7cc40-69ec-4a7b-b559-7a2f960282fd" + ], + "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": [ + "ea7eadfe-2494-43a7-8b73-de063353552f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214615Z:ea7eadfe-2494-43a7-8b73-de063353552f" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\",\r\n \"endTime\": \"2015-07-14T14:46:37.2880762-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e25ce1e8-6cb9-424e-8f49-bc2bbb741050" + ], + "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": [ + "81a00f11-1ee2-44fd-bbf8-458ab31cba0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214646Z:81a00f11-1ee2-44fd-bbf8-458ab31cba0c" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\",\r\n \"endTime\": \"2015-07-14T14:46:37.2880762-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e25ce1e8-6cb9-424e-8f49-bc2bbb741050" + ], + "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": [ + "81a00f11-1ee2-44fd-bbf8-458ab31cba0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214646Z:81a00f11-1ee2-44fd-bbf8-458ab31cba0c" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\",\r\n \"endTime\": \"2015-07-14T14:46:37.2880762-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e25ce1e8-6cb9-424e-8f49-bc2bbb741050" + ], + "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": [ + "81a00f11-1ee2-44fd-bbf8-458ab31cba0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214646Z:81a00f11-1ee2-44fd-bbf8-458ab31cba0c" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/41deeaca-7f1d-492f-b50c-ccce5de56c3e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQxZGVlYWNhLTdmMWQtNDkyZi1iNTBjLWNjY2U1ZGU1NmMzZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"41deeaca-7f1d-492f-b50c-ccce5de56c3e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T14:39:02.0664743-07:00\",\r\n \"endTime\": \"2015-07-14T14:46:37.2880762-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e25ce1e8-6cb9-424e-8f49-bc2bbb741050" + ], + "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": [ + "81a00f11-1ee2-44fd-bbf8-458ab31cba0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214646Z:81a00f11-1ee2-44fd-bbf8-458ab31cba0c" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6d33087d-0a45-4dbf-8a9b-d97c7f57f5c6" + ], + "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": [ + "4c6f396f-62d8-439b-975b-68cba9deda71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214647Z:4c6f396f-62d8-439b-975b-68cba9deda71" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6d33087d-0a45-4dbf-8a9b-d97c7f57f5c6" + ], + "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": [ + "4c6f396f-62d8-439b-975b-68cba9deda71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214647Z:4c6f396f-62d8-439b-975b-68cba9deda71" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6d33087d-0a45-4dbf-8a9b-d97c7f57f5c6" + ], + "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": [ + "4c6f396f-62d8-439b-975b-68cba9deda71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214647Z:4c6f396f-62d8-439b-975b-68cba9deda71" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6d33087d-0a45-4dbf-8a9b-d97c7f57f5c6" + ], + "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": [ + "4c6f396f-62d8-439b-975b-68cba9deda71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214647Z:4c6f396f-62d8-439b-975b-68cba9deda71" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "24ff8b83-e166-4639-8a94-8532b36fdded" + ], + "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": [ + "a3a04c14-3111-4d8a-a41e-d9494b972698" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214647Z:a3a04c14-3111-4d8a-a41e-d9494b972698" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "24ff8b83-e166-4639-8a94-8532b36fdded" + ], + "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": [ + "a3a04c14-3111-4d8a-a41e-d9494b972698" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214647Z:a3a04c14-3111-4d8a-a41e-d9494b972698" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "24ff8b83-e166-4639-8a94-8532b36fdded" + ], + "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": [ + "a3a04c14-3111-4d8a-a41e-d9494b972698" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214647Z:a3a04c14-3111-4d8a-a41e-d9494b972698" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/availabilitySets/AS5872\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7905.blob.core.windows.net/pslibtest3381/ospslibtest6730.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet5349\",\r\n \"properties\": {\r\n \"primary\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Network/networkInterfaces/azsmnet8250\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1917/providers/Microsoft.Compute/virtualMachines/vm5976\",\r\n \"name\": \"vm5976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "24ff8b83-e166-4639-8a94-8532b36fdded" + ], + "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": [ + "a3a04c14-3111-4d8a-a41e-d9494b972698" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214647Z:a3a04c14-3111-4d8a-a41e-d9494b972698" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "x-ms-correlation-request-id": [ + "53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214652Z:53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "x-ms-correlation-request-id": [ + "53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214652Z:53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "x-ms-correlation-request-id": [ + "53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214652Z:53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "x-ms-correlation-request-id": [ + "53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214652Z:53543feb-2077-4dad-b9e9-88ff0ea1ef79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:46:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "x-ms-correlation-request-id": [ + "ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214708Z:ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "x-ms-correlation-request-id": [ + "ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214708Z:ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "x-ms-correlation-request-id": [ + "ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214708Z:ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14917" + ], + "x-ms-request-id": [ + "ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "x-ms-correlation-request-id": [ + "ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214708Z:ea49f39f-a33e-4e39-85e4-69acf75ce4da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "x-ms-correlation-request-id": [ + "4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214724Z:4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "x-ms-correlation-request-id": [ + "4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214724Z:4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "x-ms-correlation-request-id": [ + "4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214724Z:4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14916" + ], + "x-ms-request-id": [ + "4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "x-ms-correlation-request-id": [ + "4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214724Z:4b8fe7c7-9dce-42db-9f67-e2a380b78777" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "x-ms-correlation-request-id": [ + "ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214739Z:ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "x-ms-correlation-request-id": [ + "ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214739Z:ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "x-ms-correlation-request-id": [ + "ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214739Z:ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14915" + ], + "x-ms-request-id": [ + "ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "x-ms-correlation-request-id": [ + "ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214739Z:ee5fd854-98b7-40ba-8b72-7bc979483f49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "x-ms-correlation-request-id": [ + "d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214755Z:d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "x-ms-correlation-request-id": [ + "d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214755Z:d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "x-ms-correlation-request-id": [ + "d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214755Z:d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14914" + ], + "x-ms-request-id": [ + "d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "x-ms-correlation-request-id": [ + "d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214755Z:d2b0b0dc-64fb-4662-a0f4-bae3ae0f8abe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:47:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "x-ms-correlation-request-id": [ + "581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214810Z:581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "x-ms-correlation-request-id": [ + "581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214810Z:581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "x-ms-correlation-request-id": [ + "581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214810Z:581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14913" + ], + "x-ms-request-id": [ + "581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "x-ms-correlation-request-id": [ + "581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214810Z:581f6fb1-5027-4a6d-805a-c53f229ec39d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14912" + ], + "x-ms-request-id": [ + "d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "x-ms-correlation-request-id": [ + "d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214826Z:d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14912" + ], + "x-ms-request-id": [ + "d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "x-ms-correlation-request-id": [ + "d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214826Z:d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14912" + ], + "x-ms-request-id": [ + "d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "x-ms-correlation-request-id": [ + "d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214826Z:d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14912" + ], + "x-ms-request-id": [ + "d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "x-ms-correlation-request-id": [ + "d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214826Z:d2c5e6cd-63c6-4a2f-8268-3f3e60309bc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14911" + ], + "x-ms-request-id": [ + "9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "x-ms-correlation-request-id": [ + "9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214841Z:9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14911" + ], + "x-ms-request-id": [ + "9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "x-ms-correlation-request-id": [ + "9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214841Z:9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14911" + ], + "x-ms-request-id": [ + "9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "x-ms-correlation-request-id": [ + "9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214841Z:9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14911" + ], + "x-ms-request-id": [ + "9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "x-ms-correlation-request-id": [ + "9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214841Z:9cd15d6a-a355-4d84-9368-1b9c4db9271b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14910" + ], + "x-ms-request-id": [ + "1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "x-ms-correlation-request-id": [ + "1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214857Z:1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14910" + ], + "x-ms-request-id": [ + "1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "x-ms-correlation-request-id": [ + "1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214857Z:1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14910" + ], + "x-ms-request-id": [ + "1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "x-ms-correlation-request-id": [ + "1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214857Z:1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14910" + ], + "x-ms-request-id": [ + "1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "x-ms-correlation-request-id": [ + "1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214857Z:1b53dd44-843f-4f4e-b2c9-22c4618904aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:48:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14909" + ], + "x-ms-request-id": [ + "8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "x-ms-correlation-request-id": [ + "8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214912Z:8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14909" + ], + "x-ms-request-id": [ + "8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "x-ms-correlation-request-id": [ + "8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214912Z:8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14909" + ], + "x-ms-request-id": [ + "8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "x-ms-correlation-request-id": [ + "8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214912Z:8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14909" + ], + "x-ms-request-id": [ + "8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "x-ms-correlation-request-id": [ + "8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214912Z:8b4d12b5-5a1a-4ff4-843e-7a534bd9ad1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14908" + ], + "x-ms-request-id": [ + "3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "x-ms-correlation-request-id": [ + "3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214927Z:3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14908" + ], + "x-ms-request-id": [ + "3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "x-ms-correlation-request-id": [ + "3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214927Z:3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14908" + ], + "x-ms-request-id": [ + "3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "x-ms-correlation-request-id": [ + "3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214927Z:3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14908" + ], + "x-ms-request-id": [ + "3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "x-ms-correlation-request-id": [ + "3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214927Z:3337a3cc-c42f-492c-a4b8-70554a2f50c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14907" + ], + "x-ms-request-id": [ + "09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "x-ms-correlation-request-id": [ + "09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214943Z:09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14907" + ], + "x-ms-request-id": [ + "09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "x-ms-correlation-request-id": [ + "09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214943Z:09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14907" + ], + "x-ms-request-id": [ + "09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "x-ms-correlation-request-id": [ + "09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214943Z:09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14907" + ], + "x-ms-request-id": [ + "09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "x-ms-correlation-request-id": [ + "09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214943Z:09d58192-5cfb-4ee4-abdc-a8efbbc64867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14906" + ], + "x-ms-request-id": [ + "4fec282d-3a51-473d-805c-1ae98217231d" + ], + "x-ms-correlation-request-id": [ + "4fec282d-3a51-473d-805c-1ae98217231d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214958Z:4fec282d-3a51-473d-805c-1ae98217231d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14906" + ], + "x-ms-request-id": [ + "4fec282d-3a51-473d-805c-1ae98217231d" + ], + "x-ms-correlation-request-id": [ + "4fec282d-3a51-473d-805c-1ae98217231d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214958Z:4fec282d-3a51-473d-805c-1ae98217231d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14906" + ], + "x-ms-request-id": [ + "4fec282d-3a51-473d-805c-1ae98217231d" + ], + "x-ms-correlation-request-id": [ + "4fec282d-3a51-473d-805c-1ae98217231d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214958Z:4fec282d-3a51-473d-805c-1ae98217231d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14906" + ], + "x-ms-request-id": [ + "4fec282d-3a51-473d-805c-1ae98217231d" + ], + "x-ms-correlation-request-id": [ + "4fec282d-3a51-473d-805c-1ae98217231d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T214958Z:4fec282d-3a51-473d-805c-1ae98217231d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:49:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14905" + ], + "x-ms-request-id": [ + "eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "x-ms-correlation-request-id": [ + "eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215014Z:eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14905" + ], + "x-ms-request-id": [ + "eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "x-ms-correlation-request-id": [ + "eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215014Z:eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14905" + ], + "x-ms-request-id": [ + "eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "x-ms-correlation-request-id": [ + "eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215014Z:eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14905" + ], + "x-ms-request-id": [ + "eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "x-ms-correlation-request-id": [ + "eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215014Z:eee778c9-e540-46ea-8a17-8da489baf2f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14904" + ], + "x-ms-request-id": [ + "e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "x-ms-correlation-request-id": [ + "e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215029Z:e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14904" + ], + "x-ms-request-id": [ + "e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "x-ms-correlation-request-id": [ + "e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215029Z:e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14904" + ], + "x-ms-request-id": [ + "e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "x-ms-correlation-request-id": [ + "e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215029Z:e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14904" + ], + "x-ms-request-id": [ + "e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "x-ms-correlation-request-id": [ + "e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215029Z:e5d763f6-33bc-448a-8f9a-1a4bef7f2141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14903" + ], + "x-ms-request-id": [ + "105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "x-ms-correlation-request-id": [ + "105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215045Z:105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14903" + ], + "x-ms-request-id": [ + "105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "x-ms-correlation-request-id": [ + "105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215045Z:105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14903" + ], + "x-ms-request-id": [ + "105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "x-ms-correlation-request-id": [ + "105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215045Z:105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14903" + ], + "x-ms-request-id": [ + "105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "x-ms-correlation-request-id": [ + "105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215045Z:105ebb17-e304-4e5a-9efa-f5585ba8cb65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14902" + ], + "x-ms-request-id": [ + "1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "x-ms-correlation-request-id": [ + "1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215100Z:1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14902" + ], + "x-ms-request-id": [ + "1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "x-ms-correlation-request-id": [ + "1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215100Z:1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14902" + ], + "x-ms-request-id": [ + "1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "x-ms-correlation-request-id": [ + "1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215100Z:1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14902" + ], + "x-ms-request-id": [ + "1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "x-ms-correlation-request-id": [ + "1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215100Z:1fdde7f9-b09d-41fe-9b94-72020fe689a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:50:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14901" + ], + "x-ms-request-id": [ + "e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "x-ms-correlation-request-id": [ + "e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215115Z:e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14901" + ], + "x-ms-request-id": [ + "e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "x-ms-correlation-request-id": [ + "e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215115Z:e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14901" + ], + "x-ms-request-id": [ + "e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "x-ms-correlation-request-id": [ + "e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215115Z:e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14901" + ], + "x-ms-request-id": [ + "e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "x-ms-correlation-request-id": [ + "e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215115Z:e005c298-428d-45e7-8f3e-22b46f488a7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14900" + ], + "x-ms-request-id": [ + "ef94a64f-3645-4300-a191-c140431a5240" + ], + "x-ms-correlation-request-id": [ + "ef94a64f-3645-4300-a191-c140431a5240" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215131Z:ef94a64f-3645-4300-a191-c140431a5240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14900" + ], + "x-ms-request-id": [ + "ef94a64f-3645-4300-a191-c140431a5240" + ], + "x-ms-correlation-request-id": [ + "ef94a64f-3645-4300-a191-c140431a5240" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215131Z:ef94a64f-3645-4300-a191-c140431a5240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14900" + ], + "x-ms-request-id": [ + "ef94a64f-3645-4300-a191-c140431a5240" + ], + "x-ms-correlation-request-id": [ + "ef94a64f-3645-4300-a191-c140431a5240" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215131Z:ef94a64f-3645-4300-a191-c140431a5240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14900" + ], + "x-ms-request-id": [ + "ef94a64f-3645-4300-a191-c140431a5240" + ], + "x-ms-correlation-request-id": [ + "ef94a64f-3645-4300-a191-c140431a5240" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215131Z:ef94a64f-3645-4300-a191-c140431a5240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14899" + ], + "x-ms-request-id": [ + "a22d2918-ef64-422c-a253-f4be970d9010" + ], + "x-ms-correlation-request-id": [ + "a22d2918-ef64-422c-a253-f4be970d9010" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215146Z:a22d2918-ef64-422c-a253-f4be970d9010" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14899" + ], + "x-ms-request-id": [ + "a22d2918-ef64-422c-a253-f4be970d9010" + ], + "x-ms-correlation-request-id": [ + "a22d2918-ef64-422c-a253-f4be970d9010" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215146Z:a22d2918-ef64-422c-a253-f4be970d9010" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14899" + ], + "x-ms-request-id": [ + "a22d2918-ef64-422c-a253-f4be970d9010" + ], + "x-ms-correlation-request-id": [ + "a22d2918-ef64-422c-a253-f4be970d9010" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215146Z:a22d2918-ef64-422c-a253-f4be970d9010" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14899" + ], + "x-ms-request-id": [ + "a22d2918-ef64-422c-a253-f4be970d9010" + ], + "x-ms-correlation-request-id": [ + "a22d2918-ef64-422c-a253-f4be970d9010" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215146Z:a22d2918-ef64-422c-a253-f4be970d9010" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:51:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14898" + ], + "x-ms-request-id": [ + "eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "x-ms-correlation-request-id": [ + "eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215202Z:eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14898" + ], + "x-ms-request-id": [ + "eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "x-ms-correlation-request-id": [ + "eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215202Z:eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14898" + ], + "x-ms-request-id": [ + "eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "x-ms-correlation-request-id": [ + "eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215202Z:eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14898" + ], + "x-ms-request-id": [ + "eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "x-ms-correlation-request-id": [ + "eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215202Z:eb5c4206-78d3-4560-a7c6-406b6024358f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14897" + ], + "x-ms-request-id": [ + "c93b6388-8d10-461e-9373-303c19c28b92" + ], + "x-ms-correlation-request-id": [ + "c93b6388-8d10-461e-9373-303c19c28b92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215217Z:c93b6388-8d10-461e-9373-303c19c28b92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14897" + ], + "x-ms-request-id": [ + "c93b6388-8d10-461e-9373-303c19c28b92" + ], + "x-ms-correlation-request-id": [ + "c93b6388-8d10-461e-9373-303c19c28b92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215217Z:c93b6388-8d10-461e-9373-303c19c28b92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14897" + ], + "x-ms-request-id": [ + "c93b6388-8d10-461e-9373-303c19c28b92" + ], + "x-ms-correlation-request-id": [ + "c93b6388-8d10-461e-9373-303c19c28b92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215217Z:c93b6388-8d10-461e-9373-303c19c28b92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14897" + ], + "x-ms-request-id": [ + "c93b6388-8d10-461e-9373-303c19c28b92" + ], + "x-ms-correlation-request-id": [ + "c93b6388-8d10-461e-9373-303c19c28b92" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215217Z:c93b6388-8d10-461e-9373-303c19c28b92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14896" + ], + "x-ms-request-id": [ + "433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "x-ms-correlation-request-id": [ + "433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215233Z:433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14896" + ], + "x-ms-request-id": [ + "433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "x-ms-correlation-request-id": [ + "433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215233Z:433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14896" + ], + "x-ms-request-id": [ + "433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "x-ms-correlation-request-id": [ + "433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215233Z:433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14896" + ], + "x-ms-request-id": [ + "433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "x-ms-correlation-request-id": [ + "433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215233Z:433b6685-180c-4669-a5b7-da13a76fc8ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14895" + ], + "x-ms-request-id": [ + "2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "x-ms-correlation-request-id": [ + "2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215248Z:2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14895" + ], + "x-ms-request-id": [ + "2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "x-ms-correlation-request-id": [ + "2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215248Z:2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14895" + ], + "x-ms-request-id": [ + "2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "x-ms-correlation-request-id": [ + "2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215248Z:2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14895" + ], + "x-ms-request-id": [ + "2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "x-ms-correlation-request-id": [ + "2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215248Z:2525ca7d-cad3-4944-9776-6e20d8244ad0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:52:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14894" + ], + "x-ms-request-id": [ + "75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "x-ms-correlation-request-id": [ + "75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215304Z:75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14894" + ], + "x-ms-request-id": [ + "75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "x-ms-correlation-request-id": [ + "75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215304Z:75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14894" + ], + "x-ms-request-id": [ + "75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "x-ms-correlation-request-id": [ + "75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215304Z:75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14894" + ], + "x-ms-request-id": [ + "75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "x-ms-correlation-request-id": [ + "75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215304Z:75aba2d3-db56-4cd7-a591-e37d157ef286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14893" + ], + "x-ms-request-id": [ + "a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "x-ms-correlation-request-id": [ + "a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215319Z:a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14893" + ], + "x-ms-request-id": [ + "a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "x-ms-correlation-request-id": [ + "a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215319Z:a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14893" + ], + "x-ms-request-id": [ + "a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "x-ms-correlation-request-id": [ + "a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215319Z:a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14893" + ], + "x-ms-request-id": [ + "a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "x-ms-correlation-request-id": [ + "a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215319Z:a43b9da7-7968-481c-a483-ac03ac50ec33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14892" + ], + "x-ms-request-id": [ + "49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "x-ms-correlation-request-id": [ + "49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215334Z:49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14892" + ], + "x-ms-request-id": [ + "49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "x-ms-correlation-request-id": [ + "49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215334Z:49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14892" + ], + "x-ms-request-id": [ + "49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "x-ms-correlation-request-id": [ + "49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215334Z:49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14892" + ], + "x-ms-request-id": [ + "49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "x-ms-correlation-request-id": [ + "49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215334Z:49c265c0-4800-4beb-afea-ab0160c0b6a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14891" + ], + "x-ms-request-id": [ + "aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "x-ms-correlation-request-id": [ + "aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215350Z:aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14891" + ], + "x-ms-request-id": [ + "aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "x-ms-correlation-request-id": [ + "aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215350Z:aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14891" + ], + "x-ms-request-id": [ + "aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "x-ms-correlation-request-id": [ + "aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215350Z:aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14891" + ], + "x-ms-request-id": [ + "aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "x-ms-correlation-request-id": [ + "aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215350Z:aef1b1ad-806f-4dbe-9cea-4ddcdf635972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:53:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14890" + ], + "x-ms-request-id": [ + "e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "x-ms-correlation-request-id": [ + "e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215405Z:e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14890" + ], + "x-ms-request-id": [ + "e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "x-ms-correlation-request-id": [ + "e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215405Z:e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14890" + ], + "x-ms-request-id": [ + "e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "x-ms-correlation-request-id": [ + "e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215405Z:e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14890" + ], + "x-ms-request-id": [ + "e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "x-ms-correlation-request-id": [ + "e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215405Z:e5cd8ac3-4053-425e-b135-626551ab6db5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14889" + ], + "x-ms-request-id": [ + "a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "x-ms-correlation-request-id": [ + "a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215421Z:a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14889" + ], + "x-ms-request-id": [ + "a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "x-ms-correlation-request-id": [ + "a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215421Z:a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14889" + ], + "x-ms-request-id": [ + "a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "x-ms-correlation-request-id": [ + "a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215421Z:a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14889" + ], + "x-ms-request-id": [ + "a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "x-ms-correlation-request-id": [ + "a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215421Z:a19c8d25-d2a8-4454-a727-3dd32f683064" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14888" + ], + "x-ms-request-id": [ + "5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "x-ms-correlation-request-id": [ + "5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215436Z:5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14888" + ], + "x-ms-request-id": [ + "5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "x-ms-correlation-request-id": [ + "5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215436Z:5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14888" + ], + "x-ms-request-id": [ + "5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "x-ms-correlation-request-id": [ + "5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215436Z:5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14888" + ], + "x-ms-request-id": [ + "5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "x-ms-correlation-request-id": [ + "5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215436Z:5d272bc9-1cd7-4f24-aca6-52410f443606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14887" + ], + "x-ms-request-id": [ + "52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "x-ms-correlation-request-id": [ + "52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215452Z:52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14887" + ], + "x-ms-request-id": [ + "52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "x-ms-correlation-request-id": [ + "52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215452Z:52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14887" + ], + "x-ms-request-id": [ + "52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "x-ms-correlation-request-id": [ + "52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215452Z:52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14887" + ], + "x-ms-request-id": [ + "52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "x-ms-correlation-request-id": [ + "52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215452Z:52c374fd-a99f-4b9d-9f55-c84d9b096f60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:54:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14886" + ], + "x-ms-request-id": [ + "6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "x-ms-correlation-request-id": [ + "6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215507Z:6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14886" + ], + "x-ms-request-id": [ + "6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "x-ms-correlation-request-id": [ + "6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215507Z:6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14886" + ], + "x-ms-request-id": [ + "6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "x-ms-correlation-request-id": [ + "6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215507Z:6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14886" + ], + "x-ms-request-id": [ + "6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "x-ms-correlation-request-id": [ + "6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215507Z:6dcc3de1-5145-4c32-9e1f-1ad6871cf4b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14885" + ], + "x-ms-request-id": [ + "984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "x-ms-correlation-request-id": [ + "984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215522Z:984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14885" + ], + "x-ms-request-id": [ + "984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "x-ms-correlation-request-id": [ + "984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215522Z:984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14885" + ], + "x-ms-request-id": [ + "984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "x-ms-correlation-request-id": [ + "984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215522Z:984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14885" + ], + "x-ms-request-id": [ + "984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "x-ms-correlation-request-id": [ + "984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215522Z:984df298-ba4e-4336-bdd9-f4fa9e33ade6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14884" + ], + "x-ms-request-id": [ + "fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "x-ms-correlation-request-id": [ + "fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215538Z:fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14884" + ], + "x-ms-request-id": [ + "fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "x-ms-correlation-request-id": [ + "fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215538Z:fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14884" + ], + "x-ms-request-id": [ + "fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "x-ms-correlation-request-id": [ + "fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215538Z:fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14884" + ], + "x-ms-request-id": [ + "fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "x-ms-correlation-request-id": [ + "fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215538Z:fb343465-2c09-4417-ae8f-cd2b287fce61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14883" + ], + "x-ms-request-id": [ + "5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "x-ms-correlation-request-id": [ + "5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215553Z:5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14883" + ], + "x-ms-request-id": [ + "5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "x-ms-correlation-request-id": [ + "5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215553Z:5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14883" + ], + "x-ms-request-id": [ + "5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "x-ms-correlation-request-id": [ + "5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215553Z:5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14883" + ], + "x-ms-request-id": [ + "5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "x-ms-correlation-request-id": [ + "5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215553Z:5f391fc6-ef76-4a18-b838-443f9c797a5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:55:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14882" + ], + "x-ms-request-id": [ + "0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "x-ms-correlation-request-id": [ + "0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215609Z:0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14882" + ], + "x-ms-request-id": [ + "0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "x-ms-correlation-request-id": [ + "0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215609Z:0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14882" + ], + "x-ms-request-id": [ + "0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "x-ms-correlation-request-id": [ + "0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215609Z:0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14882" + ], + "x-ms-request-id": [ + "0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "x-ms-correlation-request-id": [ + "0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215609Z:0102a2f9-bcb8-4d43-aedf-1d407d834b09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14881" + ], + "x-ms-request-id": [ + "31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "x-ms-correlation-request-id": [ + "31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215624Z:31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14881" + ], + "x-ms-request-id": [ + "31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "x-ms-correlation-request-id": [ + "31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215624Z:31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14881" + ], + "x-ms-request-id": [ + "31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "x-ms-correlation-request-id": [ + "31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215624Z:31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14881" + ], + "x-ms-request-id": [ + "31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "x-ms-correlation-request-id": [ + "31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215624Z:31cdf1b8-9d89-4d9e-9962-3588dc151b74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14880" + ], + "x-ms-request-id": [ + "7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "x-ms-correlation-request-id": [ + "7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215640Z:7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14880" + ], + "x-ms-request-id": [ + "7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "x-ms-correlation-request-id": [ + "7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215640Z:7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14880" + ], + "x-ms-request-id": [ + "7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "x-ms-correlation-request-id": [ + "7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215640Z:7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14880" + ], + "x-ms-request-id": [ + "7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "x-ms-correlation-request-id": [ + "7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215640Z:7843959a-f3f6-40a4-a08a-cabf1a8ad41b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14879" + ], + "x-ms-request-id": [ + "8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "x-ms-correlation-request-id": [ + "8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215655Z:8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14879" + ], + "x-ms-request-id": [ + "8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "x-ms-correlation-request-id": [ + "8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215655Z:8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14879" + ], + "x-ms-request-id": [ + "8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "x-ms-correlation-request-id": [ + "8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215655Z:8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14879" + ], + "x-ms-request-id": [ + "8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "x-ms-correlation-request-id": [ + "8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215655Z:8f9dddb0-7ed6-4de5-8916-13f854bbe5eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:56:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14878" + ], + "x-ms-request-id": [ + "f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "x-ms-correlation-request-id": [ + "f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215711Z:f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14878" + ], + "x-ms-request-id": [ + "f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "x-ms-correlation-request-id": [ + "f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215711Z:f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14878" + ], + "x-ms-request-id": [ + "f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "x-ms-correlation-request-id": [ + "f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215711Z:f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14878" + ], + "x-ms-request-id": [ + "f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "x-ms-correlation-request-id": [ + "f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215711Z:f5196399-dcb3-4281-b0ed-ffa6698ff082" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14877" + ], + "x-ms-request-id": [ + "5608d909-e661-4703-8368-6aea735ca493" + ], + "x-ms-correlation-request-id": [ + "5608d909-e661-4703-8368-6aea735ca493" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215726Z:5608d909-e661-4703-8368-6aea735ca493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14877" + ], + "x-ms-request-id": [ + "5608d909-e661-4703-8368-6aea735ca493" + ], + "x-ms-correlation-request-id": [ + "5608d909-e661-4703-8368-6aea735ca493" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215726Z:5608d909-e661-4703-8368-6aea735ca493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14877" + ], + "x-ms-request-id": [ + "5608d909-e661-4703-8368-6aea735ca493" + ], + "x-ms-correlation-request-id": [ + "5608d909-e661-4703-8368-6aea735ca493" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215726Z:5608d909-e661-4703-8368-6aea735ca493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14877" + ], + "x-ms-request-id": [ + "5608d909-e661-4703-8368-6aea735ca493" + ], + "x-ms-correlation-request-id": [ + "5608d909-e661-4703-8368-6aea735ca493" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215726Z:5608d909-e661-4703-8368-6aea735ca493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14876" + ], + "x-ms-request-id": [ + "06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "x-ms-correlation-request-id": [ + "06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215741Z:06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14876" + ], + "x-ms-request-id": [ + "06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "x-ms-correlation-request-id": [ + "06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215741Z:06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14876" + ], + "x-ms-request-id": [ + "06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "x-ms-correlation-request-id": [ + "06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215741Z:06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14876" + ], + "x-ms-request-id": [ + "06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "x-ms-correlation-request-id": [ + "06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215741Z:06575ead-cea0-4293-abce-1f8b6468ebee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14875" + ], + "x-ms-request-id": [ + "4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "x-ms-correlation-request-id": [ + "4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215757Z:4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14875" + ], + "x-ms-request-id": [ + "4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "x-ms-correlation-request-id": [ + "4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215757Z:4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14875" + ], + "x-ms-request-id": [ + "4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "x-ms-correlation-request-id": [ + "4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215757Z:4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14875" + ], + "x-ms-request-id": [ + "4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "x-ms-correlation-request-id": [ + "4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215757Z:4f20aec1-07b3-4d4f-b40e-9bbdf18fb751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:57:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14874" + ], + "x-ms-request-id": [ + "718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "x-ms-correlation-request-id": [ + "718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215812Z:718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:58:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14874" + ], + "x-ms-request-id": [ + "718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "x-ms-correlation-request-id": [ + "718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215812Z:718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:58:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14874" + ], + "x-ms-request-id": [ + "718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "x-ms-correlation-request-id": [ + "718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215812Z:718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:58:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14874" + ], + "x-ms-request-id": [ + "718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "x-ms-correlation-request-id": [ + "718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215812Z:718a7e2d-a529-465e-9eb3-9551c94a0975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:58:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14873" + ], + "x-ms-request-id": [ + "9c817727-5f32-4bd3-b89e-ec4de2560cc3" + ], + "x-ms-correlation-request-id": [ + "9c817727-5f32-4bd3-b89e-ec4de2560cc3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215828Z:9c817727-5f32-4bd3-b89e-ec4de2560cc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:58:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14873" + ], + "x-ms-request-id": [ + "9c817727-5f32-4bd3-b89e-ec4de2560cc3" + ], + "x-ms-correlation-request-id": [ + "9c817727-5f32-4bd3-b89e-ec4de2560cc3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T215828Z:9c817727-5f32-4bd3-b89e-ec4de2560cc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:58:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14873" + ], + "x-ms-request-id": [ + "9c817727-5f32-4bd3-b89e-ec4de2560cc3" ], "x-ms-correlation-request-id": [ - "ffe8262b-aad2-486f-8f29-64a4ff65fba6" + "9c817727-5f32-4bd3-b89e-ec4de2560cc3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183409Z:ffe8262b-aad2-486f-8f29-64a4ff65fba6" + "WESTUS:20150714T215828Z:9c817727-5f32-4bd3-b89e-ec4de2560cc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:34:08 GMT" + "Tue, 14 Jul 2015 21:58:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3091,51 +17386,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0a49a6e7-0b5c-45ad-b50b-1151df6579c3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14873" + ], + "x-ms-request-id": [ + "9c817727-5f32-4bd3-b89e-ec4de2560cc3" ], "x-ms-correlation-request-id": [ - "16941045-c177-43dd-9ee4-ec0687af73dd" + "9c817727-5f32-4bd3-b89e-ec4de2560cc3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183439Z:16941045-c177-43dd-9ee4-ec0687af73dd" + "WESTUS:20150714T215828Z:9c817727-5f32-4bd3-b89e-ec4de2560cc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:34:39 GMT" + "Tue, 14 Jul 2015 21:58:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3143,51 +17437,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "2d2b825b-661f-431b-8825-3f928b782857" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14872" + ], + "x-ms-request-id": [ + "eb5a2909-5676-4480-ad89-c2f6d77f18e0" ], "x-ms-correlation-request-id": [ - "9d216d29-bc5e-4b0b-9c92-236d6e6373dc" + "eb5a2909-5676-4480-ad89-c2f6d77f18e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183510Z:9d216d29-bc5e-4b0b-9c92-236d6e6373dc" + "WESTUS:20150714T215843Z:eb5a2909-5676-4480-ad89-c2f6d77f18e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:35:10 GMT" + "Tue, 14 Jul 2015 21:58:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3195,51 +17488,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "24673e25-523b-4b2f-b33b-e4cb70cd5b02" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14872" + ], + "x-ms-request-id": [ + "eb5a2909-5676-4480-ad89-c2f6d77f18e0" ], "x-ms-correlation-request-id": [ - "ed375bdd-2918-46b7-9fbf-c83e2ac682b8" + "eb5a2909-5676-4480-ad89-c2f6d77f18e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183541Z:ed375bdd-2918-46b7-9fbf-c83e2ac682b8" + "WESTUS:20150714T215843Z:eb5a2909-5676-4480-ad89-c2f6d77f18e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:35:41 GMT" + "Tue, 14 Jul 2015 21:58:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZiZmI5YWVhLWQ4YTEtNDY2OS1hNTNiLTZhYjhhOTRmNTlmZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fbfb9aea-d8a1-4669-a53b-6ab8a94f59fe\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-06-16T11:15:36.305089-07:00\",\r\n \"endTime\": \"2015-06-16T11:35:44.4221985-07:00\",\r\n \"error\": {\r\n \"code\": \"OSProvisioningTimedOut\",\r\n \"message\": \"OS Provisioning for VM 'vm1166' did not finish in the allotted time. The VM may still finish provisioning successfully. Please check provisioning state later.\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "423" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3247,51 +17539,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "c7eabf33-a2a0-463c-bed0-2964de95ac29" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14872" + ], + "x-ms-request-id": [ + "eb5a2909-5676-4480-ad89-c2f6d77f18e0" ], "x-ms-correlation-request-id": [ - "ca84d46c-4ed7-4604-b254-19b1cd3b97dd" + "eb5a2909-5676-4480-ad89-c2f6d77f18e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183612Z:ca84d46c-4ed7-4604-b254-19b1cd3b97dd" + "WESTUS:20150714T215843Z:eb5a2909-5676-4480-ad89-c2f6d77f18e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:36:11 GMT" + "Tue, 14 Jul 2015 21:58:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/virtualMachines/vm1166?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDI2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTExNjY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/availabilitySets/AS5320\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest9338.blob.core.windows.net/pslibtest9972/ospslibtest3372.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet7510\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Network/networkInterfaces/azsmnet920\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest2645/providers/Microsoft.Compute/virtualMachines/vm1166\",\r\n \"name\": \"vm1166\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "1770" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3299,38 +17590,40 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e155bfaf-c897-4de6-b818-f6bd0f477a18" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14872" + ], + "x-ms-request-id": [ + "eb5a2909-5676-4480-ad89-c2f6d77f18e0" ], "x-ms-correlation-request-id": [ - "ed91a1a7-7901-4192-8ac6-a57ee4daf7ca" + "eb5a2909-5676-4480-ad89-c2f6d77f18e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183613Z:ed91a1a7-7901-4192-8ac6-a57ee4daf7ca" + "WESTUS:20150714T215843Z:eb5a2909-5676-4480-ad89-c2f6d77f18e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:36:12 GMT" + "Tue, 14 Jul 2015 21:58:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest2645?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDI2NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -3351,17 +17644,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" ], "x-ms-request-id": [ - "59763d20-2f6c-4ee3-a2e9-c756957d349c" + "6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "x-ms-correlation-request-id": [ - "59763d20-2f6c-4ee3-a2e9-c756957d349c" + "6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183618Z:59763d20-2f6c-4ee3-a2e9-c756957d349c" + "WESTUS:20150714T215859Z:6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3370,23 +17663,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:36:17 GMT" + "Tue, 14 Jul 2015 21:58:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3406,16 +17696,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14871" ], "x-ms-request-id": [ - "3f98b2fb-714e-4c8c-8d5b-5d95fffa8f8d" + "6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "x-ms-correlation-request-id": [ - "3f98b2fb-714e-4c8c-8d5b-5d95fffa8f8d" + "6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183619Z:3f98b2fb-714e-4c8c-8d5b-5d95fffa8f8d" + "WESTUS:20150714T215859Z:6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3424,23 +17714,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:36:18 GMT" + "Tue, 14 Jul 2015 21:58:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3460,16 +17747,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14871" ], "x-ms-request-id": [ - "1e098403-5772-4a68-a56f-0685c30b7f6e" + "6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "x-ms-correlation-request-id": [ - "1e098403-5772-4a68-a56f-0685c30b7f6e" + "6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183634Z:1e098403-5772-4a68-a56f-0685c30b7f6e" + "WESTUS:20150714T215859Z:6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3478,23 +17765,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:36:34 GMT" + "Tue, 14 Jul 2015 21:58:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3514,16 +17798,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14871" ], "x-ms-request-id": [ - "8f533ae8-5590-4cc6-a71f-43c5781b57d6" + "6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "x-ms-correlation-request-id": [ - "8f533ae8-5590-4cc6-a71f-43c5781b57d6" + "6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183650Z:8f533ae8-5590-4cc6-a71f-43c5781b57d6" + "WESTUS:20150714T215859Z:6f45e46c-585b-43a9-901b-f0f8776e83bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3532,23 +17816,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:36:49 GMT" + "Tue, 14 Jul 2015 21:58:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3568,16 +17849,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14870" ], "x-ms-request-id": [ - "1710eda9-ad4f-4914-b60e-3223e0a27f01" + "e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "x-ms-correlation-request-id": [ - "1710eda9-ad4f-4914-b60e-3223e0a27f01" + "e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183705Z:1710eda9-ad4f-4914-b60e-3223e0a27f01" + "WESTUS:20150714T215914Z:e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3586,23 +17867,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:37:04 GMT" + "Tue, 14 Jul 2015 21:59:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3622,16 +17900,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14870" ], "x-ms-request-id": [ - "01080958-82d7-409e-821e-d3c99b224c7b" + "e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "x-ms-correlation-request-id": [ - "01080958-82d7-409e-821e-d3c99b224c7b" + "e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183721Z:01080958-82d7-409e-821e-d3c99b224c7b" + "WESTUS:20150714T215914Z:e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3640,23 +17918,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:37:20 GMT" + "Tue, 14 Jul 2015 21:59:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3676,16 +17951,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14870" ], "x-ms-request-id": [ - "7ca81f7e-3add-4f41-b15c-a61e0f9576b9" + "e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "x-ms-correlation-request-id": [ - "7ca81f7e-3add-4f41-b15c-a61e0f9576b9" + "e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183736Z:7ca81f7e-3add-4f41-b15c-a61e0f9576b9" + "WESTUS:20150714T215914Z:e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3694,23 +17969,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:37:35 GMT" + "Tue, 14 Jul 2015 21:59:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3730,16 +18002,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14870" ], "x-ms-request-id": [ - "b3e5eb8f-4354-4442-83c2-b1355e23e2cd" + "e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "x-ms-correlation-request-id": [ - "b3e5eb8f-4354-4442-83c2-b1355e23e2cd" + "e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183751Z:b3e5eb8f-4354-4442-83c2-b1355e23e2cd" + "WESTUS:20150714T215914Z:e5151c39-1bd0-40dc-b6ec-08e295c2464c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3748,23 +18020,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:37:51 GMT" + "Tue, 14 Jul 2015 21:59:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3784,16 +18053,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14869" ], "x-ms-request-id": [ - "9675d9c9-abe3-4cd0-b44c-6dfecd8b7d6b" + "8941b404-c96f-4fff-af42-68c751aa2a4f" ], "x-ms-correlation-request-id": [ - "9675d9c9-abe3-4cd0-b44c-6dfecd8b7d6b" + "8941b404-c96f-4fff-af42-68c751aa2a4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183807Z:9675d9c9-abe3-4cd0-b44c-6dfecd8b7d6b" + "WESTUS:20150714T215929Z:8941b404-c96f-4fff-af42-68c751aa2a4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3802,23 +18071,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:38:07 GMT" + "Tue, 14 Jul 2015 21:59:29 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3838,16 +18104,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14869" ], "x-ms-request-id": [ - "b1222993-ba89-472d-9afe-9c416a3d7784" + "8941b404-c96f-4fff-af42-68c751aa2a4f" ], "x-ms-correlation-request-id": [ - "b1222993-ba89-472d-9afe-9c416a3d7784" + "8941b404-c96f-4fff-af42-68c751aa2a4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183822Z:b1222993-ba89-472d-9afe-9c416a3d7784" + "WESTUS:20150714T215929Z:8941b404-c96f-4fff-af42-68c751aa2a4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3856,23 +18122,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:38:22 GMT" + "Tue, 14 Jul 2015 21:59:29 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3892,16 +18155,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14869" ], "x-ms-request-id": [ - "84e87416-ff41-44ed-8e2d-41fcebd51b2e" + "8941b404-c96f-4fff-af42-68c751aa2a4f" ], "x-ms-correlation-request-id": [ - "84e87416-ff41-44ed-8e2d-41fcebd51b2e" + "8941b404-c96f-4fff-af42-68c751aa2a4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183838Z:84e87416-ff41-44ed-8e2d-41fcebd51b2e" + "WESTUS:20150714T215929Z:8941b404-c96f-4fff-af42-68c751aa2a4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3910,23 +18173,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:38:37 GMT" + "Tue, 14 Jul 2015 21:59:29 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3946,16 +18206,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14869" ], "x-ms-request-id": [ - "8bcd4aaa-4552-41c5-a4f5-abb1b855e1e6" + "8941b404-c96f-4fff-af42-68c751aa2a4f" ], "x-ms-correlation-request-id": [ - "8bcd4aaa-4552-41c5-a4f5-abb1b855e1e6" + "8941b404-c96f-4fff-af42-68c751aa2a4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183853Z:8bcd4aaa-4552-41c5-a4f5-abb1b855e1e6" + "WESTUS:20150714T215929Z:8941b404-c96f-4fff-af42-68c751aa2a4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3964,23 +18224,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:38:53 GMT" + "Tue, 14 Jul 2015 21:59:29 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4000,16 +18257,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14868" ], "x-ms-request-id": [ - "fb56163d-1622-4bcd-b71e-d5f7f8768235" + "9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "x-ms-correlation-request-id": [ - "fb56163d-1622-4bcd-b71e-d5f7f8768235" + "9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183909Z:fb56163d-1622-4bcd-b71e-d5f7f8768235" + "WESTUS:20150714T215945Z:9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4018,23 +18275,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:39:08 GMT" + "Tue, 14 Jul 2015 21:59:45 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4054,16 +18308,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14868" ], "x-ms-request-id": [ - "8aa93c09-5206-44cd-998d-1b6f40830428" + "9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "x-ms-correlation-request-id": [ - "8aa93c09-5206-44cd-998d-1b6f40830428" + "9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183924Z:8aa93c09-5206-44cd-998d-1b6f40830428" + "WESTUS:20150714T215945Z:9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4072,23 +18326,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:39:24 GMT" + "Tue, 14 Jul 2015 21:59:45 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4108,16 +18359,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14868" ], "x-ms-request-id": [ - "ae0670bd-8e02-4955-9be3-c73840a6e03f" + "9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "x-ms-correlation-request-id": [ - "ae0670bd-8e02-4955-9be3-c73840a6e03f" + "9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183939Z:ae0670bd-8e02-4955-9be3-c73840a6e03f" + "WESTUS:20150714T215945Z:9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4126,23 +18377,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:39:39 GMT" + "Tue, 14 Jul 2015 21:59:45 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4162,16 +18410,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14868" ], "x-ms-request-id": [ - "7909416b-86c5-43e6-a344-0c85b05dca96" + "9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "x-ms-correlation-request-id": [ - "7909416b-86c5-43e6-a344-0c85b05dca96" + "9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T183955Z:7909416b-86c5-43e6-a344-0c85b05dca96" + "WESTUS:20150714T215945Z:9b0af0f5-ea7a-44c5-921f-c31f5efb0863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4180,23 +18428,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:39:54 GMT" + "Tue, 14 Jul 2015 21:59:45 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4216,16 +18461,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14867" ], "x-ms-request-id": [ - "09259bd3-d409-42dd-a545-b9d448e3d983" + "eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "x-ms-correlation-request-id": [ - "09259bd3-d409-42dd-a545-b9d448e3d983" + "eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184010Z:09259bd3-d409-42dd-a545-b9d448e3d983" + "WESTUS:20150714T220000Z:eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4234,23 +18479,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:40:10 GMT" + "Tue, 14 Jul 2015 22:00:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4270,16 +18512,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14867" ], "x-ms-request-id": [ - "b37b9812-9c5a-46a3-893a-9ded81b957f0" + "eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "x-ms-correlation-request-id": [ - "b37b9812-9c5a-46a3-893a-9ded81b957f0" + "eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184026Z:b37b9812-9c5a-46a3-893a-9ded81b957f0" + "WESTUS:20150714T220000Z:eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4288,23 +18530,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:40:25 GMT" + "Tue, 14 Jul 2015 22:00:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4324,16 +18563,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14867" ], "x-ms-request-id": [ - "2a3b3ef2-84b3-42d8-85d2-6ef4af4061f6" + "eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "x-ms-correlation-request-id": [ - "2a3b3ef2-84b3-42d8-85d2-6ef4af4061f6" + "eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184041Z:2a3b3ef2-84b3-42d8-85d2-6ef4af4061f6" + "WESTUS:20150714T220000Z:eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4342,23 +18581,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:40:41 GMT" + "Tue, 14 Jul 2015 22:00:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4378,16 +18614,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14867" ], "x-ms-request-id": [ - "6d9702e3-bdb2-4b0a-9282-a377d490cec4" + "eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "x-ms-correlation-request-id": [ - "6d9702e3-bdb2-4b0a-9282-a377d490cec4" + "eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184057Z:6d9702e3-bdb2-4b0a-9282-a377d490cec4" + "WESTUS:20150714T220000Z:eaacf8ce-e5f0-4f52-be2e-3b9a975c5f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4396,23 +18632,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:40:56 GMT" + "Tue, 14 Jul 2015 22:00:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4432,16 +18665,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14866" ], "x-ms-request-id": [ - "96492d0e-0268-488a-9ceb-ab62a691e129" + "130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "x-ms-correlation-request-id": [ - "96492d0e-0268-488a-9ceb-ab62a691e129" + "130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184112Z:96492d0e-0268-488a-9ceb-ab62a691e129" + "WESTUS:20150714T220016Z:130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4450,23 +18683,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:41:11 GMT" + "Tue, 14 Jul 2015 22:00:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4486,16 +18716,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14866" ], "x-ms-request-id": [ - "7c163007-dee3-49ab-b637-e600161b48e9" + "130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "x-ms-correlation-request-id": [ - "7c163007-dee3-49ab-b637-e600161b48e9" + "130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184128Z:7c163007-dee3-49ab-b637-e600161b48e9" + "WESTUS:20150714T220016Z:130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4504,23 +18734,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:41:27 GMT" + "Tue, 14 Jul 2015 22:00:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4540,16 +18767,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14866" ], "x-ms-request-id": [ - "60675a9c-472f-43f6-803f-66768028e9b3" + "130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "x-ms-correlation-request-id": [ - "60675a9c-472f-43f6-803f-66768028e9b3" + "130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184143Z:60675a9c-472f-43f6-803f-66768028e9b3" + "WESTUS:20150714T220016Z:130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4558,23 +18785,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:41:42 GMT" + "Tue, 14 Jul 2015 22:00:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4594,16 +18818,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14866" ], "x-ms-request-id": [ - "ee8f3892-4230-4e6e-879e-897678b7039c" + "130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "x-ms-correlation-request-id": [ - "ee8f3892-4230-4e6e-879e-897678b7039c" + "130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184158Z:ee8f3892-4230-4e6e-879e-897678b7039c" + "WESTUS:20150714T220016Z:130bf637-7e5c-4ef5-ac9b-a8e0fc13b5e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4612,23 +18836,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:41:58 GMT" + "Tue, 14 Jul 2015 22:00:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4644,20 +18865,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14865" ], "x-ms-request-id": [ - "16deef3c-ae4b-4e64-9f72-58135b8e011e" + "c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "x-ms-correlation-request-id": [ - "16deef3c-ae4b-4e64-9f72-58135b8e011e" + "c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184214Z:16deef3c-ae4b-4e64-9f72-58135b8e011e" + "WESTUS:20150714T220031Z:c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4666,23 +18884,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:42:13 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 22:00:30 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4698,20 +18910,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14865" ], "x-ms-request-id": [ - "9231d4e3-6ae3-46bf-9ffd-d36ae21d5711" + "c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "x-ms-correlation-request-id": [ - "9231d4e3-6ae3-46bf-9ffd-d36ae21d5711" + "c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184229Z:9231d4e3-6ae3-46bf-9ffd-d36ae21d5711" + "WESTUS:20150714T220031Z:c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4720,23 +18929,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:42:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 22:00:30 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4752,20 +18955,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14865" ], "x-ms-request-id": [ - "486ee98e-2a1c-4085-ac48-6f627e24714b" + "c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "x-ms-correlation-request-id": [ - "486ee98e-2a1c-4085-ac48-6f627e24714b" + "c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184245Z:486ee98e-2a1c-4085-ac48-6f627e24714b" + "WESTUS:20150714T220031Z:c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4774,23 +18974,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:42:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 22:00:30 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QyNjQ1LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF5TmpRMUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxOTE3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4T1RFM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4807,16 +19001,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14865" ], "x-ms-request-id": [ - "fead6da7-dd2a-4dd3-9b95-09bf3b1eb946" + "c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "x-ms-correlation-request-id": [ - "fead6da7-dd2a-4dd3-9b95-09bf3b1eb946" + "c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184300Z:fead6da7-dd2a-4dd3-9b95-09bf3b1eb946" + "WESTUS:20150714T220031Z:c2d917b6-a6e8-4f32-8bf9-61f8a23e970f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4825,7 +19019,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:43:00 GMT" + "Tue, 14 Jul 2015 22:00:30 GMT" ] }, "StatusCode": 200 @@ -4833,28 +19027,29 @@ ], "Names": { "TestMultiNicVirtualMachineReference": [ - "pslibtest2645", - "as5320", - "pslibtest9338", - "azsmnet7510", - "azsmnet920" + "pslibtest1917", + "as5872", + "pslibtest7905", + "azsmnet5349", + "azsmnet8250" ], "CreateVNET": [ - "azsmnet3018", - "azsmnet3177" + "azsmnet3863", + "azsmnet6337" ], "CreateNIC": [ - "azsmnet7579", - "azsmnet5733" + "azsmnet207", + "azsmnet7149" ], "CreateDefaultVMInput": [ - "pslibtest9972", - "pslibtest189", - "pslibtest3372", - "vm1166" + "pslibtest3381", + "pslibtest4810", + "pslibtest6730", + "vm5976", + "Microsoft.Compute/virtualMachines7462" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json index 5241c7f4b32e7..11d0dfa91be62 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f48710c1-76af-4508-b518-91b3737db45f" + "66e1ff80-9e4c-4cef-b413-faf271f557ff" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14999" ], "x-ms-correlation-request-id": [ - "4bb634cd-ab4d-46fb-ae7f-6086b7fc514c" + "b27dd871-b2c6-406a-bd2b-a60a5c462a4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184346Z:4bb634cd-ab4d-46fb-ae7f-6086b7fc514c" + "WESTUS:20150714T212107Z:b27dd871-b2c6-406a-bd2b-a60a5c462a4b" ], "Date": [ - "Tue, 16 Jun 2015 18:43:46 GMT" + "Tue, 14 Jul 2015 21:21:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest1309?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDEzMDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309\",\r\n \"name\": \"pslibtest1309\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,107 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-request-id": [ - "188e35a1-51a6-49df-9c77-345d8d8d25ab" - ], - "x-ms-correlation-request-id": [ - "188e35a1-51a6-49df-9c77-345d8d8d25ab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T184349Z:188e35a1-51a6-49df-9c77-345d8d8d25ab" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Jun 2015 18:43:49 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest1309?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDEzMDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309\",\r\n \"name\": \"pslibtest1309\",\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" + "x-ms-request-id": [ + "66e1ff80-9e4c-4cef-b413-faf271f557ff" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "e11be526-70ac-491e-8019-7899d57722de" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-correlation-request-id": [ - "e11be526-70ac-491e-8019-7899d57722de" + "b27dd871-b2c6-406a-bd2b-a60a5c462a4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184350Z:e11be526-70ac-491e-8019-7899d57722de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150714T212107Z:b27dd871-b2c6-406a-bd2b-a60a5c462a4b" ], "Date": [ - "Tue, 16 Jun 2015 18:43:50 GMT" + "Tue, 14 Jul 2015 21:21:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Storage/storageAccounts/pslibtest9365?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q5MzY1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "5fd747dd-91bd-4417-985b-2eed71f93a70" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +128,48 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0946b4df-883a-4f44-9bad-b92f857ef52d" + "66e1ff80-9e4c-4cef-b413-faf271f557ff" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/0946b4df-883a-4f44-9bad-b92f857ef52d?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-correlation-request-id": [ - "bd3f2fd3-726c-4945-8c44-286d5bc0be29" + "b27dd871-b2c6-406a-bd2b-a60a5c462a4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184356Z:bd3f2fd3-726c-4945-8c44-286d5bc0be29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T212107Z:b27dd871-b2c6-406a-bd2b-a60a5c462a4b" ], "Date": [ - "Tue, 16 Jun 2015 18:43:56 GMT" + "Tue, 14 Jul 2015 21:21:07 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/0946b4df-883a-4f44-9bad-b92f857ef52d?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA5NDZiNGRmLTg4M2EtNGY0NC05YmFkLWI5MmY4NTdlZjUyZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3eee50ad-f794-4428-8743-1a87c5562a36" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0901f996-e59d-4d72-a6a0-f4423d9c02d5" + "66e1ff80-9e4c-4cef-b413-faf271f557ff" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/0946b4df-883a-4f44-9bad-b92f857ef52d?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14999" ], "x-ms-correlation-request-id": [ - "6e85cec7-bcc6-44d6-a982-864ca3907c70" + "b27dd871-b2c6-406a-bd2b-a60a5c462a4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184357Z:6e85cec7-bcc6-44d6-a982-864ca3907c70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T212107Z:b27dd871-b2c6-406a-bd2b-a60a5c462a4b" ], "Date": [ - "Tue, 16 Jun 2015 18:43:56 GMT" + "Tue, 14 Jul 2015 21:21:07 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/0946b4df-883a-4f44-9bad-b92f857ef52d?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA5NDZiNGRmLTg4M2EtNGY0NC05YmFkLWI5MmY4NTdlZjUyZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "a69e270b-3668-4f61-8680-b42211fa8dcf" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048\",\r\n \"name\": \"pslibtest9048\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +238,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "f90b605d-375c-44ad-a5e8-730963070f52" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "x-ms-request-id": [ + "afeae56d-3218-4b28-95bc-5d3343b211a9" ], "x-ms-correlation-request-id": [ - "7ea582b4-7bab-442b-ab23-a521c4e113e7" + "afeae56d-3218-4b28-95bc-5d3343b211a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184422Z:7ea582b4-7bab-442b-ab23-a521c4e113e7" + "WESTUS:20150714T212110Z:afeae56d-3218-4b28-95bc-5d3343b211a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 18:44:21 GMT" + "Tue, 14 Jul 2015 21:21:09 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "8af95a72-af52-45b7-9b3a-c82770571b94" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Storage/storageAccounts/pslibtest9365\",\r\n \"name\": \"pslibtest9365\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest9365.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest9365.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest9365.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T18:43:51.8289127Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048\",\r\n \"name\": \"pslibtest9048\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "b9d8ca2e-3f70-4253-bae9-ae9367fba2de" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "x-ms-request-id": [ + "afeae56d-3218-4b28-95bc-5d3343b211a9" ], "x-ms-correlation-request-id": [ - "e8683d22-694b-4b42-94b0-28b6ec25574b" + "afeae56d-3218-4b28-95bc-5d3343b211a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184432Z:e8683d22-694b-4b42-94b0-28b6ec25574b" + "WESTUS:20150714T212110Z:afeae56d-3218-4b28-95bc-5d3343b211a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 18:44:31 GMT" + "Tue, 14 Jul 2015 21:21:09 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualnetworks/azsmnet489?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NDg5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet5175\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet489\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualNetworks/azsmnet489\",\r\n \"etag\": \"W/\\\"0135e9b5-001d-4b07-8fd8-90ba4662ea1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet5175\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualNetworks/azsmnet489/subnets/azsmnet5175\",\r\n \"etag\": \"W/\\\"0135e9b5-001d-4b07-8fd8-90ba4662ea1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048\",\r\n \"name\": \"pslibtest9048\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "956" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +346,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "2da9012d-10e3-4650-acb4-e841903fe201" + "afeae56d-3218-4b28-95bc-5d3343b211a9" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/2da9012d-10e3-4650-acb4-e841903fe201?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "afeae56d-3218-4b28-95bc-5d3343b211a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212110Z:afeae56d-3218-4b28-95bc-5d3343b211a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +364,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" - ], - "x-ms-correlation-request-id": [ - "d2c97e33-cfe0-4f4e-8a4f-b637d1ce4f15" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T184436Z:d2c97e33-cfe0-4f4e-8a4f-b637d1ce4f15" - ], "Date": [ - "Tue, 16 Jun 2015 18:44:36 GMT" + "Tue, 14 Jul 2015 21:21:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/2da9012d-10e3-4650-acb4-e841903fe201?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYTkwMTJkLTEwZTMtNDY1MC1hY2I0LWU4NDE5MDNmZTIwMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048\",\r\n \"name\": \"pslibtest9048\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +400,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], "x-ms-request-id": [ - "57171165-5a85-4ca0-bbdd-1eb384d5ae66" + "afeae56d-3218-4b28-95bc-5d3343b211a9" + ], + "x-ms-correlation-request-id": [ + "afeae56d-3218-4b28-95bc-5d3343b211a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212110Z:afeae56d-3218-4b28-95bc-5d3343b211a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +418,32 @@ "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": [ - "df25b01d-fe26-4f93-a970-bc752ef68b78" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T184437Z:df25b01d-fe26-4f93-a970-bc752ef68b78" - ], "Date": [ - "Tue, 16 Jun 2015 18:44:37 GMT" + "Tue, 14 Jul 2015 21:21:09 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualnetworks/azsmnet489/subnets/azsmnet5175?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NDg5L3N1Ym5ldHMvYXpzbW5ldDUxNzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5175\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualNetworks/azsmnet489/subnets/azsmnet5175\",\r\n \"etag\": \"W/\\\"2586c1a3-d291-4d22-8810-983dbf23267f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048\",\r\n \"name\": \"pslibtest9048\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "354" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,8 +454,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], "x-ms-request-id": [ - "b008d23a-d4e4-4220-8772-6c06e698ff44" + "abd12968-7662-4276-8c36-be867b21394f" + ], + "x-ms-correlation-request-id": [ + "abd12968-7662-4276-8c36-be867b21394f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212111Z:abd12968-7662-4276-8c36-be867b21394f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,48 +472,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"2586c1a3-d291-4d22-8810-983dbf23267f\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "28b498de-8ea7-4ec6-8cdf-17551bccd069" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T184437Z:28b498de-8ea7-4ec6-8cdf-17551bccd069" - ], "Date": [ - "Tue, 16 Jun 2015 18:44:37 GMT" + "Tue, 14 Jul 2015 21:21:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualNetworks/azsmnet489/subnets/azsmnet5175\"\r\n }\r\n },\r\n \"name\": \"azsmnet692\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9590\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "508" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9590\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590\",\r\n \"etag\": \"W/\\\"2aeadcb0-2d61-43b4-af79-103e3f95180c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590/ipConfigurations/azsmnet692\",\r\n \"etag\": \"W/\\\"2aeadcb0-2d61-43b4-af79-103e3f95180c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualNetworks/azsmnet489/subnets/azsmnet5175\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048\",\r\n \"name\": \"pslibtest9048\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1115" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,11 +508,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], "x-ms-request-id": [ - "98b9643e-85dd-4e17-a3cf-7c138fcfe175" + "abd12968-7662-4276-8c36-be867b21394f" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/98b9643e-85dd-4e17-a3cf-7c138fcfe175?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "abd12968-7662-4276-8c36-be867b21394f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212111Z:abd12968-7662-4276-8c36-be867b21394f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -614,42 +526,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" - ], - "x-ms-correlation-request-id": [ - "73b410ae-94e0-43d7-b0ce-12635048ed09" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T184444Z:73b410ae-94e0-43d7-b0ce-12635048ed09" - ], "Date": [ - "Tue, 16 Jun 2015 18:44:44 GMT" + "Tue, 14 Jul 2015 21:21:10 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/98b9643e-85dd-4e17-a3cf-7c138fcfe175?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk4Yjk2NDNlLTg1ZGQtNGUxNy1hM2NmLTdjMTM4ZmNmZTE3NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048\",\r\n \"name\": \"pslibtest9048\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,8 +562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], "x-ms-request-id": [ - "b7528eed-5186-4aca-bbf2-64e1c8d0bafe" + "abd12968-7662-4276-8c36-be867b21394f" + ], + "x-ms-correlation-request-id": [ + "abd12968-7662-4276-8c36-be867b21394f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212111Z:abd12968-7662-4276-8c36-be867b21394f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,39 +580,32 @@ "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": [ - "29204ec8-dcf1-4d69-9999-7ea2ff5c93f7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T184445Z:29204ec8-dcf1-4d69-9999-7ea2ff5c93f7" - ], "Date": [ - "Tue, 16 Jun 2015 18:44:45 GMT" + "Tue, 14 Jul 2015 21:21:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9590\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590\",\r\n \"etag\": \"W/\\\"2aeadcb0-2d61-43b4-af79-103e3f95180c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590/ipConfigurations/azsmnet692\",\r\n \"etag\": \"W/\\\"2aeadcb0-2d61-43b4-af79-103e3f95180c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualNetworks/azsmnet489/subnets/azsmnet5175\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048\",\r\n \"name\": \"pslibtest9048\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1115" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -712,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], "x-ms-request-id": [ - "52b1af34-deb4-402f-826b-f7592a9a8671" + "abd12968-7662-4276-8c36-be867b21394f" + ], + "x-ms-correlation-request-id": [ + "abd12968-7662-4276-8c36-be867b21394f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212111Z:abd12968-7662-4276-8c36-be867b21394f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,42 +634,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"2aeadcb0-2d61-43b4-af79-103e3f95180c\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" - ], - "x-ms-correlation-request-id": [ - "23851f80-2ccc-417a-af66-674a4ce80cbc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T184445Z:23851f80-2ccc-417a-af66-674a4ce80cbc" - ], "Date": [ - "Tue, 16 Jun 2015 18:44:45 GMT" + "Tue, 14 Jul 2015 21:21:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ5NTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyNjc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9590\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590\",\r\n \"etag\": \"W/\\\"503708b3-96f5-45ec-90d5-47859e0b5ee1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet692\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590/ipConfigurations/azsmnet692\",\r\n \"etag\": \"W/\\\"503708b3-96f5-45ec-90d5-47859e0b5ee1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/virtualNetworks/azsmnet489/subnets/azsmnet5175\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-71-69\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/virtualMachines/vm5280\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1357" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -767,57 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "33ec601d-2c9b-4a42-91be-59e203b91182" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "00691855-684c-4b11-905e-1a8068a8093d" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"503708b3-96f5-45ec-90d5-47859e0b5ee1\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/00691855-684c-4b11-905e-1a8068a8093d?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "01a9e422-5f12-45bd-9504-6f84721f85e3" + "56736fa2-1008-4941-ab9e-7c441c1f46d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185238Z:01a9e422-5f12-45bd-9504-6f84721f85e3" + "WESTUS:20150714T212117Z:56736fa2-1008-4941-ab9e-7c441c1f46d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:52:37 GMT" + "Tue, 14 Jul 2015 21:21:16 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/availabilitySets/as6907?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM2OTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyNjc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as6907\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "133" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/availabilitySets/as6907\",\r\n \"name\": \"as6907\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "403" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,54 +734,60 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "25" ], "x-ms-request-id": [ - "91eb9e0f-6706-4876-bb9f-9b4fed8b7e64" + "00691855-684c-4b11-905e-1a8068a8093d" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/00691855-684c-4b11-905e-1a8068a8093d?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1197" ], "x-ms-correlation-request-id": [ - "b39fb0c5-e34e-4224-be75-82dd7d1a01b4" + "56736fa2-1008-4941-ab9e-7c441c1f46d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184449Z:b39fb0c5-e34e-4224-be75-82dd7d1a01b4" + "WESTUS:20150714T212117Z:56736fa2-1008-4941-ab9e-7c441c1f46d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:44:49 GMT" + "Tue, 14 Jul 2015 21:21:16 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/virtualMachines/vm5280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyODA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyNjc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest9365.blob.core.windows.net/pslibtest9414/ospslibtest2926.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1309\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/availabilitySets/as6907\"\r\n }\r\n },\r\n \"name\": \"vm5280\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "1321" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/availabilitySets/AS6907\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest9365.blob.core.windows.net/pslibtest9414/ospslibtest2926.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/virtualMachines/vm5280\",\r\n \"name\": \"vm5280\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1580" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,51 +798,60 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "25" ], "x-ms-request-id": [ - "ce7f0248-a4d1-405a-add4-547e0d7f9e0d" + "00691855-684c-4b11-905e-1a8068a8093d" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/00691855-684c-4b11-905e-1a8068a8093d?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1197" ], "x-ms-correlation-request-id": [ - "f426c82e-aeb4-4c65-a825-6a612c551cd5" + "56736fa2-1008-4941-ab9e-7c441c1f46d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184453Z:f426c82e-aeb4-4c65-a825-6a612c551cd5" + "WESTUS:20150714T212117Z:56736fa2-1008-4941-ab9e-7c441c1f46d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:44:53 GMT" + "Tue, 14 Jul 2015 21:21:16 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyNjc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "141" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -941,48 +862,54 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "25" ], "x-ms-request-id": [ - "65d08b58-9a34-4f77-a33d-ba0fde683bc2" + "00691855-684c-4b11-905e-1a8068a8093d" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/00691855-684c-4b11-905e-1a8068a8093d?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "08a204d0-e8b6-4994-81b5-d0d392a78b0b" + "56736fa2-1008-4941-ab9e-7c441c1f46d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184454Z:08a204d0-e8b6-4994-81b5-d0d392a78b0b" + "WESTUS:20150714T212117Z:56736fa2-1008-4941-ab9e-7c441c1f46d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:44:54 GMT" + "Tue, 14 Jul 2015 21:21:16 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/00691855-684c-4b11-905e-1a8068a8093d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAwNjkxODU1LTY4NGMtNGIxMS05MDVlLTFhODA2OGE4MDkzZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,11 +920,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "6937bceb-0ee6-4f4e-9c8f-f59baf7732fd" + "ac964f67-1c57-4b2a-ae64-bd3ae0ac28a3" ], "Cache-Control": [ "no-cache" @@ -1007,34 +931,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14998" ], "x-ms-correlation-request-id": [ - "b2bb3b47-fcf2-4fdb-b34d-42192d28f68b" + "6ca77c58-9ab8-495a-97b3-e4e148c9872b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184525Z:b2bb3b47-fcf2-4fdb-b34d-42192d28f68b" + "WESTUS:20150714T212142Z:6ca77c58-9ab8-495a-97b3-e4e148c9872b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:45:24 GMT" + "Tue, 14 Jul 2015 21:21:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/00691855-684c-4b11-905e-1a8068a8093d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAwNjkxODU1LTY4NGMtNGIxMS05MDVlLTFhODA2OGE4MDkzZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1045,11 +972,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "827ef4bd-0b18-4e93-a661-dd0e7ccf9813" + "ac964f67-1c57-4b2a-ae64-bd3ae0ac28a3" ], "Cache-Control": [ "no-cache" @@ -1059,34 +983,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14998" ], "x-ms-correlation-request-id": [ - "92f4eb25-1823-49d3-8f70-925e9abd46ef" + "6ca77c58-9ab8-495a-97b3-e4e148c9872b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184556Z:92f4eb25-1823-49d3-8f70-925e9abd46ef" + "WESTUS:20150714T212142Z:6ca77c58-9ab8-495a-97b3-e4e148c9872b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:45:55 GMT" + "Tue, 14 Jul 2015 21:21:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/00691855-684c-4b11-905e-1a8068a8093d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAwNjkxODU1LTY4NGMtNGIxMS05MDVlLTFhODA2OGE4MDkzZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1097,11 +1024,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "bd7bb322-e02e-4427-b196-0298354ae869" + "ac964f67-1c57-4b2a-ae64-bd3ae0ac28a3" ], "Cache-Control": [ "no-cache" @@ -1111,34 +1035,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14998" ], "x-ms-correlation-request-id": [ - "ca9432c5-bc3c-497a-8fdf-c5ac14a3a6ad" + "6ca77c58-9ab8-495a-97b3-e4e148c9872b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184626Z:ca9432c5-bc3c-497a-8fdf-c5ac14a3a6ad" + "WESTUS:20150714T212142Z:6ca77c58-9ab8-495a-97b3-e4e148c9872b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:46:26 GMT" + "Tue, 14 Jul 2015 21:21:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/00691855-684c-4b11-905e-1a8068a8093d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAwNjkxODU1LTY4NGMtNGIxMS05MDVlLTFhODA2OGE4MDkzZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,11 +1076,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "2b2056da-d543-40ff-b041-b77129e143be" + "ac964f67-1c57-4b2a-ae64-bd3ae0ac28a3" ], "Cache-Control": [ "no-cache" @@ -1163,34 +1087,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14998" ], "x-ms-correlation-request-id": [ - "f9061463-3d67-45b4-b447-c9ffd8edc391" + "6ca77c58-9ab8-495a-97b3-e4e148c9872b" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184657Z:f9061463-3d67-45b4-b447-c9ffd8edc391" + "WESTUS:20150714T212142Z:6ca77c58-9ab8-495a-97b3-e4e148c9872b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:46:57 GMT" + "Tue, 14 Jul 2015 21:21:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677\",\r\n \"name\": \"pslibtest2677\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2677.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2677.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2677.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:21:14.0108808Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1201,11 +1128,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "6b17fbf1-2e51-436b-b5af-70a76502034a" + "1422b40c-b553-4f1e-ac67-c0efbf75310a" ], "Cache-Control": [ "no-cache" @@ -1215,34 +1139,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14997" ], "x-ms-correlation-request-id": [ - "ec58c8b4-141c-4352-aeec-f4041f081478" + "46405e29-9727-4613-b4d5-b6eb2e4e1ef0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184728Z:ec58c8b4-141c-4352-aeec-f4041f081478" + "WESTUS:20150714T212153Z:46405e29-9727-4613-b4d5-b6eb2e4e1ef0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:47:27 GMT" + "Tue, 14 Jul 2015 21:21:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677\",\r\n \"name\": \"pslibtest2677\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2677.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2677.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2677.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:21:14.0108808Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1253,11 +1180,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "3d700fa4-933f-45e7-b66b-877c74bcf57e" + "1422b40c-b553-4f1e-ac67-c0efbf75310a" ], "Cache-Control": [ "no-cache" @@ -1267,34 +1191,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14997" ], "x-ms-correlation-request-id": [ - "749a0705-0aa5-49ff-b7ec-c4c25686f9a6" + "46405e29-9727-4613-b4d5-b6eb2e4e1ef0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184759Z:749a0705-0aa5-49ff-b7ec-c4c25686f9a6" + "WESTUS:20150714T212153Z:46405e29-9727-4613-b4d5-b6eb2e4e1ef0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:47:58 GMT" + "Tue, 14 Jul 2015 21:21:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677\",\r\n \"name\": \"pslibtest2677\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2677.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2677.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2677.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:21:14.0108808Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1305,11 +1232,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "01edd5c8-b231-4d1c-8a57-d0801ffff7d7" + "1422b40c-b553-4f1e-ac67-c0efbf75310a" ], "Cache-Control": [ "no-cache" @@ -1319,34 +1243,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14997" ], "x-ms-correlation-request-id": [ - "40666504-ca30-4e8c-bb8d-edf9d611f654" + "46405e29-9727-4613-b4d5-b6eb2e4e1ef0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184829Z:40666504-ca30-4e8c-bb8d-edf9d611f654" + "WESTUS:20150714T212153Z:46405e29-9727-4613-b4d5-b6eb2e4e1ef0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:48:29 GMT" + "Tue, 14 Jul 2015 21:21:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677\",\r\n \"name\": \"pslibtest2677\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2677.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2677.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2677.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:21:14.0108808Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1357,11 +1284,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "1422b40c-b553-4f1e-ac67-c0efbf75310a" + ], + "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": [ + "46405e29-9727-4613-b4d5-b6eb2e4e1ef0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212153Z:46405e29-9727-4613-b4d5-b6eb2e4e1ef0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Tue, 14 Jul 2015 21:21:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyNjc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677\",\r\n \"name\": \"pslibtest2677\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2677.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2677.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2677.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:21:14.0108808Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "cee3f1ee-4ce0-4528-bc80-0b95d6b4d2f4" + "69b36618-40ef-479d-8dcd-f233946fabed" ], "Cache-Control": [ "no-cache" @@ -1371,34 +1347,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14996" ], "x-ms-correlation-request-id": [ - "5501047d-610a-4e68-9c51-e9e221cb946a" + "78f4b863-723d-4561-9cf9-4e3654352ece" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184900Z:5501047d-610a-4e68-9c51-e9e221cb946a" + "WESTUS:20150714T212153Z:78f4b863-723d-4561-9cf9-4e3654352ece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:49:00 GMT" + "Tue, 14 Jul 2015 21:21:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyNjc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677\",\r\n \"name\": \"pslibtest2677\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2677.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2677.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2677.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:21:14.0108808Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1409,11 +1388,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "69b36618-40ef-479d-8dcd-f233946fabed" + ], + "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": [ + "78f4b863-723d-4561-9cf9-4e3654352ece" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212153Z:78f4b863-723d-4561-9cf9-4e3654352ece" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Tue, 14 Jul 2015 21:21:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyNjc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677\",\r\n \"name\": \"pslibtest2677\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2677.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2677.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2677.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:21:14.0108808Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "50850659-e8c0-47e3-ad62-f3de9b8668fc" + "69b36618-40ef-479d-8dcd-f233946fabed" ], "Cache-Control": [ "no-cache" @@ -1423,34 +1451,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14996" ], "x-ms-correlation-request-id": [ - "e99e3542-2c7c-4ab1-9244-0f9f36122137" + "78f4b863-723d-4561-9cf9-4e3654352ece" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T184931Z:e99e3542-2c7c-4ab1-9244-0f9f36122137" + "WESTUS:20150714T212153Z:78f4b863-723d-4561-9cf9-4e3654352ece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:49:30 GMT" + "Tue, 14 Jul 2015 21:21:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3QyNjc3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Storage/storageAccounts/pslibtest2677\",\r\n \"name\": \"pslibtest2677\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest2677.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest2677.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest2677.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T21:21:14.0108808Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1461,11 +1492,75 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "69b36618-40ef-479d-8dcd-f233946fabed" + ], + "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": [ + "78f4b863-723d-4561-9cf9-4e3654352ece" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212153Z:78f4b863-723d-4561-9cf9-4e3654352ece" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Tue, 14 Jul 2015 21:21:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6370\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370\",\r\n \"etag\": \"W/\\\"cd169b4d-272e-4c47-975f-dd2c642def5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"cd169b4d-272e-4c47-975f-dd2c642def5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "14315607-1c1b-498b-ad92-00736c243f88" + "90bb29e5-3e46-45b7-aaf0-04391bc01a19" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/90bb29e5-3e46-45b7-aaf0-04391bc01a19?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1474,35 +1569,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "397c7b43-6fbb-446c-900b-5d7b670a907c" + "46aa8124-6eea-41fa-a2f8-921d9978cf16" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185002Z:397c7b43-6fbb-446c-900b-5d7b670a907c" + "WESTUS:20150714T212157Z:46aa8124-6eea-41fa-a2f8-921d9978cf16" ], "Date": [ - "Tue, 16 Jun 2015 18:50:01 GMT" + "Tue, 14 Jul 2015 21:21:56 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6370\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370\",\r\n \"etag\": \"W/\\\"cd169b4d-272e-4c47-975f-dd2c642def5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"cd169b4d-272e-4c47-975f-dd2c642def5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1513,51 +1614,10207 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "90bb29e5-3e46-45b7-aaf0-04391bc01a19" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/90bb29e5-3e46-45b7-aaf0-04391bc01a19?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "46aa8124-6eea-41fa-a2f8-921d9978cf16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212157Z:46aa8124-6eea-41fa-a2f8-921d9978cf16" + ], + "Date": [ + "Tue, 14 Jul 2015 21:21:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6370\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370\",\r\n \"etag\": \"W/\\\"cd169b4d-272e-4c47-975f-dd2c642def5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"cd169b4d-272e-4c47-975f-dd2c642def5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d14c8938-c7b6-4e67-a025-eac8c8d6c6c3" + "90bb29e5-3e46-45b7-aaf0-04391bc01a19" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/90bb29e5-3e46-45b7-aaf0-04391bc01a19?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "46aa8124-6eea-41fa-a2f8-921d9978cf16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212157Z:46aa8124-6eea-41fa-a2f8-921d9978cf16" + ], + "Date": [ + "Tue, 14 Jul 2015 21:21:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6370\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370\",\r\n \"etag\": \"W/\\\"cd169b4d-272e-4c47-975f-dd2c642def5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"cd169b4d-272e-4c47-975f-dd2c642def5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "90bb29e5-3e46-45b7-aaf0-04391bc01a19" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/90bb29e5-3e46-45b7-aaf0-04391bc01a19?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "46aa8124-6eea-41fa-a2f8-921d9978cf16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212157Z:46aa8124-6eea-41fa-a2f8-921d9978cf16" + ], + "Date": [ + "Tue, 14 Jul 2015 21:21:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/90bb29e5-3e46-45b7-aaf0-04391bc01a19?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzkwYmIyOWU1LTNlNDYtNDViNy1hYWYwLTA0MzkxYmMwMWExOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8d0387d1-f46d-4533-82c1-cba0f518265a" + ], + "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": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "8e07fa75-5daf-4f26-818d-93f2d1a0d8ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:8e07fa75-5daf-4f26-818d-93f2d1a0d8ed" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/90bb29e5-3e46-45b7-aaf0-04391bc01a19?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzkwYmIyOWU1LTNlNDYtNDViNy1hYWYwLTA0MzkxYmMwMWExOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8d0387d1-f46d-4533-82c1-cba0f518265a" + ], + "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": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "8e07fa75-5daf-4f26-818d-93f2d1a0d8ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:8e07fa75-5daf-4f26-818d-93f2d1a0d8ed" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/90bb29e5-3e46-45b7-aaf0-04391bc01a19?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzkwYmIyOWU1LTNlNDYtNDViNy1hYWYwLTA0MzkxYmMwMWExOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8d0387d1-f46d-4533-82c1-cba0f518265a" + ], + "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": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "8e07fa75-5daf-4f26-818d-93f2d1a0d8ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:8e07fa75-5daf-4f26-818d-93f2d1a0d8ed" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/90bb29e5-3e46-45b7-aaf0-04391bc01a19?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzkwYmIyOWU1LTNlNDYtNDViNy1hYWYwLTA0MzkxYmMwMWExOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8d0387d1-f46d-4533-82c1-cba0f518265a" + ], + "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": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "8e07fa75-5daf-4f26-818d-93f2d1a0d8ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:8e07fa75-5daf-4f26-818d-93f2d1a0d8ed" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6370\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a6bbdf76-a0a8-4378-86ee-704b64702d3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"0281c795-baf5-4a17-9424-28f9927aff14\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "b2b011fb-f851-4361-857d-e39014cce17d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:b2b011fb-f851-4361-857d-e39014cce17d" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6370\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a6bbdf76-a0a8-4378-86ee-704b64702d3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"0281c795-baf5-4a17-9424-28f9927aff14\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "b2b011fb-f851-4361-857d-e39014cce17d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:b2b011fb-f851-4361-857d-e39014cce17d" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6370\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a6bbdf76-a0a8-4378-86ee-704b64702d3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"0281c795-baf5-4a17-9424-28f9927aff14\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "b2b011fb-f851-4361-857d-e39014cce17d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:b2b011fb-f851-4361-857d-e39014cce17d" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6370\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a6bbdf76-a0a8-4378-86ee-704b64702d3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"0281c795-baf5-4a17-9424-28f9927aff14\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "b2b011fb-f851-4361-857d-e39014cce17d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:b2b011fb-f851-4361-857d-e39014cce17d" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370/subnets/azsmnet9813?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MC9zdWJuZXRzL2F6c21uZXQ5ODEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acde8cec-a779-43f0-b3b7-d8f3efa66e8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"0281c795-baf5-4a17-9424-28f9927aff14\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "3bdeace7-f2c1-422e-a819-44c0bb92e876" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:3bdeace7-f2c1-422e-a819-44c0bb92e876" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370/subnets/azsmnet9813?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MC9zdWJuZXRzL2F6c21uZXQ5ODEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acde8cec-a779-43f0-b3b7-d8f3efa66e8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"0281c795-baf5-4a17-9424-28f9927aff14\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "3bdeace7-f2c1-422e-a819-44c0bb92e876" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:3bdeace7-f2c1-422e-a819-44c0bb92e876" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370/subnets/azsmnet9813?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MC9zdWJuZXRzL2F6c21uZXQ5ODEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acde8cec-a779-43f0-b3b7-d8f3efa66e8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"0281c795-baf5-4a17-9424-28f9927aff14\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "3bdeace7-f2c1-422e-a819-44c0bb92e876" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:3bdeace7-f2c1-422e-a819-44c0bb92e876" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualnetworks/azsmnet6370/subnets/azsmnet9813?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NjM3MC9zdWJuZXRzL2F6c21uZXQ5ODEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet9813\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acde8cec-a779-43f0-b3b7-d8f3efa66e8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"0281c795-baf5-4a17-9424-28f9927aff14\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "3bdeace7-f2c1-422e-a819-44c0bb92e876" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212208Z:3bdeace7-f2c1-422e-a819-44c0bb92e876" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0addb56f-e108-4f87-b959-5debda4df2a8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0addb56f-e108-4f87-b959-5debda4df2a8?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a040076e-aa94-4de1-9f37-f2a085774403" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212212Z:a040076e-aa94-4de1-9f37-f2a085774403" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0addb56f-e108-4f87-b959-5debda4df2a8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0addb56f-e108-4f87-b959-5debda4df2a8?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a040076e-aa94-4de1-9f37-f2a085774403" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212212Z:a040076e-aa94-4de1-9f37-f2a085774403" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0addb56f-e108-4f87-b959-5debda4df2a8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0addb56f-e108-4f87-b959-5debda4df2a8?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a040076e-aa94-4de1-9f37-f2a085774403" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212212Z:a040076e-aa94-4de1-9f37-f2a085774403" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet9813\",\r\n \"etag\": \"W/\\\"0281c795-baf5-4a17-9424-28f9927aff14\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0addb56f-e108-4f87-b959-5debda4df2a8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/0addb56f-e108-4f87-b959-5debda4df2a8?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a040076e-aa94-4de1-9f37-f2a085774403" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212212Z:a040076e-aa94-4de1-9f37-f2a085774403" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5318a4ed-bab4-4e82-9271-10493dfea6df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "8dde803c-e2f4-41b0-a9f7-b86d6625a0e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212213Z:8dde803c-e2f4-41b0-a9f7-b86d6625a0e4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5318a4ed-bab4-4e82-9271-10493dfea6df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "8dde803c-e2f4-41b0-a9f7-b86d6625a0e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212213Z:8dde803c-e2f4-41b0-a9f7-b86d6625a0e4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5318a4ed-bab4-4e82-9271-10493dfea6df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "8dde803c-e2f4-41b0-a9f7-b86d6625a0e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212213Z:8dde803c-e2f4-41b0-a9f7-b86d6625a0e4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1152" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5318a4ed-bab4-4e82-9271-10493dfea6df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"4cd6636e-0b3b-4a70-9cca-98cb5ab43ff9\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "8dde803c-e2f4-41b0-a9f7-b86d6625a0e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212213Z:8dde803c-e2f4-41b0-a9f7-b86d6625a0e4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-70-D5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aecc839d-39a5-4b4b-a1e6-7f77a2be74d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "43a611c3-32d1-488a-ba32-c012d7296ee1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213035Z:43a611c3-32d1-488a-ba32-c012d7296ee1" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-70-D5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aecc839d-39a5-4b4b-a1e6-7f77a2be74d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "43a611c3-32d1-488a-ba32-c012d7296ee1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213035Z:43a611c3-32d1-488a-ba32-c012d7296ee1" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-70-D5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aecc839d-39a5-4b4b-a1e6-7f77a2be74d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "43a611c3-32d1-488a-ba32-c012d7296ee1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213035Z:43a611c3-32d1-488a-ba32-c012d7296ee1" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ2NDYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6463\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"etag\": \"W/\\\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5364\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463/ipConfigurations/azsmnet5364\",\r\n \"etag\": \"W/\\\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/virtualNetworks/azsmnet6370/subnets/azsmnet9813\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-A0-70-D5\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aecc839d-39a5-4b4b-a1e6-7f77a2be74d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"65ae8ad3-ad38-4521-a90b-b4d4541458e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "43a611c3-32d1-488a-ba32-c012d7296ee1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213035Z:43a611c3-32d1-488a-ba32-c012d7296ee1" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM5NjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620\",\r\n \"name\": \"as9620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2f002a8c-aa2c-4ff2-969a-1c16fd59fdaa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "2f598e55-90af-45a0-a6d4-5cb5b46bdfec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212217Z:2f598e55-90af-45a0-a6d4-5cb5b46bdfec" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM5NjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620\",\r\n \"name\": \"as9620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2f002a8c-aa2c-4ff2-969a-1c16fd59fdaa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "2f598e55-90af-45a0-a6d4-5cb5b46bdfec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212217Z:2f598e55-90af-45a0-a6d4-5cb5b46bdfec" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM5NjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620\",\r\n \"name\": \"as9620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2f002a8c-aa2c-4ff2-969a-1c16fd59fdaa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "2f598e55-90af-45a0-a6d4-5cb5b46bdfec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212217Z:2f598e55-90af-45a0-a6d4-5cb5b46bdfec" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM5NjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620\",\r\n \"name\": \"as9620\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2f002a8c-aa2c-4ff2-969a-1c16fd59fdaa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "2f598e55-90af-45a0-a6d4-5cb5b46bdfec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212217Z:2f598e55-90af-45a0-a6d4-5cb5b46bdfec" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest9048\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ddb523af-7e4e-40d9-b116-701b8b6bb563" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6db84b07-cc86-4948-9fd7-3a0e65e54a58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212222Z:6db84b07-cc86-4948-9fd7-3a0e65e54a58" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest9048\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ddb523af-7e4e-40d9-b116-701b8b6bb563" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6db84b07-cc86-4948-9fd7-3a0e65e54a58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212222Z:6db84b07-cc86-4948-9fd7-3a0e65e54a58" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest9048\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ddb523af-7e4e-40d9-b116-701b8b6bb563" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6db84b07-cc86-4948-9fd7-3a0e65e54a58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212222Z:6db84b07-cc86-4948-9fd7-3a0e65e54a58" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest9048\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/as9620\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ddb523af-7e4e-40d9-b116-701b8b6bb563" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6db84b07-cc86-4948-9fd7-3a0e65e54a58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212222Z:6db84b07-cc86-4948-9fd7-3a0e65e54a58" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9611148b-97be-407a-886c-5ae705ab495e" + ], + "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": [ + "7b95d690-ff25-42c2-b136-39df32250bde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212253Z:7b95d690-ff25-42c2-b136-39df32250bde" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9611148b-97be-407a-886c-5ae705ab495e" + ], + "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": [ + "7b95d690-ff25-42c2-b136-39df32250bde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212253Z:7b95d690-ff25-42c2-b136-39df32250bde" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9611148b-97be-407a-886c-5ae705ab495e" + ], + "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": [ + "7b95d690-ff25-42c2-b136-39df32250bde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212253Z:7b95d690-ff25-42c2-b136-39df32250bde" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9611148b-97be-407a-886c-5ae705ab495e" + ], + "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": [ + "7b95d690-ff25-42c2-b136-39df32250bde" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212253Z:7b95d690-ff25-42c2-b136-39df32250bde" + ], + "Date": [ + "Tue, 14 Jul 2015 21:22:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5512f99-faa5-4de6-bb86-67707668c973" + ], + "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": [ + "725528b3-80e9-4f88-9d42-c3f0c741b82c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212323Z:725528b3-80e9-4f88-9d42-c3f0c741b82c" + ], + "Date": [ + "Tue, 14 Jul 2015 21:23:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5512f99-faa5-4de6-bb86-67707668c973" + ], + "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": [ + "725528b3-80e9-4f88-9d42-c3f0c741b82c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212323Z:725528b3-80e9-4f88-9d42-c3f0c741b82c" + ], + "Date": [ + "Tue, 14 Jul 2015 21:23:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5512f99-faa5-4de6-bb86-67707668c973" + ], + "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": [ + "725528b3-80e9-4f88-9d42-c3f0c741b82c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212323Z:725528b3-80e9-4f88-9d42-c3f0c741b82c" + ], + "Date": [ + "Tue, 14 Jul 2015 21:23:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5512f99-faa5-4de6-bb86-67707668c973" + ], + "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": [ + "725528b3-80e9-4f88-9d42-c3f0c741b82c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212323Z:725528b3-80e9-4f88-9d42-c3f0c741b82c" + ], + "Date": [ + "Tue, 14 Jul 2015 21:23:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dc8b6386-cd1c-4a77-a9e0-6b564c069950" + ], + "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": [ + "c3c4be5d-1bf2-477f-a9e7-7c28239ef3a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212354Z:c3c4be5d-1bf2-477f-a9e7-7c28239ef3a9" + ], + "Date": [ + "Tue, 14 Jul 2015 21:23:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dc8b6386-cd1c-4a77-a9e0-6b564c069950" + ], + "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": [ + "c3c4be5d-1bf2-477f-a9e7-7c28239ef3a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212354Z:c3c4be5d-1bf2-477f-a9e7-7c28239ef3a9" + ], + "Date": [ + "Tue, 14 Jul 2015 21:23:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dc8b6386-cd1c-4a77-a9e0-6b564c069950" + ], + "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": [ + "c3c4be5d-1bf2-477f-a9e7-7c28239ef3a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212354Z:c3c4be5d-1bf2-477f-a9e7-7c28239ef3a9" + ], + "Date": [ + "Tue, 14 Jul 2015 21:23:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dc8b6386-cd1c-4a77-a9e0-6b564c069950" + ], + "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": [ + "c3c4be5d-1bf2-477f-a9e7-7c28239ef3a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212354Z:c3c4be5d-1bf2-477f-a9e7-7c28239ef3a9" + ], + "Date": [ + "Tue, 14 Jul 2015 21:23:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "36eeed1b-f73a-4295-95e1-2cae2d72df56" + ], + "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": [ + "23236574-0679-4b8a-8b47-b31d097c61b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212425Z:23236574-0679-4b8a-8b47-b31d097c61b4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "36eeed1b-f73a-4295-95e1-2cae2d72df56" + ], + "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": [ + "23236574-0679-4b8a-8b47-b31d097c61b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212425Z:23236574-0679-4b8a-8b47-b31d097c61b4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "36eeed1b-f73a-4295-95e1-2cae2d72df56" + ], + "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": [ + "23236574-0679-4b8a-8b47-b31d097c61b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212425Z:23236574-0679-4b8a-8b47-b31d097c61b4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "36eeed1b-f73a-4295-95e1-2cae2d72df56" + ], + "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": [ + "23236574-0679-4b8a-8b47-b31d097c61b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212425Z:23236574-0679-4b8a-8b47-b31d097c61b4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:24:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d0043d26-5224-442f-b3a4-b91fc20284c0" + ], + "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": [ + "5dcb0dfe-37a4-4d17-b301-57ed96fc1cd4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212456Z:5dcb0dfe-37a4-4d17-b301-57ed96fc1cd4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:24:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d0043d26-5224-442f-b3a4-b91fc20284c0" + ], + "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": [ + "5dcb0dfe-37a4-4d17-b301-57ed96fc1cd4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212456Z:5dcb0dfe-37a4-4d17-b301-57ed96fc1cd4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:24:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d0043d26-5224-442f-b3a4-b91fc20284c0" + ], + "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": [ + "5dcb0dfe-37a4-4d17-b301-57ed96fc1cd4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212456Z:5dcb0dfe-37a4-4d17-b301-57ed96fc1cd4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:24:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d0043d26-5224-442f-b3a4-b91fc20284c0" + ], + "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": [ + "5dcb0dfe-37a4-4d17-b301-57ed96fc1cd4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212456Z:5dcb0dfe-37a4-4d17-b301-57ed96fc1cd4" + ], + "Date": [ + "Tue, 14 Jul 2015 21:24:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7695e172-66f0-41ed-80b7-f40fc38b643f" + ], + "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": [ + "1f1a9b07-1302-4d5f-a087-074db4628576" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212526Z:1f1a9b07-1302-4d5f-a087-074db4628576" + ], + "Date": [ + "Tue, 14 Jul 2015 21:25:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7695e172-66f0-41ed-80b7-f40fc38b643f" + ], + "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": [ + "1f1a9b07-1302-4d5f-a087-074db4628576" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212526Z:1f1a9b07-1302-4d5f-a087-074db4628576" + ], + "Date": [ + "Tue, 14 Jul 2015 21:25:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7695e172-66f0-41ed-80b7-f40fc38b643f" + ], + "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": [ + "1f1a9b07-1302-4d5f-a087-074db4628576" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212526Z:1f1a9b07-1302-4d5f-a087-074db4628576" + ], + "Date": [ + "Tue, 14 Jul 2015 21:25:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7695e172-66f0-41ed-80b7-f40fc38b643f" + ], + "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": [ + "1f1a9b07-1302-4d5f-a087-074db4628576" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212526Z:1f1a9b07-1302-4d5f-a087-074db4628576" + ], + "Date": [ + "Tue, 14 Jul 2015 21:25:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b7860ba7-45c9-497b-95c0-d85c45dcf78c" + ], + "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": [ + "e10e4488-24a9-4b75-87b3-19cadd604fb3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212557Z:e10e4488-24a9-4b75-87b3-19cadd604fb3" + ], + "Date": [ + "Tue, 14 Jul 2015 21:25:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b7860ba7-45c9-497b-95c0-d85c45dcf78c" + ], + "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": [ + "e10e4488-24a9-4b75-87b3-19cadd604fb3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212557Z:e10e4488-24a9-4b75-87b3-19cadd604fb3" + ], + "Date": [ + "Tue, 14 Jul 2015 21:25:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b7860ba7-45c9-497b-95c0-d85c45dcf78c" + ], + "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": [ + "e10e4488-24a9-4b75-87b3-19cadd604fb3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212557Z:e10e4488-24a9-4b75-87b3-19cadd604fb3" + ], + "Date": [ + "Tue, 14 Jul 2015 21:25:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b7860ba7-45c9-497b-95c0-d85c45dcf78c" + ], + "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": [ + "e10e4488-24a9-4b75-87b3-19cadd604fb3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212557Z:e10e4488-24a9-4b75-87b3-19cadd604fb3" + ], + "Date": [ + "Tue, 14 Jul 2015 21:25:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6ce1c8ab-e4e8-426a-86ab-a7fde7fa1e9a" + ], + "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": [ + "656473bd-1145-448c-877a-3a9a021fcd48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212628Z:656473bd-1145-448c-877a-3a9a021fcd48" + ], + "Date": [ + "Tue, 14 Jul 2015 21:26:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6ce1c8ab-e4e8-426a-86ab-a7fde7fa1e9a" + ], + "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": [ + "656473bd-1145-448c-877a-3a9a021fcd48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212628Z:656473bd-1145-448c-877a-3a9a021fcd48" + ], + "Date": [ + "Tue, 14 Jul 2015 21:26:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6ce1c8ab-e4e8-426a-86ab-a7fde7fa1e9a" + ], + "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": [ + "656473bd-1145-448c-877a-3a9a021fcd48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212628Z:656473bd-1145-448c-877a-3a9a021fcd48" + ], + "Date": [ + "Tue, 14 Jul 2015 21:26:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6ce1c8ab-e4e8-426a-86ab-a7fde7fa1e9a" + ], + "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": [ + "656473bd-1145-448c-877a-3a9a021fcd48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212628Z:656473bd-1145-448c-877a-3a9a021fcd48" + ], + "Date": [ + "Tue, 14 Jul 2015 21:26:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "187834cb-2821-4a3a-aae8-e91ec3d1418a" + ], + "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": [ + "6402ddec-e1b3-4733-8bdb-3338592c595a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212658Z:6402ddec-e1b3-4733-8bdb-3338592c595a" + ], + "Date": [ + "Tue, 14 Jul 2015 21:26:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "187834cb-2821-4a3a-aae8-e91ec3d1418a" + ], + "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": [ + "6402ddec-e1b3-4733-8bdb-3338592c595a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212658Z:6402ddec-e1b3-4733-8bdb-3338592c595a" + ], + "Date": [ + "Tue, 14 Jul 2015 21:26:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "187834cb-2821-4a3a-aae8-e91ec3d1418a" + ], + "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": [ + "6402ddec-e1b3-4733-8bdb-3338592c595a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212658Z:6402ddec-e1b3-4733-8bdb-3338592c595a" + ], + "Date": [ + "Tue, 14 Jul 2015 21:26:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "187834cb-2821-4a3a-aae8-e91ec3d1418a" + ], + "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": [ + "6402ddec-e1b3-4733-8bdb-3338592c595a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212658Z:6402ddec-e1b3-4733-8bdb-3338592c595a" + ], + "Date": [ + "Tue, 14 Jul 2015 21:26:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f9d41b4d-635d-4cd1-b511-1523e6d8a27c" + ], + "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": [ + "ec4140ab-6116-48fc-8f1e-15fecccb9211" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212729Z:ec4140ab-6116-48fc-8f1e-15fecccb9211" + ], + "Date": [ + "Tue, 14 Jul 2015 21:27:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f9d41b4d-635d-4cd1-b511-1523e6d8a27c" + ], + "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": [ + "ec4140ab-6116-48fc-8f1e-15fecccb9211" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212729Z:ec4140ab-6116-48fc-8f1e-15fecccb9211" + ], + "Date": [ + "Tue, 14 Jul 2015 21:27:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f9d41b4d-635d-4cd1-b511-1523e6d8a27c" + ], + "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": [ + "ec4140ab-6116-48fc-8f1e-15fecccb9211" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212729Z:ec4140ab-6116-48fc-8f1e-15fecccb9211" + ], + "Date": [ + "Tue, 14 Jul 2015 21:27:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f9d41b4d-635d-4cd1-b511-1523e6d8a27c" + ], + "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": [ + "ec4140ab-6116-48fc-8f1e-15fecccb9211" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212729Z:ec4140ab-6116-48fc-8f1e-15fecccb9211" + ], + "Date": [ + "Tue, 14 Jul 2015 21:27:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9fa57b3c-a1a0-4441-8099-01de7af87304" + ], + "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": [ + "acef56e6-99f0-466e-9e7b-7eba6fdee606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212759Z:acef56e6-99f0-466e-9e7b-7eba6fdee606" + ], + "Date": [ + "Tue, 14 Jul 2015 21:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9fa57b3c-a1a0-4441-8099-01de7af87304" + ], + "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": [ + "acef56e6-99f0-466e-9e7b-7eba6fdee606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212759Z:acef56e6-99f0-466e-9e7b-7eba6fdee606" + ], + "Date": [ + "Tue, 14 Jul 2015 21:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9fa57b3c-a1a0-4441-8099-01de7af87304" + ], + "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": [ + "acef56e6-99f0-466e-9e7b-7eba6fdee606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212759Z:acef56e6-99f0-466e-9e7b-7eba6fdee606" + ], + "Date": [ + "Tue, 14 Jul 2015 21:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "9fa57b3c-a1a0-4441-8099-01de7af87304" + ], + "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": [ + "acef56e6-99f0-466e-9e7b-7eba6fdee606" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212759Z:acef56e6-99f0-466e-9e7b-7eba6fdee606" + ], + "Date": [ + "Tue, 14 Jul 2015 21:27:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b7d14cee-e04e-419e-b7dd-a4b6651ba13a" + ], + "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": [ + "671ad730-3be9-46c9-8e2a-6dfbdfae08e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212830Z:671ad730-3be9-46c9-8e2a-6dfbdfae08e5" + ], + "Date": [ + "Tue, 14 Jul 2015 21:28:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b7d14cee-e04e-419e-b7dd-a4b6651ba13a" + ], + "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": [ + "671ad730-3be9-46c9-8e2a-6dfbdfae08e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212830Z:671ad730-3be9-46c9-8e2a-6dfbdfae08e5" + ], + "Date": [ + "Tue, 14 Jul 2015 21:28:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b7d14cee-e04e-419e-b7dd-a4b6651ba13a" + ], + "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": [ + "671ad730-3be9-46c9-8e2a-6dfbdfae08e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212830Z:671ad730-3be9-46c9-8e2a-6dfbdfae08e5" + ], + "Date": [ + "Tue, 14 Jul 2015 21:28:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b7d14cee-e04e-419e-b7dd-a4b6651ba13a" + ], + "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": [ + "671ad730-3be9-46c9-8e2a-6dfbdfae08e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212830Z:671ad730-3be9-46c9-8e2a-6dfbdfae08e5" + ], + "Date": [ + "Tue, 14 Jul 2015 21:28:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c90d4fc-19b1-4ca3-87b8-681fe7e9c221" + ], + "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": [ + "9c313f5d-fe68-46d4-995b-75823d2ffa90" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212901Z:9c313f5d-fe68-46d4-995b-75823d2ffa90" + ], + "Date": [ + "Tue, 14 Jul 2015 21:29:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c90d4fc-19b1-4ca3-87b8-681fe7e9c221" + ], + "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": [ + "9c313f5d-fe68-46d4-995b-75823d2ffa90" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212901Z:9c313f5d-fe68-46d4-995b-75823d2ffa90" + ], + "Date": [ + "Tue, 14 Jul 2015 21:29:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c90d4fc-19b1-4ca3-87b8-681fe7e9c221" + ], + "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": [ + "9c313f5d-fe68-46d4-995b-75823d2ffa90" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212901Z:9c313f5d-fe68-46d4-995b-75823d2ffa90" + ], + "Date": [ + "Tue, 14 Jul 2015 21:29:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c90d4fc-19b1-4ca3-87b8-681fe7e9c221" + ], + "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": [ + "9c313f5d-fe68-46d4-995b-75823d2ffa90" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212901Z:9c313f5d-fe68-46d4-995b-75823d2ffa90" + ], + "Date": [ + "Tue, 14 Jul 2015 21:29:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "84d7facb-beb1-448c-a9cb-42aba082cbea" + ], + "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": [ + "737be53d-3fc6-49c8-bc04-cc7a7ab78a51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212932Z:737be53d-3fc6-49c8-bc04-cc7a7ab78a51" + ], + "Date": [ + "Tue, 14 Jul 2015 21:29:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "84d7facb-beb1-448c-a9cb-42aba082cbea" + ], + "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": [ + "737be53d-3fc6-49c8-bc04-cc7a7ab78a51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212932Z:737be53d-3fc6-49c8-bc04-cc7a7ab78a51" + ], + "Date": [ + "Tue, 14 Jul 2015 21:29:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "84d7facb-beb1-448c-a9cb-42aba082cbea" + ], + "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": [ + "737be53d-3fc6-49c8-bc04-cc7a7ab78a51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212932Z:737be53d-3fc6-49c8-bc04-cc7a7ab78a51" + ], + "Date": [ + "Tue, 14 Jul 2015 21:29:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "84d7facb-beb1-448c-a9cb-42aba082cbea" + ], + "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": [ + "737be53d-3fc6-49c8-bc04-cc7a7ab78a51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T212932Z:737be53d-3fc6-49c8-bc04-cc7a7ab78a51" + ], + "Date": [ + "Tue, 14 Jul 2015 21:29:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c051f390-ddaf-47db-97ce-be80bd66ea51" + ], + "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": [ + "f2dc70a5-7a58-4b95-92d4-684628bd0bed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213002Z:f2dc70a5-7a58-4b95-92d4-684628bd0bed" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c051f390-ddaf-47db-97ce-be80bd66ea51" + ], + "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": [ + "f2dc70a5-7a58-4b95-92d4-684628bd0bed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213002Z:f2dc70a5-7a58-4b95-92d4-684628bd0bed" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c051f390-ddaf-47db-97ce-be80bd66ea51" + ], + "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": [ + "f2dc70a5-7a58-4b95-92d4-684628bd0bed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213002Z:f2dc70a5-7a58-4b95-92d4-684628bd0bed" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c051f390-ddaf-47db-97ce-be80bd66ea51" + ], + "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": [ + "f2dc70a5-7a58-4b95-92d4-684628bd0bed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213002Z:f2dc70a5-7a58-4b95-92d4-684628bd0bed" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\",\r\n \"endTime\": \"2015-07-14T14:30:03.3130445-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "350256e0-eff5-4b8c-bce4-1f5523a6f47b" + ], + "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": [ + "fd9b2172-aacb-442a-a849-0b26b7cc9e5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213033Z:fd9b2172-aacb-442a-a849-0b26b7cc9e5b" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\",\r\n \"endTime\": \"2015-07-14T14:30:03.3130445-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "350256e0-eff5-4b8c-bce4-1f5523a6f47b" + ], + "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": [ + "fd9b2172-aacb-442a-a849-0b26b7cc9e5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213033Z:fd9b2172-aacb-442a-a849-0b26b7cc9e5b" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\",\r\n \"endTime\": \"2015-07-14T14:30:03.3130445-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "350256e0-eff5-4b8c-bce4-1f5523a6f47b" + ], + "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": [ + "fd9b2172-aacb-442a-a849-0b26b7cc9e5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213033Z:fd9b2172-aacb-442a-a849-0b26b7cc9e5b" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ddb523af-7e4e-40d9-b116-701b8b6bb563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RkYjUyM2FmLTdlNGUtNDBkOS1iMTE2LTcwMWI4YjZiYjU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ddb523af-7e4e-40d9-b116-701b8b6bb563\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T14:22:19.3413451-07:00\",\r\n \"endTime\": \"2015-07-14T14:30:03.3130445-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "350256e0-eff5-4b8c-bce4-1f5523a6f47b" + ], + "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": [ + "fd9b2172-aacb-442a-a849-0b26b7cc9e5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213033Z:fd9b2172-aacb-442a-a849-0b26b7cc9e5b" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cb454fca-b92c-4a35-9d75-4790236a5989" + ], + "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": [ + "7abb0e48-6df3-4f49-ab44-2c6362f7f1ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213034Z:7abb0e48-6df3-4f49-ab44-2c6362f7f1ec" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cb454fca-b92c-4a35-9d75-4790236a5989" + ], + "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": [ + "7abb0e48-6df3-4f49-ab44-2c6362f7f1ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213034Z:7abb0e48-6df3-4f49-ab44-2c6362f7f1ec" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cb454fca-b92c-4a35-9d75-4790236a5989" + ], + "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": [ + "7abb0e48-6df3-4f49-ab44-2c6362f7f1ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213034Z:7abb0e48-6df3-4f49-ab44-2c6362f7f1ec" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cb454fca-b92c-4a35-9d75-4790236a5989" + ], + "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": [ + "7abb0e48-6df3-4f49-ab44-2c6362f7f1ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213034Z:7abb0e48-6df3-4f49-ab44-2c6362f7f1ec" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fca8d0f2-f0a4-407a-9305-a288bc38b0fa" + ], + "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": [ + "d6324f23-b891-4830-9cf5-ce5e362ea506" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213034Z:d6324f23-b891-4830-9cf5-ce5e362ea506" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fca8d0f2-f0a4-407a-9305-a288bc38b0fa" + ], + "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": [ + "d6324f23-b891-4830-9cf5-ce5e362ea506" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213034Z:d6324f23-b891-4830-9cf5-ce5e362ea506" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fca8d0f2-f0a4-407a-9305-a288bc38b0fa" + ], + "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": [ + "d6324f23-b891-4830-9cf5-ce5e362ea506" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213034Z:d6324f23-b891-4830-9cf5-ce5e362ea506" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDkwNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTI5NzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/availabilitySets/AS9620\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest2677.blob.core.windows.net/pslibtest9471/ospslibtest2772.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Network/networkInterfaces/azsmnet6463\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest9048/providers/Microsoft.Compute/virtualMachines/vm2975\",\r\n \"name\": \"vm2975\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fca8d0f2-f0a4-407a-9305-a288bc38b0fa" + ], + "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": [ + "d6324f23-b891-4830-9cf5-ce5e362ea506" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213034Z:d6324f23-b891-4830-9cf5-ce5e362ea506" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "x-ms-correlation-request-id": [ + "bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213040Z:bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "x-ms-correlation-request-id": [ + "bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213040Z:bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "x-ms-correlation-request-id": [ + "bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213040Z:bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest9048?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDkwNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "x-ms-correlation-request-id": [ + "bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213040Z:bcef5d37-fdf2-4b9d-a4b3-bcf13635a022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14971" + ], + "x-ms-request-id": [ + "d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "x-ms-correlation-request-id": [ + "d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213056Z:d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14971" + ], + "x-ms-request-id": [ + "d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "x-ms-correlation-request-id": [ + "d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213056Z:d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14971" + ], + "x-ms-request-id": [ + "d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "x-ms-correlation-request-id": [ + "d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213056Z:d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14971" + ], + "x-ms-request-id": [ + "d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "x-ms-correlation-request-id": [ + "d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213056Z:d598a489-050e-470d-928c-ab3c2cddadcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:30:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14970" + ], + "x-ms-request-id": [ + "82b8344d-041a-471f-94ee-fab336a9383c" + ], + "x-ms-correlation-request-id": [ + "82b8344d-041a-471f-94ee-fab336a9383c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213111Z:82b8344d-041a-471f-94ee-fab336a9383c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14970" + ], + "x-ms-request-id": [ + "82b8344d-041a-471f-94ee-fab336a9383c" + ], + "x-ms-correlation-request-id": [ + "82b8344d-041a-471f-94ee-fab336a9383c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213111Z:82b8344d-041a-471f-94ee-fab336a9383c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14970" + ], + "x-ms-request-id": [ + "82b8344d-041a-471f-94ee-fab336a9383c" + ], + "x-ms-correlation-request-id": [ + "82b8344d-041a-471f-94ee-fab336a9383c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213111Z:82b8344d-041a-471f-94ee-fab336a9383c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14970" + ], + "x-ms-request-id": [ + "82b8344d-041a-471f-94ee-fab336a9383c" + ], + "x-ms-correlation-request-id": [ + "82b8344d-041a-471f-94ee-fab336a9383c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213111Z:82b8344d-041a-471f-94ee-fab336a9383c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14969" + ], + "x-ms-request-id": [ + "51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "x-ms-correlation-request-id": [ + "51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213127Z:51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14969" + ], + "x-ms-request-id": [ + "51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "x-ms-correlation-request-id": [ + "51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213127Z:51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14969" + ], + "x-ms-request-id": [ + "51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "x-ms-correlation-request-id": [ + "51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213127Z:51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14969" + ], + "x-ms-request-id": [ + "51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "x-ms-correlation-request-id": [ + "51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213127Z:51502507-4cd9-4a3f-8448-2c048ecf509f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14968" + ], + "x-ms-request-id": [ + "acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "x-ms-correlation-request-id": [ + "acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213142Z:acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14968" + ], + "x-ms-request-id": [ + "acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "x-ms-correlation-request-id": [ + "acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213142Z:acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14968" + ], + "x-ms-request-id": [ + "acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "x-ms-correlation-request-id": [ + "acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213142Z:acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14968" + ], + "x-ms-request-id": [ + "acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "x-ms-correlation-request-id": [ + "acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213142Z:acdb5918-ea09-4e44-9d2a-e0f3d1e64f5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14967" + ], + "x-ms-request-id": [ + "43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "x-ms-correlation-request-id": [ + "43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213157Z:43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14967" + ], + "x-ms-request-id": [ + "43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "x-ms-correlation-request-id": [ + "43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213157Z:43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14967" + ], + "x-ms-request-id": [ + "43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "x-ms-correlation-request-id": [ + "43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213157Z:43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14967" + ], + "x-ms-request-id": [ + "43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "x-ms-correlation-request-id": [ + "43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213157Z:43644dcc-8729-4efa-8b88-7ea404d887e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:31:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14966" + ], + "x-ms-request-id": [ + "f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "x-ms-correlation-request-id": [ + "f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213213Z:f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14966" + ], + "x-ms-request-id": [ + "f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "x-ms-correlation-request-id": [ + "f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213213Z:f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14966" + ], + "x-ms-request-id": [ + "f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "x-ms-correlation-request-id": [ + "f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213213Z:f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14966" + ], + "x-ms-request-id": [ + "f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "x-ms-correlation-request-id": [ + "f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213213Z:f55342b1-ba0f-4071-bac6-1b6e3acfe282" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14965" + ], + "x-ms-request-id": [ + "9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "x-ms-correlation-request-id": [ + "9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213228Z:9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14965" + ], + "x-ms-request-id": [ + "9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "x-ms-correlation-request-id": [ + "9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213228Z:9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14965" + ], + "x-ms-request-id": [ + "9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "x-ms-correlation-request-id": [ + "9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213228Z:9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14965" + ], + "x-ms-request-id": [ + "9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "x-ms-correlation-request-id": [ + "9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213228Z:9a8223d3-a066-479c-9b7d-86e73e80d423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14964" + ], + "x-ms-request-id": [ + "3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "x-ms-correlation-request-id": [ + "3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213244Z:3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14964" + ], + "x-ms-request-id": [ + "3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "x-ms-correlation-request-id": [ + "3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213244Z:3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14964" + ], + "x-ms-request-id": [ + "3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "x-ms-correlation-request-id": [ + "3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213244Z:3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14964" + ], + "x-ms-request-id": [ + "3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "x-ms-correlation-request-id": [ + "3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213244Z:3d815cd6-3e08-4d4b-a89f-a64b9c558c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14963" + ], + "x-ms-request-id": [ + "75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "x-ms-correlation-request-id": [ + "75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213259Z:75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14963" + ], + "x-ms-request-id": [ + "75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "x-ms-correlation-request-id": [ + "75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213259Z:75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14963" + ], + "x-ms-request-id": [ + "75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "x-ms-correlation-request-id": [ + "75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213259Z:75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14963" + ], + "x-ms-request-id": [ + "75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "x-ms-correlation-request-id": [ + "75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213259Z:75b93434-6c76-4ea2-9983-8a91841bb12e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:32:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14962" + ], + "x-ms-request-id": [ + "8d330938-061a-42b0-ada8-d251128487cf" + ], + "x-ms-correlation-request-id": [ + "8d330938-061a-42b0-ada8-d251128487cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213315Z:8d330938-061a-42b0-ada8-d251128487cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14962" + ], + "x-ms-request-id": [ + "8d330938-061a-42b0-ada8-d251128487cf" + ], + "x-ms-correlation-request-id": [ + "8d330938-061a-42b0-ada8-d251128487cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213315Z:8d330938-061a-42b0-ada8-d251128487cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14962" + ], + "x-ms-request-id": [ + "8d330938-061a-42b0-ada8-d251128487cf" + ], + "x-ms-correlation-request-id": [ + "8d330938-061a-42b0-ada8-d251128487cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213315Z:8d330938-061a-42b0-ada8-d251128487cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14962" + ], + "x-ms-request-id": [ + "8d330938-061a-42b0-ada8-d251128487cf" + ], + "x-ms-correlation-request-id": [ + "8d330938-061a-42b0-ada8-d251128487cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213315Z:8d330938-061a-42b0-ada8-d251128487cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14961" + ], + "x-ms-request-id": [ + "f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "x-ms-correlation-request-id": [ + "f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213330Z:f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14961" + ], + "x-ms-request-id": [ + "f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "x-ms-correlation-request-id": [ + "f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213330Z:f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14961" + ], + "x-ms-request-id": [ + "f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "x-ms-correlation-request-id": [ + "f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213330Z:f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14961" + ], + "x-ms-request-id": [ + "f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "x-ms-correlation-request-id": [ + "f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213330Z:f4f37991-739b-44ae-81bd-2b0680c0d96e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14960" + ], + "x-ms-request-id": [ + "298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "x-ms-correlation-request-id": [ + "298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213346Z:298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14960" + ], + "x-ms-request-id": [ + "298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "x-ms-correlation-request-id": [ + "298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213346Z:298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14960" + ], + "x-ms-request-id": [ + "298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "x-ms-correlation-request-id": [ + "298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213346Z:298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14960" + ], + "x-ms-request-id": [ + "298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "x-ms-correlation-request-id": [ + "298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213346Z:298ae3fd-9565-4d47-9502-3b38e73b7b66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:33:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14959" + ], + "x-ms-request-id": [ + "3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "x-ms-correlation-request-id": [ + "3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213401Z:3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14959" + ], + "x-ms-request-id": [ + "3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "x-ms-correlation-request-id": [ + "3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213401Z:3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14959" + ], + "x-ms-request-id": [ + "3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "x-ms-correlation-request-id": [ + "3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213401Z:3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14959" + ], + "x-ms-request-id": [ + "3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "x-ms-correlation-request-id": [ + "3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213401Z:3b616e1e-90ef-45e0-a63a-1d925e4b98a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14958" + ], + "x-ms-request-id": [ + "29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "x-ms-correlation-request-id": [ + "29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213416Z:29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14958" + ], + "x-ms-request-id": [ + "29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "x-ms-correlation-request-id": [ + "29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213416Z:29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14958" + ], + "x-ms-request-id": [ + "29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "x-ms-correlation-request-id": [ + "29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213416Z:29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14958" + ], + "x-ms-request-id": [ + "29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "x-ms-correlation-request-id": [ + "29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213416Z:29893577-67ce-4b17-87d2-45fb3ba76618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14957" + ], + "x-ms-request-id": [ + "c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "x-ms-correlation-request-id": [ + "c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213432Z:c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14957" + ], + "x-ms-request-id": [ + "c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "x-ms-correlation-request-id": [ + "c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213432Z:c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14957" + ], + "x-ms-request-id": [ + "c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "x-ms-correlation-request-id": [ + "c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213432Z:c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14957" + ], + "x-ms-request-id": [ + "c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "x-ms-correlation-request-id": [ + "c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213432Z:c50ed264-7ced-4aa6-b344-cb77f44a960c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14956" + ], + "x-ms-request-id": [ + "e11266fd-701b-45c2-a684-99236961fafb" + ], + "x-ms-correlation-request-id": [ + "e11266fd-701b-45c2-a684-99236961fafb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213447Z:e11266fd-701b-45c2-a684-99236961fafb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14956" + ], + "x-ms-request-id": [ + "e11266fd-701b-45c2-a684-99236961fafb" + ], + "x-ms-correlation-request-id": [ + "e11266fd-701b-45c2-a684-99236961fafb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213447Z:e11266fd-701b-45c2-a684-99236961fafb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14956" + ], + "x-ms-request-id": [ + "e11266fd-701b-45c2-a684-99236961fafb" + ], + "x-ms-correlation-request-id": [ + "e11266fd-701b-45c2-a684-99236961fafb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213447Z:e11266fd-701b-45c2-a684-99236961fafb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14956" + ], + "x-ms-request-id": [ + "e11266fd-701b-45c2-a684-99236961fafb" + ], + "x-ms-correlation-request-id": [ + "e11266fd-701b-45c2-a684-99236961fafb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213447Z:e11266fd-701b-45c2-a684-99236961fafb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:34:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "x-ms-correlation-request-id": [ + "11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213503Z:11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "x-ms-correlation-request-id": [ + "11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213503Z:11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "x-ms-correlation-request-id": [ + "11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213503Z:11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "x-ms-correlation-request-id": [ + "11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213503Z:11444443-5d6a-46a3-ad00-1229b27d5f76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "x-ms-correlation-request-id": [ + "b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213518Z:b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "x-ms-correlation-request-id": [ + "b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213518Z:b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "x-ms-correlation-request-id": [ + "b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213518Z:b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "x-ms-correlation-request-id": [ + "b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213518Z:b6378cf7-ba86-4196-8fa8-f6345062c601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14953" + ], + "x-ms-request-id": [ + "9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "x-ms-correlation-request-id": [ + "9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213534Z:9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14953" + ], + "x-ms-request-id": [ + "9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "x-ms-correlation-request-id": [ + "9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213534Z:9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14953" + ], + "x-ms-request-id": [ + "9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "x-ms-correlation-request-id": [ + "9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213534Z:9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14953" + ], + "x-ms-request-id": [ + "9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "x-ms-correlation-request-id": [ + "9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213534Z:9b39b7b1-a376-4dc1-a257-4c5d5d7a68e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14952" + ], + "x-ms-request-id": [ + "58719f58-53d0-4984-9294-60bee8e24086" + ], + "x-ms-correlation-request-id": [ + "58719f58-53d0-4984-9294-60bee8e24086" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213549Z:58719f58-53d0-4984-9294-60bee8e24086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14952" + ], + "x-ms-request-id": [ + "58719f58-53d0-4984-9294-60bee8e24086" + ], + "x-ms-correlation-request-id": [ + "58719f58-53d0-4984-9294-60bee8e24086" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T213549Z:58719f58-53d0-4984-9294-60bee8e24086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 21:35:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14952" ], + "x-ms-request-id": [ + "58719f58-53d0-4984-9294-60bee8e24086" + ], "x-ms-correlation-request-id": [ - "6c52df32-f333-4a76-859c-9751fbc3b598" + "58719f58-53d0-4984-9294-60bee8e24086" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185033Z:6c52df32-f333-4a76-859c-9751fbc3b598" + "WESTUS:20150714T213549Z:58719f58-53d0-4984-9294-60bee8e24086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:50:32 GMT" + "Tue, 14 Jul 2015 21:35:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1565,51 +11822,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "d040287c-0c45-4ddb-85b6-d4177c93a950" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14952" + ], + "x-ms-request-id": [ + "58719f58-53d0-4984-9294-60bee8e24086" ], "x-ms-correlation-request-id": [ - "c4ddd6b8-1a77-4c67-b847-25cdbaaaee27" + "58719f58-53d0-4984-9294-60bee8e24086" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185103Z:c4ddd6b8-1a77-4c67-b847-25cdbaaaee27" + "WESTUS:20150714T213549Z:58719f58-53d0-4984-9294-60bee8e24086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:51:03 GMT" + "Tue, 14 Jul 2015 21:35:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1617,51 +11873,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "18e84924-6b39-4d51-9c81-e0983d82f9a9" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14951" + ], + "x-ms-request-id": [ + "fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" ], "x-ms-correlation-request-id": [ - "c860d187-0e61-4e39-b87a-f2f8302f25ca" + "fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185134Z:c860d187-0e61-4e39-b87a-f2f8302f25ca" + "WESTUS:20150714T213604Z:fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:51:34 GMT" + "Tue, 14 Jul 2015 21:36:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1669,51 +11924,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "c7041b27-d4a1-4fa0-910d-b654d55fb28e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14951" + ], + "x-ms-request-id": [ + "fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" ], "x-ms-correlation-request-id": [ - "d454d9a7-7960-49f0-a8f5-9f4335e0c8a5" + "fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185205Z:d454d9a7-7960-49f0-a8f5-9f4335e0c8a5" + "WESTUS:20150714T213604Z:fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:52:04 GMT" + "Tue, 14 Jul 2015 21:36:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/ce7f0248-a4d1-405a-add4-547e0d7f9e0d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlN2YwMjQ4LWE0ZDEtNDA1YS1hZGQ0LTU0N2UwZDdmOWUwZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ce7f0248-a4d1-405a-add4-547e0d7f9e0d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T11:44:51.4412612-07:00\",\r\n \"endTime\": \"2015-06-16T11:52:20.4754605-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1721,51 +11975,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "36b01b94-3049-4165-b781-7628bd8465e2" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14951" + ], + "x-ms-request-id": [ + "fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" ], "x-ms-correlation-request-id": [ - "e39420d1-f55a-48f5-9efa-252199548043" + "fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185236Z:e39420d1-f55a-48f5-9efa-252199548043" + "WESTUS:20150714T213604Z:fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:52:35 GMT" + "Tue, 14 Jul 2015 21:36:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/virtualMachines/vm5280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDEzMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyODA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/availabilitySets/AS6907\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest9365.blob.core.windows.net/pslibtest9414/ospslibtest2926.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Network/networkInterfaces/azsmnet9590\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest1309/providers/Microsoft.Compute/virtualMachines/vm5280\",\r\n \"name\": \"vm5280\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "1581" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1773,38 +12026,40 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "fddd1763-7c51-44e9-82d7-4dc6a35d2b68" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14951" + ], + "x-ms-request-id": [ + "fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" ], "x-ms-correlation-request-id": [ - "e8f55f6e-07ce-4ca5-9c59-70c5c77c208d" + "fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185237Z:e8f55f6e-07ce-4ca5-9c59-70c5c77c208d" + "WESTUS:20150714T213604Z:fb72bbb0-b8fe-4d72-a5a2-03b7d0c4d2f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:52:36 GMT" + "Tue, 14 Jul 2015 21:36:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest1309?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDEzMDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -1825,17 +12080,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" ], "x-ms-request-id": [ - "c66844fd-87ea-4871-89b5-cdf677468242" + "ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "x-ms-correlation-request-id": [ - "c66844fd-87ea-4871-89b5-cdf677468242" + "ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185241Z:c66844fd-87ea-4871-89b5-cdf677468242" + "WESTUS:20150714T213620Z:ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,23 +12099,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:52:40 GMT" + "Tue, 14 Jul 2015 21:36:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1880,16 +12132,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14950" ], "x-ms-request-id": [ - "45b5d0d0-e9f9-45b6-a0c0-19757e2ebfb7" + "ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "x-ms-correlation-request-id": [ - "45b5d0d0-e9f9-45b6-a0c0-19757e2ebfb7" + "ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185242Z:45b5d0d0-e9f9-45b6-a0c0-19757e2ebfb7" + "WESTUS:20150714T213620Z:ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1898,23 +12150,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:52:41 GMT" + "Tue, 14 Jul 2015 21:36:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1934,16 +12183,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14950" ], "x-ms-request-id": [ - "aea62dfa-0444-4087-bfdc-cdb1484e3bfb" + "ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "x-ms-correlation-request-id": [ - "aea62dfa-0444-4087-bfdc-cdb1484e3bfb" + "ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185257Z:aea62dfa-0444-4087-bfdc-cdb1484e3bfb" + "WESTUS:20150714T213620Z:ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1952,23 +12201,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:52:57 GMT" + "Tue, 14 Jul 2015 21:36:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1988,16 +12234,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14950" ], "x-ms-request-id": [ - "6dbdfddc-453b-4690-8b69-2d324d6198b5" + "ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "x-ms-correlation-request-id": [ - "6dbdfddc-453b-4690-8b69-2d324d6198b5" + "ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185313Z:6dbdfddc-453b-4690-8b69-2d324d6198b5" + "WESTUS:20150714T213620Z:ccde7234-e4d8-41e3-aed0-38175ff2d5de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2006,23 +12252,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:53:12 GMT" + "Tue, 14 Jul 2015 21:36:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2042,16 +12285,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14949" ], "x-ms-request-id": [ - "99ece407-5989-4271-89f5-0945470a9669" + "c2ed701d-c750-4e09-9743-2819d5531205" ], "x-ms-correlation-request-id": [ - "99ece407-5989-4271-89f5-0945470a9669" + "c2ed701d-c750-4e09-9743-2819d5531205" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185328Z:99ece407-5989-4271-89f5-0945470a9669" + "WESTUS:20150714T213635Z:c2ed701d-c750-4e09-9743-2819d5531205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2060,23 +12303,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:53:27 GMT" + "Tue, 14 Jul 2015 21:36:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2096,16 +12336,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14949" ], "x-ms-request-id": [ - "15b92c54-3fb9-489f-b445-bb3d3c11e4e6" + "c2ed701d-c750-4e09-9743-2819d5531205" ], "x-ms-correlation-request-id": [ - "15b92c54-3fb9-489f-b445-bb3d3c11e4e6" + "c2ed701d-c750-4e09-9743-2819d5531205" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185344Z:15b92c54-3fb9-489f-b445-bb3d3c11e4e6" + "WESTUS:20150714T213635Z:c2ed701d-c750-4e09-9743-2819d5531205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2114,23 +12354,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:53:43 GMT" + "Tue, 14 Jul 2015 21:36:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2150,16 +12387,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14949" ], "x-ms-request-id": [ - "376232ed-a6bf-4f1e-adef-c97feda623af" + "c2ed701d-c750-4e09-9743-2819d5531205" ], "x-ms-correlation-request-id": [ - "376232ed-a6bf-4f1e-adef-c97feda623af" + "c2ed701d-c750-4e09-9743-2819d5531205" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185359Z:376232ed-a6bf-4f1e-adef-c97feda623af" + "WESTUS:20150714T213635Z:c2ed701d-c750-4e09-9743-2819d5531205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2168,23 +12405,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:53:59 GMT" + "Tue, 14 Jul 2015 21:36:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2204,16 +12438,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14949" ], "x-ms-request-id": [ - "27b25910-fa4b-476d-b4bc-84d929776890" + "c2ed701d-c750-4e09-9743-2819d5531205" ], "x-ms-correlation-request-id": [ - "27b25910-fa4b-476d-b4bc-84d929776890" + "c2ed701d-c750-4e09-9743-2819d5531205" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185414Z:27b25910-fa4b-476d-b4bc-84d929776890" + "WESTUS:20150714T213635Z:c2ed701d-c750-4e09-9743-2819d5531205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2222,23 +12456,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:54:14 GMT" + "Tue, 14 Jul 2015 21:36:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2258,16 +12489,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14948" ], "x-ms-request-id": [ - "1996601b-1a68-49eb-aa99-2ef096745118" + "f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "x-ms-correlation-request-id": [ - "1996601b-1a68-49eb-aa99-2ef096745118" + "f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185430Z:1996601b-1a68-49eb-aa99-2ef096745118" + "WESTUS:20150714T213651Z:f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2276,23 +12507,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:54:30 GMT" + "Tue, 14 Jul 2015 21:36:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2312,16 +12540,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14948" ], "x-ms-request-id": [ - "f5a81674-3f61-4431-bcaa-d8e845cc3c0e" + "f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "x-ms-correlation-request-id": [ - "f5a81674-3f61-4431-bcaa-d8e845cc3c0e" + "f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185445Z:f5a81674-3f61-4431-bcaa-d8e845cc3c0e" + "WESTUS:20150714T213651Z:f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2330,23 +12558,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:54:45 GMT" + "Tue, 14 Jul 2015 21:36:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2366,16 +12591,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14948" ], "x-ms-request-id": [ - "368cb32e-9a43-4ef0-aa4f-d59392b57e2c" + "f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "x-ms-correlation-request-id": [ - "368cb32e-9a43-4ef0-aa4f-d59392b57e2c" + "f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185501Z:368cb32e-9a43-4ef0-aa4f-d59392b57e2c" + "WESTUS:20150714T213651Z:f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2384,23 +12609,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:55:00 GMT" + "Tue, 14 Jul 2015 21:36:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2423,13 +12645,13 @@ "14948" ], "x-ms-request-id": [ - "6487a147-fb27-4d37-b9fd-cd57a7b09971" + "f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "x-ms-correlation-request-id": [ - "6487a147-fb27-4d37-b9fd-cd57a7b09971" + "f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185516Z:6487a147-fb27-4d37-b9fd-cd57a7b09971" + "WESTUS:20150714T213651Z:f19cbb1e-4a8c-4cca-abdc-bc03e2e29dbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2438,23 +12660,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:55:15 GMT" + "Tue, 14 Jul 2015 21:36:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2477,13 +12696,13 @@ "14947" ], "x-ms-request-id": [ - "260df13d-d6da-43eb-abc3-038643cda5a7" + "72044cba-376a-4750-901d-9d26ab1c0317" ], "x-ms-correlation-request-id": [ - "260df13d-d6da-43eb-abc3-038643cda5a7" + "72044cba-376a-4750-901d-9d26ab1c0317" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185532Z:260df13d-d6da-43eb-abc3-038643cda5a7" + "WESTUS:20150714T213706Z:72044cba-376a-4750-901d-9d26ab1c0317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2492,23 +12711,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:55:31 GMT" + "Tue, 14 Jul 2015 21:37:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2528,16 +12744,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14947" ], "x-ms-request-id": [ - "f6188ee0-06a5-463a-ada9-1e63069e60f2" + "72044cba-376a-4750-901d-9d26ab1c0317" ], "x-ms-correlation-request-id": [ - "f6188ee0-06a5-463a-ada9-1e63069e60f2" + "72044cba-376a-4750-901d-9d26ab1c0317" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185547Z:f6188ee0-06a5-463a-ada9-1e63069e60f2" + "WESTUS:20150714T213706Z:72044cba-376a-4750-901d-9d26ab1c0317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2546,23 +12762,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:55:46 GMT" + "Tue, 14 Jul 2015 21:37:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2582,16 +12795,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14947" ], "x-ms-request-id": [ - "25e5fa99-d17f-4926-9b71-6e90b7decbce" + "72044cba-376a-4750-901d-9d26ab1c0317" ], "x-ms-correlation-request-id": [ - "25e5fa99-d17f-4926-9b71-6e90b7decbce" + "72044cba-376a-4750-901d-9d26ab1c0317" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185602Z:25e5fa99-d17f-4926-9b71-6e90b7decbce" + "WESTUS:20150714T213706Z:72044cba-376a-4750-901d-9d26ab1c0317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2600,23 +12813,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:56:01 GMT" + "Tue, 14 Jul 2015 21:37:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2636,16 +12846,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14947" ], "x-ms-request-id": [ - "95f5dfa7-1197-4778-925e-2789137f8cdf" + "72044cba-376a-4750-901d-9d26ab1c0317" ], "x-ms-correlation-request-id": [ - "95f5dfa7-1197-4778-925e-2789137f8cdf" + "72044cba-376a-4750-901d-9d26ab1c0317" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185618Z:95f5dfa7-1197-4778-925e-2789137f8cdf" + "WESTUS:20150714T213706Z:72044cba-376a-4750-901d-9d26ab1c0317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2654,23 +12864,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:56:18 GMT" + "Tue, 14 Jul 2015 21:37:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2686,20 +12893,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14946" ], "x-ms-request-id": [ - "f9ed6dd8-59ed-4fea-a6c4-8783c96fab6e" + "d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "x-ms-correlation-request-id": [ - "f9ed6dd8-59ed-4fea-a6c4-8783c96fab6e" + "d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185634Z:f9ed6dd8-59ed-4fea-a6c4-8783c96fab6e" + "WESTUS:20150714T213722Z:d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2708,23 +12912,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:56:34 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 21:37:21 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2740,20 +12938,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14946" ], "x-ms-request-id": [ - "351b7c49-f41a-4849-b2a8-9b5f2c22b857" + "d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "x-ms-correlation-request-id": [ - "351b7c49-f41a-4849-b2a8-9b5f2c22b857" + "d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185650Z:351b7c49-f41a-4849-b2a8-9b5f2c22b857" + "WESTUS:20150714T213722Z:d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2762,23 +12957,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:56:49 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 21:37:21 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2794,20 +12983,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14946" ], "x-ms-request-id": [ - "3c4314fa-4a2b-4c2f-8ee3-5f27f2a22fc5" + "d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "x-ms-correlation-request-id": [ - "3c4314fa-4a2b-4c2f-8ee3-5f27f2a22fc5" + "d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185705Z:3c4314fa-4a2b-4c2f-8ee3-5f27f2a22fc5" + "WESTUS:20150714T213722Z:d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2816,23 +13002,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:57:05 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 21:37:21 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxMzA5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TXpBNUxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5MDQ4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVE1TURRNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2849,16 +13029,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14946" ], "x-ms-request-id": [ - "3537c81f-f02f-4d59-87db-e53329bc9017" + "d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "x-ms-correlation-request-id": [ - "3537c81f-f02f-4d59-87db-e53329bc9017" + "d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185721Z:3537c81f-f02f-4d59-87db-e53329bc9017" + "WESTUS:20150714T213722Z:d4ca48b6-a68d-474b-b36b-76ec1d3dacf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2867,7 +13047,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 18:57:20 GMT" + "Tue, 14 Jul 2015 21:37:21 GMT" ] }, "StatusCode": 200 @@ -2875,26 +13055,27 @@ ], "Names": { "TestNicVirtualMachineReference": [ - "pslibtest1309", - "as6907", - "pslibtest9365" + "pslibtest9048", + "as9620", + "pslibtest2677" ], "CreateVNET": [ - "azsmnet489", - "azsmnet5175" + "azsmnet6370", + "azsmnet9813" ], "CreateNIC": [ - "azsmnet9590", - "azsmnet692" + "azsmnet6463", + "azsmnet5364" ], "CreateDefaultVMInput": [ - "pslibtest9414", - "pslibtest7643", - "pslibtest2926", - "vm5280" + "pslibtest9471", + "pslibtest4666", + "pslibtest2772", + "vm2975", + "Microsoft.Compute/virtualMachines2204" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index e74397641aca7..2054725ad4b67 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2403e8b2-6177-4f2a-8b3f-aad61cd6ad2a" + "acf28170-24eb-4e83-a244-4bbcffc672b9" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "2ba7be67-5252-482b-a9d7-e26ec5937969" + "14e50899-5c5b-4062-be98-6d6b7f9bc38d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185809Z:2ba7be67-5252-482b-a9d7-e26ec5937969" + "WESTUS:20150715T011640Z:14e50899-5c5b-4062-be98-6d6b7f9bc38d" ], "Date": [ - "Tue, 16 Jun 2015 18:58:08 GMT" + "Wed, 15 Jul 2015 01:16:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest97661?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDk3NjYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661\",\r\n \"name\": \"pslibtest97661\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "188" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,107 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "671c4e40-9927-4c4d-95c3-fc0b8ed9f26d" - ], - "x-ms-correlation-request-id": [ - "671c4e40-9927-4c4d-95c3-fc0b8ed9f26d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T185811Z:671c4e40-9927-4c4d-95c3-fc0b8ed9f26d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 16 Jun 2015 18:58:11 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest97661?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDk3NjYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661\",\r\n \"name\": \"pslibtest97661\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "188" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "acf28170-24eb-4e83-a244-4bbcffc672b9" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "d762b4b8-8e87-443b-99da-139896c1be0b" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-correlation-request-id": [ - "d762b4b8-8e87-443b-99da-139896c1be0b" + "14e50899-5c5b-4062-be98-6d6b7f9bc38d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185856Z:d762b4b8-8e87-443b-99da-139896c1be0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150715T011640Z:14e50899-5c5b-4062-be98-6d6b7f9bc38d" ], "Date": [ - "Tue, 16 Jun 2015 18:58:56 GMT" + "Wed, 15 Jul 2015 01:16:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Storage/storageAccounts/pslibtest8849?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0ODg0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "e51972a0-a6ef-494e-88d4-351623288f6f" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +128,48 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4350d93-b444-4872-8e97-f7e66ce378ae" + "acf28170-24eb-4e83-a244-4bbcffc672b9" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/f4350d93-b444-4872-8e97-f7e66ce378ae?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-correlation-request-id": [ - "658a9187-0ff7-4fd1-a395-8f66a3822889" + "14e50899-5c5b-4062-be98-6d6b7f9bc38d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185817Z:658a9187-0ff7-4fd1-a395-8f66a3822889" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150715T011640Z:14e50899-5c5b-4062-be98-6d6b7f9bc38d" ], "Date": [ - "Tue, 16 Jun 2015 18:58:16 GMT" + "Wed, 15 Jul 2015 01:16:39 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/f4350d93-b444-4872-8e97-f7e66ce378ae?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Y0MzUwZDkzLWI0NDQtNDg3Mi04ZTk3LWY3ZTY2Y2UzNzhhZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "13f527f5-40d3-4527-8c50-9ec1086c50a9" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f591bb0-b180-4b2d-a658-b768c1fbcc77" + "acf28170-24eb-4e83-a244-4bbcffc672b9" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/f4350d93-b444-4872-8e97-f7e66ce378ae?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "434903b9-5ac1-4c1e-a49d-48507017d635" + "14e50899-5c5b-4062-be98-6d6b7f9bc38d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185818Z:434903b9-5ac1-4c1e-a49d-48507017d635" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150715T011640Z:14e50899-5c5b-4062-be98-6d6b7f9bc38d" ], "Date": [ - "Tue, 16 Jun 2015 18:58:17 GMT" + "Wed, 15 Jul 2015 01:16:39 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/f4350d93-b444-4872-8e97-f7e66ce378ae?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Y0MzUwZDkzLWI0NDQtNDg3Mi04ZTk3LWY3ZTY2Y2UzNzhhZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "1bd3d7a4-6879-4d95-8161-eed2358b14c4" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061\",\r\n \"name\": \"pslibtest70061\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +238,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "d13ac5e6-227a-4492-a4ba-ae184a4c8b08" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "x-ms-request-id": [ + "64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], "x-ms-correlation-request-id": [ - "7fae561b-3fee-44e8-801e-e8b86f896f48" + "64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185843Z:7fae561b-3fee-44e8-801e-e8b86f896f48" + "WESTUS:20150715T011642Z:64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 18:58:43 GMT" + "Wed, 15 Jul 2015 01:16:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "221d95f3-d4ba-4565-9742-070981bb29f6" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Storage/storageAccounts/pslibtest8849\",\r\n \"name\": \"pslibtest8849\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest8849.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest8849.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest8849.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T18:58:13.8702715Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061\",\r\n \"name\": \"pslibtest70061\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "706" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,54 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "55523a61-297d-41da-b998-da299e3ac265" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "x-ms-request-id": [ + "64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], "x-ms-correlation-request-id": [ - "476a018c-b986-48d5-9a44-d2b4200a3af7" + "64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185853Z:476a018c-b986-48d5-9a44-d2b4200a3af7" + "WESTUS:20150715T011642Z:64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 18:58:53 GMT" + "Wed, 15 Jul 2015 01:16:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/publicIPAddresses/azsmnet4821/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0NDgyMS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2279\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4821\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/publicIPAddresses/azsmnet4821\",\r\n \"etag\": \"W/\\\"f1d21c45-05c3-49a6-8044-2172667dc43a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2279\",\r\n \"fqdn\": \"azsmnet2279.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061\",\r\n \"name\": \"pslibtest70061\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,14 +346,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "d3fdaf98-eab3-42c6-a88b-1afaab702980" + "64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/d3fdaf98-eab3-42c6-a88b-1afaab702980?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011642Z:64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,42 +364,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "9ade6dc5-948f-455a-a236-00dc5a159936" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T185902Z:9ade6dc5-948f-455a-a236-00dc5a159936" - ], "Date": [ - "Tue, 16 Jun 2015 18:59:02 GMT" + "Wed, 15 Jul 2015 01:16:42 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/d3fdaf98-eab3-42c6-a88b-1afaab702980?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QzZmRhZjk4LWVhYjMtNDJjNi1hODhiLTFhZmFhYjcwMjk4MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061\",\r\n \"name\": \"pslibtest70061\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,8 +400,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], "x-ms-request-id": [ - "eaf19162-e602-427a-b3e1-2e26210bc737" + "64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" + ], + "x-ms-correlation-request-id": [ + "64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011642Z:64c9f05b-a7e8-46e4-ae6d-799c5e446fcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,39 +418,32 @@ "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": [ - "2b19e0b2-17d2-4c92-af39-894756184ea5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T185903Z:2b19e0b2-17d2-4c92-af39-894756184ea5" - ], "Date": [ - "Tue, 16 Jun 2015 18:59:03 GMT" + "Wed, 15 Jul 2015 01:16:42 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/publicIPAddresses/azsmnet4821/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0NDgyMS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4821\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/publicIPAddresses/azsmnet4821\",\r\n \"etag\": \"W/\\\"8d988f47-402a-4704-a3c6-e0cafffefcb7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2279\",\r\n \"fqdn\": \"azsmnet2279.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061\",\r\n \"name\": \"pslibtest70061\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "581" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,8 +454,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "5e8675cb-c2c2-4a14-a12d-eea0d3fa41db" + "b248eec9-af42-4adc-9027-8cd129fed25b" + ], + "x-ms-correlation-request-id": [ + "b248eec9-af42-4adc-9027-8cd129fed25b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011724Z:b248eec9-af42-4adc-9027-8cd129fed25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,48 +472,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"8d988f47-402a-4704-a3c6-e0cafffefcb7\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "7c8fa3d2-972c-4ad4-a6f6-b50abdfb2de7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T185903Z:7c8fa3d2-972c-4ad4-a6f6-b50abdfb2de7" - ], "Date": [ - "Tue, 16 Jun 2015 18:59:03 GMT" + "Wed, 15 Jul 2015 01:17:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/virtualnetworks/azsmnet483?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ4Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet1839\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet483\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/virtualNetworks/azsmnet483\",\r\n \"etag\": \"W/\\\"9335cbca-4e19-44a4-95be-50e45ff0b538\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet1839\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/virtualNetworks/azsmnet483/subnets/azsmnet1839\",\r\n \"etag\": \"W/\\\"9335cbca-4e19-44a4-95be-50e45ff0b538\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061\",\r\n \"name\": \"pslibtest70061\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,14 +508,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "a61eabfc-fd5d-4ccb-b9f7-fce636b1121e" + "b248eec9-af42-4adc-9027-8cd129fed25b" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/a61eabfc-fd5d-4ccb-b9f7-fce636b1121e?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "b248eec9-af42-4adc-9027-8cd129fed25b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011724Z:b248eec9-af42-4adc-9027-8cd129fed25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,42 +526,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-correlation-request-id": [ - "fcdeb1c6-3cdb-4c0d-9539-644ef8c6ee14" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T185907Z:fcdeb1c6-3cdb-4c0d-9539-644ef8c6ee14" - ], "Date": [ - "Tue, 16 Jun 2015 18:59:06 GMT" + "Wed, 15 Jul 2015 01:17:24 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/a61eabfc-fd5d-4ccb-b9f7-fce636b1121e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E2MWVhYmZjLWZkNWQtNGNjYi1iOWY3LWZjZTYzNmIxMTIxZT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061\",\r\n \"name\": \"pslibtest70061\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,8 +562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "360db64f-755d-4b37-beed-aaa789b0e009" + "b248eec9-af42-4adc-9027-8cd129fed25b" + ], + "x-ms-correlation-request-id": [ + "b248eec9-af42-4adc-9027-8cd129fed25b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011724Z:b248eec9-af42-4adc-9027-8cd129fed25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,39 +580,32 @@ "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": [ - "fc00faf3-630d-4d6f-ab3e-8bdd68f07d98" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T185908Z:fc00faf3-630d-4d6f-ab3e-8bdd68f07d98" - ], "Date": [ - "Tue, 16 Jun 2015 18:59:07 GMT" + "Wed, 15 Jul 2015 01:17:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/virtualnetworks/azsmnet483/subnets/azsmnet1839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ4My9zdWJuZXRzL2F6c21uZXQxODM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1839\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/virtualNetworks/azsmnet483/subnets/azsmnet1839\",\r\n \"etag\": \"W/\\\"2816541f-34b7-4478-a36e-1c9fde876f4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061\",\r\n \"name\": \"pslibtest70061\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "0240815d-786a-4935-9b30-31c747d3d17f" + "b248eec9-af42-4adc-9027-8cd129fed25b" + ], + "x-ms-correlation-request-id": [ + "b248eec9-af42-4adc-9027-8cd129fed25b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011724Z:b248eec9-af42-4adc-9027-8cd129fed25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,48 +634,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"2816541f-34b7-4478-a36e-1c9fde876f4b\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "f557b216-c57c-4f57-9e9d-63c17aeffaa3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T185908Z:f557b216-c57c-4f57-9e9d-63c17aeffaa3" - ], "Date": [ - "Tue, 16 Jun 2015 18:59:07 GMT" + "Wed, 15 Jul 2015 01:17:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0Mzk0Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/virtualNetworks/azsmnet483/subnets/azsmnet1839\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/publicIPAddresses/azsmnet4821\"\r\n }\r\n },\r\n \"name\": \"azsmnet9618\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet3947\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "717" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3947\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947\",\r\n \"etag\": \"W/\\\"da7f955e-ce51-4383-b542-3cbc0edab8d9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9618\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947/ipConfigurations/azsmnet9618\",\r\n \"etag\": \"W/\\\"da7f955e-ce51-4383-b542-3cbc0edab8d9\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/publicIPAddresses/azsmnet4821\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/virtualNetworks/azsmnet483/subnets/azsmnet1839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1327" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -776,54 +670,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "a5e54782-c8cc-4241-b268-6b6500a9035b" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/a5e54782-c8cc-4241-b268-6b6500a9035b?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "25e76301-991a-4c28-a204-dac794e410d6" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/25e76301-991a-4c28-a204-dac794e410d6?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "92df0efd-e31a-4396-8573-f2c23e92b8dd" + "05cfefb1-a7c4-409f-864d-027a4319e168" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185912Z:92df0efd-e31a-4396-8573-f2c23e92b8dd" + "WESTUS:20150715T011647Z:05cfefb1-a7c4-409f-864d-027a4319e168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:11 GMT" + "Wed, 15 Jul 2015 01:16:47 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/a5e54782-c8cc-4241-b268-6b6500a9035b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E1ZTU0NzgyLWM4Y2MtNDI0MS1iMjY4LTZiNjUwMGE5MDM1Yj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,48 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ed5df307-935a-4083-a066-d60eeef83ac3" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "25e76301-991a-4c28-a204-dac794e410d6" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/25e76301-991a-4c28-a204-dac794e410d6?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "b90320de-350d-44ea-8a5b-193c02a0d4ac" + "05cfefb1-a7c4-409f-864d-027a4319e168" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185913Z:b90320de-350d-44ea-8a5b-193c02a0d4ac" + "WESTUS:20150715T011647Z:05cfefb1-a7c4-409f-864d-027a4319e168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:12 GMT" + "Wed, 15 Jul 2015 01:16:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0Mzk0Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3947\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947\",\r\n \"etag\": \"W/\\\"da7f955e-ce51-4383-b542-3cbc0edab8d9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9618\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947/ipConfigurations/azsmnet9618\",\r\n \"etag\": \"W/\\\"da7f955e-ce51-4383-b542-3cbc0edab8d9\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/publicIPAddresses/azsmnet4821\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/virtualNetworks/azsmnet483/subnets/azsmnet1839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1327" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,57 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "7c9e8259-533a-4378-b1a2-9237a21fe124" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "25e76301-991a-4c28-a204-dac794e410d6" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"da7f955e-ce51-4383-b542-3cbc0edab8d9\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/25e76301-991a-4c28-a204-dac794e410d6?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "94730605-3ee2-4de5-b209-2d4fbeb8f635" + "05cfefb1-a7c4-409f-864d-027a4319e168" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185913Z:94730605-3ee2-4de5-b209-2d4fbeb8f635" + "WESTUS:20150715T011647Z:05cfefb1-a7c4-409f-864d-027a4319e168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:12 GMT" + "Wed, 15 Jul 2015 01:16:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/availabilitySets/as8344?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hdmFpbGFiaWxpdHlTZXRzL2FzODM0ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as8344\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "133" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/availabilitySets/as8344\",\r\n \"name\": \"as8344\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "404" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -947,54 +862,54 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "25" ], "x-ms-request-id": [ - "156a50fc-55ee-4eae-bb79-f14612d99ded" + "25e76301-991a-4c28-a204-dac794e410d6" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/25e76301-991a-4c28-a204-dac794e410d6?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "1303b5c1-7f59-4d63-8784-741989083699" + "05cfefb1-a7c4-409f-864d-027a4319e168" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185918Z:1303b5c1-7f59-4d63-8784-741989083699" + "WESTUS:20150715T011647Z:05cfefb1-a7c4-409f-864d-027a4319e168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:17 GMT" + "Wed, 15 Jul 2015 01:16:47 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8849.blob.core.windows.net/pslibtest4145/ospslibtest1935.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest97661\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/availabilitySets/as8344\"\r\n }\r\n },\r\n \"name\": \"vm5592\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/25e76301-991a-4c28-a204-dac794e410d6?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI1ZTc2MzAxLTk5MWEtNGMyOC1hMjA0LWRhYzc5NGU0MTBkNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1324" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/availabilitySets/AS8344\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8849.blob.core.windows.net/pslibtest4145/ospslibtest1935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592\",\r\n \"name\": \"vm5592\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1583" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,14 +920,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f55264c5-09fd-42d8-b2f1-853715b24e26?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "f55264c5-09fd-42d8-b2f1-853715b24e26" + "83fb033f-ee78-4fe9-b816-43c0a6b7e169" ], "Cache-Control": [ "no-cache" @@ -1021,35 +930,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "708c132b-0a9a-42b5-8919-2c04e6c79852" + "24018058-8684-4aaf-9e69-4617147c0c47" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185922Z:708c132b-0a9a-42b5-8919-2c04e6c79852" + "WESTUS:20150715T011713Z:24018058-8684-4aaf-9e69-4617147c0c47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:21 GMT" + "Wed, 15 Jul 2015 01:17:12 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f55264c5-09fd-42d8-b2f1-853715b24e26?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y1NTI2NGM1LTA5ZmQtNDJkOC1iMmYxLTg1MzcxNWIyNGUyNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/25e76301-991a-4c28-a204-dac794e410d6?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI1ZTc2MzAxLTk5MWEtNGMyOC1hMjA0LWRhYzc5NGU0MTBkNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f55264c5-09fd-42d8-b2f1-853715b24e26\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:20.1968753-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1060,11 +972,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "a67f2a0b-4af9-4a1e-ad0e-31524faae459" + "83fb033f-ee78-4fe9-b816-43c0a6b7e169" ], "Cache-Control": [ "no-cache" @@ -1074,34 +983,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14998" ], "x-ms-correlation-request-id": [ - "caa4e3fc-bd7f-4c5e-a0fd-8e33f6a0add0" + "24018058-8684-4aaf-9e69-4617147c0c47" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185923Z:caa4e3fc-bd7f-4c5e-a0fd-8e33f6a0add0" + "WESTUS:20150715T011713Z:24018058-8684-4aaf-9e69-4617147c0c47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:22 GMT" + "Wed, 15 Jul 2015 01:17:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/25e76301-991a-4c28-a204-dac794e410d6?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI1ZTc2MzAxLTk5MWEtNGMyOC1hMjA0LWRhYzc5NGU0MTBkNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/availabilitySets/AS8344\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8849.blob.core.windows.net/pslibtest4145/ospslibtest1935.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Network/networkInterfaces/azsmnet3947\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592\",\r\n \"name\": \"vm5592\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1583" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1112,11 +1024,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "79ff8c54-9477-4e42-a766-7c9b3be02b2e" + "83fb033f-ee78-4fe9-b816-43c0a6b7e169" ], "Cache-Control": [ "no-cache" @@ -1126,34 +1035,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14998" ], "x-ms-correlation-request-id": [ - "7c51d8d0-9dfa-47ac-b5eb-39230df7e3fb" + "24018058-8684-4aaf-9e69-4617147c0c47" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185923Z:7c51d8d0-9dfa-47ac-b5eb-39230df7e3fb" + "WESTUS:20150715T011713Z:24018058-8684-4aaf-9e69-4617147c0c47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:22 GMT" + "Wed, 15 Jul 2015 01:17:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/start?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/25e76301-991a-4c28-a204-dac794e410d6?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI1ZTc2MzAxLTk5MWEtNGMyOC1hMjA0LWRhYzc5NGU0MTBkNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1161,54 +1076,51 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/69523d04-63af-4272-80aa-c89c4905de1a?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "69523d04-63af-4272-80aa-c89c4905de1a" + "83fb033f-ee78-4fe9-b816-43c0a6b7e169" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/69523d04-63af-4272-80aa-c89c4905de1a?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-correlation-request-id": [ - "9f0ac6c6-d7a5-47fa-a12a-f06d45611521" + "24018058-8684-4aaf-9e69-4617147c0c47" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185923Z:9f0ac6c6-d7a5-47fa-a12a-f06d45611521" + "WESTUS:20150715T011713Z:24018058-8684-4aaf-9e69-4617147c0c47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:22 GMT" + "Wed, 15 Jul 2015 01:17:12 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/start?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619\",\r\n \"name\": \"pslibtest619\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest619.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest619.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest619.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:16:44.5458078Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "701" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1216,54 +1128,48 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "f105dabb-8224-432c-86af-7b26a7ca5550" + "666154e0-5ffe-4d66-91f7-c0bd3ebb1015" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "42887e40-b085-4799-8b97-5e5e2c6119eb" + "6afac6ed-f946-442a-8f4d-7e2e5b0c9c71" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185924Z:42887e40-b085-4799-8b97-5e5e2c6119eb" + "WESTUS:20150715T011723Z:6afac6ed-f946-442a-8f4d-7e2e5b0c9c71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:24 GMT" + "Wed, 15 Jul 2015 01:17:22 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619\",\r\n \"name\": \"pslibtest619\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest619.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest619.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest619.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:16:44.5458078Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "701" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1274,11 +1180,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "51ba6943-3c61-4b85-b658-ff866ed7c079" + "666154e0-5ffe-4d66-91f7-c0bd3ebb1015" ], "Cache-Control": [ "no-cache" @@ -1288,34 +1191,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14997" ], "x-ms-correlation-request-id": [ - "172cf0ba-2f7b-4add-9539-931c1d907642" + "6afac6ed-f946-442a-8f4d-7e2e5b0c9c71" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185925Z:172cf0ba-2f7b-4add-9539-931c1d907642" + "WESTUS:20150715T011723Z:6afac6ed-f946-442a-8f4d-7e2e5b0c9c71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:25 GMT" + "Wed, 15 Jul 2015 01:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619\",\r\n \"name\": \"pslibtest619\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest619.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest619.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest619.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:16:44.5458078Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "701" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1326,11 +1232,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "a10e7e25-b2b7-4623-b5ca-eb51b7be94be" + "666154e0-5ffe-4d66-91f7-c0bd3ebb1015" ], "Cache-Control": [ "no-cache" @@ -1340,34 +1243,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14997" ], "x-ms-correlation-request-id": [ - "5f57c691-7d68-4bc6-88d8-450c8d91e9c7" + "6afac6ed-f946-442a-8f4d-7e2e5b0c9c71" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T185955Z:5f57c691-7d68-4bc6-88d8-450c8d91e9c7" + "WESTUS:20150715T011723Z:6afac6ed-f946-442a-8f4d-7e2e5b0c9c71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 18:59:55 GMT" + "Wed, 15 Jul 2015 01:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619\",\r\n \"name\": \"pslibtest619\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest619.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest619.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest619.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:16:44.5458078Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "701" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1378,11 +1284,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "117df856-ba23-47f4-a9ed-62f0905b9c22" + "666154e0-5ffe-4d66-91f7-c0bd3ebb1015" ], "Cache-Control": [ "no-cache" @@ -1392,34 +1295,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14997" ], "x-ms-correlation-request-id": [ - "46df5386-1adf-4cd7-a844-20a39f37cf6f" + "6afac6ed-f946-442a-8f4d-7e2e5b0c9c71" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190026Z:46df5386-1adf-4cd7-a844-20a39f37cf6f" + "WESTUS:20150715T011723Z:6afac6ed-f946-442a-8f4d-7e2e5b0c9c71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:00:26 GMT" + "Wed, 15 Jul 2015 01:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619\",\r\n \"name\": \"pslibtest619\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest619.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest619.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest619.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:16:44.5458078Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "675" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1430,11 +1336,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "95d219ca-9ab5-47ec-9d89-3c6bc050d241" + "520a134a-6d78-4bc0-816a-52c10d8f7b92" ], "Cache-Control": [ "no-cache" @@ -1444,34 +1347,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14996" ], "x-ms-correlation-request-id": [ - "e5d35cc1-5317-472c-87c5-c62b14569669" + "b70f9086-153f-40c2-ad67-c86f10df88e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190057Z:e5d35cc1-5317-472c-87c5-c62b14569669" + "WESTUS:20150715T011723Z:b70f9086-153f-40c2-ad67-c86f10df88e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:00:56 GMT" + "Wed, 15 Jul 2015 01:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619\",\r\n \"name\": \"pslibtest619\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest619.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest619.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest619.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:16:44.5458078Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "675" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1482,11 +1388,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "a7c2f7cf-3822-4a74-a0fd-c19c376c27df" + "520a134a-6d78-4bc0-816a-52c10d8f7b92" ], "Cache-Control": [ "no-cache" @@ -1496,34 +1399,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14996" ], "x-ms-correlation-request-id": [ - "93e21420-8340-4735-b4f2-7311ef1adc41" + "b70f9086-153f-40c2-ad67-c86f10df88e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190128Z:93e21420-8340-4735-b4f2-7311ef1adc41" + "WESTUS:20150715T011723Z:b70f9086-153f-40c2-ad67-c86f10df88e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:01:28 GMT" + "Wed, 15 Jul 2015 01:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619\",\r\n \"name\": \"pslibtest619\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest619.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest619.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest619.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:16:44.5458078Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "675" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1534,11 +1440,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "2ec541d4-d46d-4223-9224-3a5553fc1606" + "520a134a-6d78-4bc0-816a-52c10d8f7b92" ], "Cache-Control": [ "no-cache" @@ -1548,34 +1451,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14996" ], "x-ms-correlation-request-id": [ - "eff0ea1a-a908-4230-92de-10de8ac0e214" + "b70f9086-153f-40c2-ad67-c86f10df88e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190159Z:eff0ea1a-a908-4230-92de-10de8ac0e214" + "WESTUS:20150715T011723Z:b70f9086-153f-40c2-ad67-c86f10df88e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:01:59 GMT" + "Wed, 15 Jul 2015 01:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcHNsaWJ0ZXN0NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Storage/storageAccounts/pslibtest619\",\r\n \"name\": \"pslibtest619\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest619.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest619.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest619.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-15T01:16:44.5458078Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "675" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1586,11 +1492,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "7f68ad3e-e316-4e33-a10d-3afc6333f675" + "520a134a-6d78-4bc0-816a-52c10d8f7b92" ], "Cache-Control": [ "no-cache" @@ -1600,34 +1503,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14996" ], "x-ms-correlation-request-id": [ - "2a949908-46d0-4eb3-8269-1d490737c7cc" + "b70f9086-153f-40c2-ad67-c86f10df88e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190230Z:2a949908-46d0-4eb3-8269-1d490737c7cc" + "WESTUS:20150715T011723Z:b70f9086-153f-40c2-ad67-c86f10df88e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 19:02:29 GMT" + "Wed, 15 Jul 2015 01:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"379f5488-dbe7-410c-8400-fe808123d5c3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1638,11 +1550,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "11b9ea2b-bd3c-4ab2-aa0b-2bf5c028c3e2" + "8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1651,35 +1569,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "2d13bf6f-00cd-4925-8d1e-51f0da7dfa07" + "9276b988-142a-4140-8573-13d2a129110f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190300Z:2d13bf6f-00cd-4925-8d1e-51f0da7dfa07" + "WESTUS:20150715T011731Z:9276b988-142a-4140-8573-13d2a129110f" ], "Date": [ - "Tue, 16 Jun 2015 19:03:00 GMT" + "Wed, 15 Jul 2015 01:17:30 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"379f5488-dbe7-410c-8400-fe808123d5c3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1690,11 +1614,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "31bb7e48-509e-44ae-a308-25e7f0525955" + "8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1703,35 +1633,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "bdb98768-1aea-496f-b31d-0dda816f32ce" + "9276b988-142a-4140-8573-13d2a129110f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190331Z:bdb98768-1aea-496f-b31d-0dda816f32ce" + "WESTUS:20150715T011731Z:9276b988-142a-4140-8573-13d2a129110f" ], "Date": [ - "Tue, 16 Jun 2015 19:03:31 GMT" + "Wed, 15 Jul 2015 01:17:30 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"379f5488-dbe7-410c-8400-fe808123d5c3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1742,11 +1678,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "caccea79-ad58-4bc0-bf75-fafae5aa0505" + "8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1755,35 +1697,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "dcc428a2-97e3-4ec2-803a-904df2aec529" + "9276b988-142a-4140-8573-13d2a129110f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190402Z:dcc428a2-97e3-4ec2-803a-904df2aec529" + "WESTUS:20150715T011731Z:9276b988-142a-4140-8573-13d2a129110f" ], "Date": [ - "Tue, 16 Jun 2015 19:04:01 GMT" + "Wed, 15 Jul 2015 01:17:30 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\"\r\n }\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"379f5488-dbe7-410c-8400-fe808123d5c3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1794,11 +1742,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "94b5b11d-10a9-480f-b87e-48fd945a1417" + "8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -1807,35 +1761,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "a3f16ac0-6409-4d40-92e5-0e11a34cebcf" + "9276b988-142a-4140-8573-13d2a129110f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190432Z:a3f16ac0-6409-4d40-92e5-0e11a34cebcf" + "WESTUS:20150715T011731Z:9276b988-142a-4140-8573-13d2a129110f" ], "Date": [ - "Tue, 16 Jun 2015 19:04:32 GMT" + "Wed, 15 Jul 2015 01:17:30 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhhOGRiYjg3LWE2ZTYtNGFiNy04MDBhLTNmMDZmNDQ4M2NmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1846,12 +1800,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "5dcebbe0-ff12-4a42-bc89-4377b4ce8681" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "d32adee5-4e2a-4b62-8003-2767abf12173" - ], "Cache-Control": [ "no-cache" ], @@ -1860,34 +1814,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14995" ], "x-ms-correlation-request-id": [ - "4c57530a-d9c4-4b17-874d-b5d98ebd593b" + "18e772a0-564b-495b-aec6-93f347c4fe27" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190503Z:4c57530a-d9c4-4b17-874d-b5d98ebd593b" + "WESTUS:20150715T011742Z:18e772a0-564b-495b-aec6-93f347c4fe27" ], "Date": [ - "Tue, 16 Jun 2015 19:05:03 GMT" + "Wed, 15 Jul 2015 01:17:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhhOGRiYjg3LWE2ZTYtNGFiNy04MDBhLTNmMDZmNDQ4M2NmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1898,12 +1852,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "5dcebbe0-ff12-4a42-bc89-4377b4ce8681" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "68cd6592-fb25-4fca-8707-7c7f61e37841" - ], "Cache-Control": [ "no-cache" ], @@ -1912,34 +1866,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14995" ], "x-ms-correlation-request-id": [ - "e1f45c74-e4fe-4b32-a321-2409b35c57d7" + "18e772a0-564b-495b-aec6-93f347c4fe27" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190534Z:e1f45c74-e4fe-4b32-a321-2409b35c57d7" + "WESTUS:20150715T011742Z:18e772a0-564b-495b-aec6-93f347c4fe27" ], "Date": [ - "Tue, 16 Jun 2015 19:05:33 GMT" + "Wed, 15 Jul 2015 01:17:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhhOGRiYjg3LWE2ZTYtNGFiNy04MDBhLTNmMDZmNDQ4M2NmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1950,12 +1904,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "5dcebbe0-ff12-4a42-bc89-4377b4ce8681" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "dc331b36-675d-42dc-b7cf-f5717a0c6659" - ], "Cache-Control": [ "no-cache" ], @@ -1964,34 +1918,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14995" ], "x-ms-correlation-request-id": [ - "a26efd61-f6a5-4246-9cdc-9fef625b8f3b" + "18e772a0-564b-495b-aec6-93f347c4fe27" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190605Z:a26efd61-f6a5-4246-9cdc-9fef625b8f3b" + "WESTUS:20150715T011742Z:18e772a0-564b-495b-aec6-93f347c4fe27" ], "Date": [ - "Tue, 16 Jun 2015 19:06:04 GMT" + "Wed, 15 Jul 2015 01:17:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8a8dbb87-a6e6-4ab7-800a-3f06f4483cf9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhhOGRiYjg3LWE2ZTYtNGFiNy04MDBhLTNmMDZmNDQ4M2NmOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2002,12 +1956,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "5dcebbe0-ff12-4a42-bc89-4377b4ce8681" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "7c83fba0-a2ea-4bec-b0b3-0bda7fe75856" - ], "Cache-Control": [ "no-cache" ], @@ -2016,34 +1970,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14995" ], "x-ms-correlation-request-id": [ - "2535f016-63a7-4a29-8d9d-d7f030e8ffba" + "18e772a0-564b-495b-aec6-93f347c4fe27" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190636Z:2535f016-63a7-4a29-8d9d-d7f030e8ffba" + "WESTUS:20150715T011742Z:18e772a0-564b-495b-aec6-93f347c4fe27" ], "Date": [ - "Tue, 16 Jun 2015 19:06:36 GMT" + "Wed, 15 Jul 2015 01:17:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"b8f472e3-4e33-4506-9511-7288b48d6e76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2054,48 +2008,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "b64e710d-a0e4-4e7e-a3c1-b5461e4f31d3" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "afbd54d8-5cb6-4170-9940-1d87d9cf5941" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"b8f472e3-4e33-4506-9511-7288b48d6e76\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14994" ], "x-ms-correlation-request-id": [ - "e17e55b0-c49d-46d5-86e6-e360da77d317" + "d41dc5e1-fb76-439f-9f90-26c7c4527244" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190707Z:e17e55b0-c49d-46d5-86e6-e360da77d317" + "WESTUS:20150715T011742Z:d41dc5e1-fb76-439f-9f90-26c7c4527244" ], "Date": [ - "Tue, 16 Jun 2015 19:07:06 GMT" + "Wed, 15 Jul 2015 01:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"b8f472e3-4e33-4506-9511-7288b48d6e76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2106,48 +2063,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "b64e710d-a0e4-4e7e-a3c1-b5461e4f31d3" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "5e76ab39-bd5b-46c2-8358-96a7aeee6c01" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"b8f472e3-4e33-4506-9511-7288b48d6e76\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14994" ], "x-ms-correlation-request-id": [ - "d1b99479-4833-4adc-93d6-ead32d063e09" + "d41dc5e1-fb76-439f-9f90-26c7c4527244" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190737Z:d1b99479-4833-4adc-93d6-ead32d063e09" + "WESTUS:20150715T011742Z:d41dc5e1-fb76-439f-9f90-26c7c4527244" ], "Date": [ - "Tue, 16 Jun 2015 19:07:37 GMT" + "Wed, 15 Jul 2015 01:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"b8f472e3-4e33-4506-9511-7288b48d6e76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2158,48 +2118,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "b64e710d-a0e4-4e7e-a3c1-b5461e4f31d3" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "7b426cca-3407-4cc6-8e80-8ea674635c93" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"b8f472e3-4e33-4506-9511-7288b48d6e76\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14994" ], "x-ms-correlation-request-id": [ - "b8f02762-a632-4311-b22d-b7941219b3f9" + "d41dc5e1-fb76-439f-9f90-26c7c4527244" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190808Z:b8f02762-a632-4311-b22d-b7941219b3f9" + "WESTUS:20150715T011742Z:d41dc5e1-fb76-439f-9f90-26c7c4527244" ], "Date": [ - "Tue, 16 Jun 2015 19:08:08 GMT" + "Wed, 15 Jul 2015 01:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"b8f472e3-4e33-4506-9511-7288b48d6e76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2210,48 +2173,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "b64e710d-a0e4-4e7e-a3c1-b5461e4f31d3" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "40849e88-1156-4af7-bf26-28fae8b032bb" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"b8f472e3-4e33-4506-9511-7288b48d6e76\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14994" ], "x-ms-correlation-request-id": [ - "e9cf4366-d3b4-4457-8d7c-98991e9aec32" + "d41dc5e1-fb76-439f-9f90-26c7c4527244" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190839Z:e9cf4366-d3b4-4457-8d7c-98991e9aec32" + "WESTUS:20150715T011742Z:d41dc5e1-fb76-439f-9f90-26c7c4527244" ], "Date": [ - "Tue, 16 Jun 2015 19:08:38 GMT" + "Wed, 15 Jul 2015 01:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"b8f472e3-4e33-4506-9511-7288b48d6e76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2262,48 +2228,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "88e4dc85-593a-4a93-86cb-eb5b3f6c5c38" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "440b8aa1-9f30-44e4-81e8-ba46175babdc" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"b8f472e3-4e33-4506-9511-7288b48d6e76\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14993" ], "x-ms-correlation-request-id": [ - "ca01e637-0de7-4de1-ad19-b4330bba4b64" + "542b8ce9-98b5-4173-9647-eb48c93f846f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190910Z:ca01e637-0de7-4de1-ad19-b4330bba4b64" + "WESTUS:20150715T011742Z:542b8ce9-98b5-4173-9647-eb48c93f846f" ], "Date": [ - "Tue, 16 Jun 2015 19:09:09 GMT" + "Wed, 15 Jul 2015 01:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"b8f472e3-4e33-4506-9511-7288b48d6e76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2314,48 +2283,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "88e4dc85-593a-4a93-86cb-eb5b3f6c5c38" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "98327962-735a-4c8e-a204-8fa64e2ebf0a" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"b8f472e3-4e33-4506-9511-7288b48d6e76\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14993" ], "x-ms-correlation-request-id": [ - "81bb422a-f95f-4ade-80cc-d949be758e2c" + "542b8ce9-98b5-4173-9647-eb48c93f846f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T190941Z:81bb422a-f95f-4ade-80cc-d949be758e2c" + "WESTUS:20150715T011742Z:542b8ce9-98b5-4173-9647-eb48c93f846f" ], "Date": [ - "Tue, 16 Jun 2015 19:09:41 GMT" + "Wed, 15 Jul 2015 01:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"b8f472e3-4e33-4506-9511-7288b48d6e76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2366,48 +2338,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "88e4dc85-593a-4a93-86cb-eb5b3f6c5c38" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "0dfc39a5-df8c-4c04-8d27-8b1c99ef9884" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"b8f472e3-4e33-4506-9511-7288b48d6e76\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14993" ], "x-ms-correlation-request-id": [ - "7b0990b4-ef9b-4498-9ca8-9a9b5da1df5e" + "542b8ce9-98b5-4173-9647-eb48c93f846f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191011Z:7b0990b4-ef9b-4498-9ca8-9a9b5da1df5e" + "WESTUS:20150715T011742Z:542b8ce9-98b5-4173-9647-eb48c93f846f" ], "Date": [ - "Tue, 16 Jun 2015 19:10:11 GMT" + "Wed, 15 Jul 2015 01:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MTQ5Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet149\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/publicIPAddresses/azsmnet149\",\r\n \"etag\": \"W/\\\"b8f472e3-4e33-4506-9511-7288b48d6e76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7298\",\r\n \"fqdn\": \"azsmnet7298.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2418,48 +2393,57 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "88e4dc85-593a-4a93-86cb-eb5b3f6c5c38" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "0cbc0bb2-37f2-4794-aec6-52155ef27a5d" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"b8f472e3-4e33-4506-9511-7288b48d6e76\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14993" ], "x-ms-correlation-request-id": [ - "06e27726-192a-4a5c-9a69-f849ccff5701" + "542b8ce9-98b5-4173-9647-eb48c93f846f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191042Z:06e27726-192a-4a5c-9a69-f849ccff5701" + "WESTUS:20150715T011742Z:542b8ce9-98b5-4173-9647-eb48c93f846f" ], "Date": [ - "Tue, 16 Jun 2015 19:10:42 GMT" + "Wed, 15 Jul 2015 01:17:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4474\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474\",\r\n \"etag\": \"W/\\\"b1d82025-8dbc-4e7c-b8f2-f5b9bb412afe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"b1d82025-8dbc-4e7c-b8f2-f5b9bb412afe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2470,11 +2454,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "21284571-f952-456d-9928-4814aff77e73" + "8506215d-067c-401e-aa26-e5db912c8eb6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8506215d-067c-401e-aa26-e5db912c8eb6?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -2483,35 +2473,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "56864cc2-6e52-4d98-befd-e070073cf22c" + "7ab39492-175b-4bdd-b882-6064b19e4419" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191113Z:56864cc2-6e52-4d98-befd-e070073cf22c" + "WESTUS:20150715T011745Z:7ab39492-175b-4bdd-b882-6064b19e4419" ], "Date": [ - "Tue, 16 Jun 2015 19:11:12 GMT" + "Wed, 15 Jul 2015 01:17:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4474\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474\",\r\n \"etag\": \"W/\\\"b1d82025-8dbc-4e7c-b8f2-f5b9bb412afe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"b1d82025-8dbc-4e7c-b8f2-f5b9bb412afe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2522,11 +2518,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "a0cecf21-2ab5-42cb-bad1-6fb289f353fa" + "8506215d-067c-401e-aa26-e5db912c8eb6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8506215d-067c-401e-aa26-e5db912c8eb6?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -2535,35 +2537,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "a920eb63-223c-4b86-a845-a9ba5f013bae" + "7ab39492-175b-4bdd-b882-6064b19e4419" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191144Z:a920eb63-223c-4b86-a845-a9ba5f013bae" + "WESTUS:20150715T011745Z:7ab39492-175b-4bdd-b882-6064b19e4419" ], "Date": [ - "Tue, 16 Jun 2015 19:11:43 GMT" + "Wed, 15 Jul 2015 01:17:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f105dabb-8224-432c-86af-7b26a7ca5550?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMDVkYWJiLTgyMjQtNDMyYy04NmFmLTdiMjZhN2NhNTU1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f105dabb-8224-432c-86af-7b26a7ca5550\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T11:59:24.1655946-07:00\",\r\n \"endTime\": \"2015-06-16T12:11:48.4360561-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4474\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474\",\r\n \"etag\": \"W/\\\"b1d82025-8dbc-4e7c-b8f2-f5b9bb412afe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"b1d82025-8dbc-4e7c-b8f2-f5b9bb412afe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2574,11 +2582,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "1321c384-eebc-4f96-9a23-39babd40d9f3" + "8506215d-067c-401e-aa26-e5db912c8eb6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8506215d-067c-401e-aa26-e5db912c8eb6?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" @@ -2587,35 +2601,44 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "886983d9-5511-4ba6-b92d-d6a110de81bd" + "7ab39492-175b-4bdd-b882-6064b19e4419" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191215Z:886983d9-5511-4ba6-b92d-d6a110de81bd" + "WESTUS:20150715T011745Z:7ab39492-175b-4bdd-b882-6064b19e4419" ], "Date": [ - "Tue, 16 Jun 2015 19:12:14 GMT" + "Wed, 15 Jul 2015 01:17:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/restart?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet4474\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474\",\r\n \"etag\": \"W/\\\"b1d82025-8dbc-4e7c-b8f2-f5b9bb412afe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"b1d82025-8dbc-4e7c-b8f2-f5b9bb412afe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2623,54 +2646,57 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8506215d-067c-401e-aa26-e5db912c8eb6" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/a9ad7cbc-6528-4abd-801f-53adbf067619?api-version=2015-06-15" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8506215d-067c-401e-aa26-e5db912c8eb6?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "a9ad7cbc-6528-4abd-801f-53adbf067619" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/a9ad7cbc-6528-4abd-801f-53adbf067619?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "569e5951-f208-4e8b-bc2f-0ef5889efd68" + "7ab39492-175b-4bdd-b882-6064b19e4419" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191216Z:569e5951-f208-4e8b-bc2f-0ef5889efd68" + "WESTUS:20150715T011745Z:7ab39492-175b-4bdd-b882-6064b19e4419" ], "Date": [ - "Tue, 16 Jun 2015 19:12:15 GMT" + "Wed, 15 Jul 2015 01:17:45 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/restart?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8506215d-067c-401e-aa26-e5db912c8eb6?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1MDYyMTVkLTA2N2MtNDAxZS1hYTI2LWU1ZGI5MTJjOGViNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2678,54 +2704,48 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/09c89720-662b-45c9-9e8a-3325b93923ec?api-version=2015-06-15" + "x-ms-request-id": [ + "39243066-dae1-4f22-a5a1-3b6e08fa2d3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "09c89720-662b-45c9-9e8a-3325b93923ec" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/09c89720-662b-45c9-9e8a-3325b93923ec?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-correlation-request-id": [ - "b86ec14d-63b0-45e1-b57c-03554192e2bd" + "32c0faaa-0593-4f54-bcf0-7cd50e89f976" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191216Z:b86ec14d-63b0-45e1-b57c-03554192e2bd" + "WESTUS:20150715T011756Z:32c0faaa-0593-4f54-bcf0-7cd50e89f976" ], "Date": [ - "Tue, 16 Jun 2015 19:12:16 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/09c89720-662b-45c9-9e8a-3325b93923ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA5Yzg5NzIwLTY2MmItNDVjOS05ZThhLTMzMjViOTM5MjNlYz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8506215d-067c-401e-aa26-e5db912c8eb6?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1MDYyMTVkLTA2N2MtNDAxZS1hYTI2LWU1ZGI5MTJjOGViNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"09c89720-662b-45c9-9e8a-3325b93923ec\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T12:12:16.3424714-07:00\",\r\n \"endTime\": \"2015-06-16T12:12:16.8267877-07:00\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2736,12 +2756,12 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "39243066-dae1-4f22-a5a1-3b6e08fa2d3d" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "d2d9b931-418b-4f14-8a90-6aca246d44fc" - ], "Cache-Control": [ "no-cache" ], @@ -2750,34 +2770,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14992" ], "x-ms-correlation-request-id": [ - "af770e67-10c9-4629-8f55-2244d4cb7baf" + "32c0faaa-0593-4f54-bcf0-7cd50e89f976" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191217Z:af770e67-10c9-4629-8f55-2244d4cb7baf" + "WESTUS:20150715T011756Z:32c0faaa-0593-4f54-bcf0-7cd50e89f976" ], "Date": [ - "Tue, 16 Jun 2015 19:12:17 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/powerOff?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL3Bvd2VyT2ZmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8506215d-067c-401e-aa26-e5db912c8eb6?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1MDYyMTVkLTA2N2MtNDAxZS1hYTI2LWU1ZGI5MTJjOGViNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2785,54 +2808,51 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/5b0fa8bf-86f1-4f39-bba8-b951f55b2ea8?api-version=2015-06-15" + "x-ms-request-id": [ + "39243066-dae1-4f22-a5a1-3b6e08fa2d3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "5b0fa8bf-86f1-4f39-bba8-b951f55b2ea8" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/5b0fa8bf-86f1-4f39-bba8-b951f55b2ea8?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-correlation-request-id": [ - "d9cea5c2-53d3-4e4f-bdcd-5056e19adb54" + "32c0faaa-0593-4f54-bcf0-7cd50e89f976" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191217Z:d9cea5c2-53d3-4e4f-bdcd-5056e19adb54" + "WESTUS:20150715T011756Z:32c0faaa-0593-4f54-bcf0-7cd50e89f976" ], "Date": [ - "Tue, 16 Jun 2015 19:12:17 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/powerOff?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL3Bvd2VyT2ZmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/8506215d-067c-401e-aa26-e5db912c8eb6?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1MDYyMTVkLTA2N2MtNDAxZS1hYTI2LWU1ZGI5MTJjOGViNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2840,54 +2860,48 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/78695181-2566-41e5-bd99-72e703ac2f9c?api-version=2015-06-15" + "x-ms-request-id": [ + "39243066-dae1-4f22-a5a1-3b6e08fa2d3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "78695181-2566-41e5-bd99-72e703ac2f9c" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/78695181-2566-41e5-bd99-72e703ac2f9c?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-correlation-request-id": [ - "d29550b0-e624-4db6-8bf0-eb9110f11a21" + "32c0faaa-0593-4f54-bcf0-7cd50e89f976" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191218Z:d29550b0-e624-4db6-8bf0-eb9110f11a21" + "WESTUS:20150715T011756Z:32c0faaa-0593-4f54-bcf0-7cd50e89f976" ], "Date": [ - "Tue, 16 Jun 2015 19:12:17 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/78695181-2566-41e5-bd99-72e703ac2f9c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4Njk1MTgxLTI1NjYtNDFlNS1iZDk5LTcyZTcwM2FjMmY5Yz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"78695181-2566-41e5-bd99-72e703ac2f9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:12:18.0299245-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4474\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "963" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2898,48 +2912,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "28575011-b0ac-49cb-9fd4-0b89804071b2" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "dd954a84-045d-4ad7-a1a7-acd09b1b4b0b" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"516954fa-029c-4332-b774-83a146a906aa\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14991" ], "x-ms-correlation-request-id": [ - "1b8ba618-838f-444a-8916-5d213fd61ba3" + "32c6118b-0a89-45da-bfa4-0d2c15b66b37" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191219Z:1b8ba618-838f-444a-8916-5d213fd61ba3" + "WESTUS:20150715T011757Z:32c6118b-0a89-45da-bfa4-0d2c15b66b37" ], "Date": [ - "Tue, 16 Jun 2015 19:12:18 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/78695181-2566-41e5-bd99-72e703ac2f9c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4Njk1MTgxLTI1NjYtNDFlNS1iZDk5LTcyZTcwM2FjMmY5Yz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"78695181-2566-41e5-bd99-72e703ac2f9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:12:18.0299245-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4474\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "963" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2950,48 +2967,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "28575011-b0ac-49cb-9fd4-0b89804071b2" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f7e74870-f062-4b42-b811-438d9ba45378" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"516954fa-029c-4332-b774-83a146a906aa\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14991" ], "x-ms-correlation-request-id": [ - "5fc9142c-d881-47e2-9b9b-b839ed4888b8" + "32c6118b-0a89-45da-bfa4-0d2c15b66b37" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191249Z:5fc9142c-d881-47e2-9b9b-b839ed4888b8" + "WESTUS:20150715T011757Z:32c6118b-0a89-45da-bfa4-0d2c15b66b37" ], "Date": [ - "Tue, 16 Jun 2015 19:12:48 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/78695181-2566-41e5-bd99-72e703ac2f9c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4Njk1MTgxLTI1NjYtNDFlNS1iZDk5LTcyZTcwM2FjMmY5Yz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"78695181-2566-41e5-bd99-72e703ac2f9c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T12:12:18.0299245-07:00\",\r\n \"endTime\": \"2015-06-16T12:12:53.4989778-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4474\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "963" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3002,48 +3022,54 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "28575011-b0ac-49cb-9fd4-0b89804071b2" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "c23430c2-c235-4d5c-882f-9e990885335d" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"516954fa-029c-4332-b774-83a146a906aa\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14991" ], "x-ms-correlation-request-id": [ - "6d445ea5-4cf7-4184-bc32-d5298168721b" + "32c6118b-0a89-45da-bfa4-0d2c15b66b37" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191320Z:6d445ea5-4cf7-4184-bc32-d5298168721b" + "WESTUS:20150715T011757Z:32c6118b-0a89-45da-bfa4-0d2c15b66b37" ], "Date": [ - "Tue, 16 Jun 2015 19:13:20 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/deallocate?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL2RlYWxsb2NhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet4474\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3051,54 +3077,54 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8c957dd1-6b24-41f5-bb5b-4e18e6fa2fa6?api-version=2015-06-15" + "x-ms-request-id": [ + "28575011-b0ac-49cb-9fd4-0b89804071b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "8c957dd1-6b24-41f5-bb5b-4e18e6fa2fa6" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/8c957dd1-6b24-41f5-bb5b-4e18e6fa2fa6?monitor=true&api-version=2015-06-15" + "ETag": [ + "W/\"516954fa-029c-4332-b774-83a146a906aa\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], "x-ms-correlation-request-id": [ - "3b2c9437-304c-492b-9102-5f4642478a6e" + "32c6118b-0a89-45da-bfa4-0d2c15b66b37" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191321Z:3b2c9437-304c-492b-9102-5f4642478a6e" + "WESTUS:20150715T011757Z:32c6118b-0a89-45da-bfa4-0d2c15b66b37" ], "Date": [ - "Tue, 16 Jun 2015 19:13:21 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/deallocate?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL2RlYWxsb2NhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474/subnets/azsmnet7718?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQvc3VibmV0cy9henNtbmV0NzcxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3106,54 +3132,51 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f457a03a-8746-481d-86bc-2ce5e76b58ef?api-version=2015-06-15" + "x-ms-request-id": [ + "04d4205e-c11b-4643-89c3-2fbc7fca40ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f457a03a-8746-481d-86bc-2ce5e76b58ef" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f457a03a-8746-481d-86bc-2ce5e76b58ef?monitor=true&api-version=2015-06-15" + "ETag": [ + "W/\"516954fa-029c-4332-b774-83a146a906aa\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-correlation-request-id": [ - "a2485316-2788-4b43-ba28-369b44c624b4" + "928e9515-0a30-4f44-a035-c55865fb16f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191321Z:a2485316-2788-4b43-ba28-369b44c624b4" + "WESTUS:20150715T011757Z:928e9515-0a30-4f44-a035-c55865fb16f0" ], "Date": [ - "Tue, 16 Jun 2015 19:13:21 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f457a03a-8746-481d-86bc-2ce5e76b58ef?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y0NTdhMDNhLTg3NDYtNDgxZC04NmJjLTJjZTVlNzZiNThlZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474/subnets/azsmnet7718?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQvc3VibmV0cy9henNtbmV0NzcxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f457a03a-8746-481d-86bc-2ce5e76b58ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:13:21.858517-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3164,48 +3187,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "04d4205e-c11b-4643-89c3-2fbc7fca40ac" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "45569d1c-5b36-4b79-8f4f-801f588a0495" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"516954fa-029c-4332-b774-83a146a906aa\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14990" ], "x-ms-correlation-request-id": [ - "1278169c-1902-4ee0-b99d-1438a7b5d138" + "928e9515-0a30-4f44-a035-c55865fb16f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191322Z:1278169c-1902-4ee0-b99d-1438a7b5d138" + "WESTUS:20150715T011757Z:928e9515-0a30-4f44-a035-c55865fb16f0" ], "Date": [ - "Tue, 16 Jun 2015 19:13:22 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f457a03a-8746-481d-86bc-2ce5e76b58ef?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y0NTdhMDNhLTg3NDYtNDgxZC04NmJjLTJjZTVlNzZiNThlZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474/subnets/azsmnet7718?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQvc3VibmV0cy9henNtbmV0NzcxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f457a03a-8746-481d-86bc-2ce5e76b58ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:13:21.858517-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3216,48 +3242,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "04d4205e-c11b-4643-89c3-2fbc7fca40ac" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f9946e8d-f154-47ae-b697-e6e842058092" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"516954fa-029c-4332-b774-83a146a906aa\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14990" ], "x-ms-correlation-request-id": [ - "e79e0595-8a01-429f-9dfa-ee68dbed74ac" + "928e9515-0a30-4f44-a035-c55865fb16f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191353Z:e79e0595-8a01-429f-9dfa-ee68dbed74ac" + "WESTUS:20150715T011757Z:928e9515-0a30-4f44-a035-c55865fb16f0" ], "Date": [ - "Tue, 16 Jun 2015 19:13:53 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f457a03a-8746-481d-86bc-2ce5e76b58ef?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y0NTdhMDNhLTg3NDYtNDgxZC04NmJjLTJjZTVlNzZiNThlZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualnetworks/azsmnet4474/subnets/azsmnet7718?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3MvYXpzbW5ldDQ0NzQvc3VibmV0cy9henNtbmV0NzcxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f457a03a-8746-481d-86bc-2ce5e76b58ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:13:21.858517-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7718\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3268,48 +3297,57 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "04d4205e-c11b-4643-89c3-2fbc7fca40ac" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "a691d8a3-b2db-46ae-b8f6-62e1568c849c" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"516954fa-029c-4332-b774-83a146a906aa\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14990" ], "x-ms-correlation-request-id": [ - "4a91ec51-9ba0-4785-b8f1-131d518ff7d8" + "928e9515-0a30-4f44-a035-c55865fb16f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191424Z:4a91ec51-9ba0-4785-b8f1-131d518ff7d8" + "WESTUS:20150715T011757Z:928e9515-0a30-4f44-a035-c55865fb16f0" ], "Date": [ - "Tue, 16 Jun 2015 19:14:23 GMT" + "Wed, 15 Jul 2015 01:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f457a03a-8746-481d-86bc-2ce5e76b58ef?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y0NTdhMDNhLTg3NDYtNDgxZC04NmJjLTJjZTVlNzZiNThlZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODQxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "728" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f457a03a-8746-481d-86bc-2ce5e76b58ef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:13:21.858517-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8418\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418/ipConfigurations/azsmnet3577\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3320,12 +3358,15 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "014e1247-07c7-4691-b9a4-37f5abcaa86c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/014e1247-07c7-4691-b9a4-37f5abcaa86c?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "eb0713fc-b630-4efa-929a-2f0c68896561" - ], "Cache-Control": [ "no-cache" ], @@ -3333,35 +3374,41 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" ], "x-ms-correlation-request-id": [ - "10fdcf74-ffe0-4bd5-a8b9-429f2ba51d8c" + "ed891687-3f21-4233-95ca-786089484181" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191455Z:10fdcf74-ffe0-4bd5-a8b9-429f2ba51d8c" + "WESTUS:20150715T011801Z:ed891687-3f21-4233-95ca-786089484181" ], "Date": [ - "Tue, 16 Jun 2015 19:14:54 GMT" + "Wed, 15 Jul 2015 01:18:00 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/f457a03a-8746-481d-86bc-2ce5e76b58ef?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y0NTdhMDNhLTg3NDYtNDgxZC04NmJjLTJjZTVlNzZiNThlZj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODQxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "728" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f457a03a-8746-481d-86bc-2ce5e76b58ef\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T12:13:21.858517-07:00\",\r\n \"endTime\": \"2015-06-16T12:15:08.1560885-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8418\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418/ipConfigurations/azsmnet3577\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "1155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3372,12 +3419,15 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "014e1247-07c7-4691-b9a4-37f5abcaa86c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/014e1247-07c7-4691-b9a4-37f5abcaa86c?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "190033f2-b2be-4ec3-82a0-d4d928cdb2af" - ], "Cache-Control": [ "no-cache" ], @@ -3385,35 +3435,44 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" ], "x-ms-correlation-request-id": [ - "b148362a-ef32-4668-b28c-55c94b259469" + "ed891687-3f21-4233-95ca-786089484181" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191526Z:b148362a-ef32-4668-b28c-55c94b259469" + "WESTUS:20150715T011801Z:ed891687-3f21-4233-95ca-786089484181" ], "Date": [ - "Tue, 16 Jun 2015 19:15:26 GMT" + "Wed, 15 Jul 2015 01:18:00 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/generalize?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL2dlbmVyYWxpemU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODQxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "728" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet8418\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418/ipConfigurations/azsmnet3577\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "1155" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3421,12 +3480,15 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "014e1247-07c7-4691-b9a4-37f5abcaa86c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/014e1247-07c7-4691-b9a4-37f5abcaa86c?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "0219a3c7-8f4a-44b7-ad85-9ceeb6f8063c" - ], "Cache-Control": [ "no-cache" ], @@ -3435,40 +3497,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1194" ], "x-ms-correlation-request-id": [ - "3d020b1e-9e66-4cbe-8b7f-da3c5342ce19" + "ed891687-3f21-4233-95ca-786089484181" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191527Z:3d020b1e-9e66-4cbe-8b7f-da3c5342ce19" + "WESTUS:20150715T011801Z:ed891687-3f21-4233-95ca-786089484181" ], "Date": [ - "Tue, 16 Jun 2015 19:15:27 GMT" + "Wed, 15 Jul 2015 01:18:00 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/virtualMachines/vm5592/capture?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDk3NjYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01NTkyL2NhcHR1cmU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"vhdPrefix\": \"pslibtest8855\",\r\n \"destinationContainerName\": \"pslibtest8458\",\r\n \"overwriteVhds\": true\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODQxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7718\",\r\n \"etag\": \"W/\\\"516954fa-029c-4332-b774-83a146a906aa\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "110" + "728" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet8418\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418/ipConfigurations/azsmnet3577\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "1155" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3476,54 +3541,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "014e1247-07c7-4691-b9a4-37f5abcaa86c" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2b9a75e3-40aa-42c9-98c1-df49bcd0b0e7?api-version=2015-06-15" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/014e1247-07c7-4691-b9a4-37f5abcaa86c?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "2b9a75e3-40aa-42c9-98c1-df49bcd0b0e7" - ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2b9a75e3-40aa-42c9-98c1-df49bcd0b0e7?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1194" ], "x-ms-correlation-request-id": [ - "48daf1d8-6a07-486e-9bf7-c023ebb8f123" + "ed891687-3f21-4233-95ca-786089484181" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191527Z:48daf1d8-6a07-486e-9bf7-c023ebb8f123" + "WESTUS:20150715T011801Z:ed891687-3f21-4233-95ca-786089484181" ], "Date": [ - "Tue, 16 Jun 2015 19:15:27 GMT" + "Wed, 15 Jul 2015 01:18:00 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2b9a75e3-40aa-42c9-98c1-df49bcd0b0e7?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJiOWE3NWUzLTQwYWEtNDJjOS05OGMxLWRmNDliY2QwYjBlNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODQxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2b9a75e3-40aa-42c9-98c1-df49bcd0b0e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T12:15:27.7655722-07:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8418\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418/ipConfigurations/azsmnet3577\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "1155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3534,48 +3596,51 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "6a6957ed-4bfd-412f-b419-f50fe75ba3d1" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "18431b07-674d-478d-a870-8f841b80f4c9" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14989" ], "x-ms-correlation-request-id": [ - "92c9922a-c5b9-4b4a-8b93-b9be3fda1a62" + "64f7c118-0b94-4516-b3d1-32d778b7f42f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191528Z:92c9922a-c5b9-4b4a-8b93-b9be3fda1a62" + "WESTUS:20150715T011801Z:64f7c118-0b94-4516-b3d1-32d778b7f42f" ], "Date": [ - "Tue, 16 Jun 2015 19:15:28 GMT" + "Wed, 15 Jul 2015 01:18:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/2b9a75e3-40aa-42c9-98c1-df49bcd0b0e7?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJiOWE3NWUzLTQwYWEtNDJjOS05OGMxLWRmNDliY2QwYjBlNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODQxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2b9a75e3-40aa-42c9-98c1-df49bcd0b0e7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T12:15:27.7655722-07:00\",\r\n \"endTime\": \"2015-06-16T12:15:28.8593289-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A0\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n },\r\n \"availabilitySetId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest97661/providers/Microsoft.Compute/availabilitySets/AS8344\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"[parameters('availabilitySetId')]\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"pslibtest8855-osDisk.c91592ca-f61e-4172-912f-b40d11e320cd.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://pslibtest8849.blob.core.windows.net/system/Microsoft.Compute/Images/pslibtest8458/pslibtest8855-osDisk.c91592ca-f61e-4172-912f-b40d11e320cd.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest8849.blob.core.windows.net/vmcontainerd5807eac-f938-486e-8294-c6592ba9fd98/osDisk.d5807eac-f938-486e-8294-c6592ba9fd98.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet8418\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418/ipConfigurations/azsmnet3577\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2359" + "1155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3586,48 +3651,54 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "6a6957ed-4bfd-412f-b419-f50fe75ba3d1" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "6e787de7-3fcd-4f7f-9ebf-4d92b12b275f" - ], "Cache-Control": [ "no-cache" ], + "ETag": [ + "W/\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\"" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14989" ], "x-ms-correlation-request-id": [ - "c02e46a0-735d-450d-a605-ab2d7275f0af" + "64f7c118-0b94-4516-b3d1-32d778b7f42f" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191559Z:c02e46a0-735d-450d-a605-ab2d7275f0af" + "WESTUS:20150715T011801Z:64f7c118-0b94-4516-b3d1-32d778b7f42f" ], "Date": [ - "Tue, 16 Jun 2015 19:15:59 GMT" + "Wed, 15 Jul 2015 01:18:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest97661?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDk3NjYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODQxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"azsmnet8418\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418/ipConfigurations/azsmnet3577\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "1155" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3635,20 +3706,8 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" - ], "x-ms-request-id": [ - "f76a8664-7d37-4772-8ea5-baaf4348dd39" - ], - "x-ms-correlation-request-id": [ - "f76a8664-7d37-4772-8ea5-baaf4348dd39" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T191608Z:f76a8664-7d37-4772-8ea5-baaf4348dd39" + "6a6957ed-4bfd-412f-b419-f50fe75ba3d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3656,44 +3715,12081 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 16 Jun 2015 19:16:07 GMT" + "ETag": [ + "W/\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\"" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q5NzY2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "64f7c118-0b94-4516-b3d1-32d778b7f42f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011801Z:64f7c118-0b94-4516-b3d1-32d778b7f42f" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:00 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODQxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8418\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3577\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418/ipConfigurations/azsmnet3577\",\r\n \"etag\": \"W/\\\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/virtualNetworks/azsmnet4474/subnets/azsmnet7718\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a6957ed-4bfd-412f-b419-f50fe75ba3d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"09fd05ef-0382-4f3f-8fb7-5e4a80c69bfc\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "64f7c118-0b94-4516-b3d1-32d778b7f42f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011801Z:64f7c118-0b94-4516-b3d1-32d778b7f42f" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hdmFpbGFiaWxpdHlTZXRzL2FzNzY1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658\",\r\n \"name\": \"as7658\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "404" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d9afa7fb-17f7-4f5a-85ae-78ee87d71655" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6939131b-29db-45a6-bead-cd815cd44de1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011805Z:6939131b-29db-45a6-bead-cd815cd44de1" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hdmFpbGFiaWxpdHlTZXRzL2FzNzY1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658\",\r\n \"name\": \"as7658\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "404" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d9afa7fb-17f7-4f5a-85ae-78ee87d71655" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6939131b-29db-45a6-bead-cd815cd44de1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011805Z:6939131b-29db-45a6-bead-cd815cd44de1" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hdmFpbGFiaWxpdHlTZXRzL2FzNzY1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658\",\r\n \"name\": \"as7658\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "404" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d9afa7fb-17f7-4f5a-85ae-78ee87d71655" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6939131b-29db-45a6-bead-cd815cd44de1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011805Z:6939131b-29db-45a6-bead-cd815cd44de1" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hdmFpbGFiaWxpdHlTZXRzL2FzNzY1OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658\",\r\n \"name\": \"as7658\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "404" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d9afa7fb-17f7-4f5a-85ae-78ee87d71655" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6939131b-29db-45a6-bead-cd815cd44de1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011805Z:6939131b-29db-45a6-bead-cd815cd44de1" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest70061\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1254" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6bb3838a-9c43-49f4-8340-3f32f8876059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "b0b19caa-48b4-4a77-abf0-eb075656e6f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011809Z:b0b19caa-48b4-4a77-abf0-eb075656e6f3" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest70061\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1254" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6bb3838a-9c43-49f4-8340-3f32f8876059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "b0b19caa-48b4-4a77-abf0-eb075656e6f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011809Z:b0b19caa-48b4-4a77-abf0-eb075656e6f3" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest70061\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1254" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6bb3838a-9c43-49f4-8340-3f32f8876059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "b0b19caa-48b4-4a77-abf0-eb075656e6f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011809Z:b0b19caa-48b4-4a77-abf0-eb075656e6f3" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest70061\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/as7658\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1254" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6bb3838a-9c43-49f4-8340-3f32f8876059" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "b0b19caa-48b4-4a77-abf0-eb075656e6f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011809Z:b0b19caa-48b4-4a77-abf0-eb075656e6f3" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d7ca736d-02ae-4130-9796-45276c6a390b" + ], + "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": [ + "a42026bd-2be8-430d-9e20-b0fa98cd0c7a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011840Z:a42026bd-2be8-430d-9e20-b0fa98cd0c7a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d7ca736d-02ae-4130-9796-45276c6a390b" + ], + "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": [ + "a42026bd-2be8-430d-9e20-b0fa98cd0c7a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011840Z:a42026bd-2be8-430d-9e20-b0fa98cd0c7a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d7ca736d-02ae-4130-9796-45276c6a390b" + ], + "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": [ + "a42026bd-2be8-430d-9e20-b0fa98cd0c7a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011840Z:a42026bd-2be8-430d-9e20-b0fa98cd0c7a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d7ca736d-02ae-4130-9796-45276c6a390b" + ], + "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": [ + "a42026bd-2be8-430d-9e20-b0fa98cd0c7a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011840Z:a42026bd-2be8-430d-9e20-b0fa98cd0c7a" + ], + "Date": [ + "Wed, 15 Jul 2015 01:18:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ceda0061-e88d-4c22-9f69-7b8ea8f78b20" + ], + "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": [ + "b45b1d8f-67e5-4191-b7a6-37fe3874cf25" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011911Z:b45b1d8f-67e5-4191-b7a6-37fe3874cf25" + ], + "Date": [ + "Wed, 15 Jul 2015 01:19:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ceda0061-e88d-4c22-9f69-7b8ea8f78b20" + ], + "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": [ + "b45b1d8f-67e5-4191-b7a6-37fe3874cf25" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011911Z:b45b1d8f-67e5-4191-b7a6-37fe3874cf25" + ], + "Date": [ + "Wed, 15 Jul 2015 01:19:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ceda0061-e88d-4c22-9f69-7b8ea8f78b20" + ], + "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": [ + "b45b1d8f-67e5-4191-b7a6-37fe3874cf25" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011911Z:b45b1d8f-67e5-4191-b7a6-37fe3874cf25" + ], + "Date": [ + "Wed, 15 Jul 2015 01:19:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ceda0061-e88d-4c22-9f69-7b8ea8f78b20" + ], + "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": [ + "b45b1d8f-67e5-4191-b7a6-37fe3874cf25" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011911Z:b45b1d8f-67e5-4191-b7a6-37fe3874cf25" + ], + "Date": [ + "Wed, 15 Jul 2015 01:19:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "34019553-bdbd-4fee-9782-5aa034a39925" + ], + "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": [ + "d72538e9-2b72-47aa-bee2-8a9d0bfa6069" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011942Z:d72538e9-2b72-47aa-bee2-8a9d0bfa6069" + ], + "Date": [ + "Wed, 15 Jul 2015 01:19:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "34019553-bdbd-4fee-9782-5aa034a39925" + ], + "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": [ + "d72538e9-2b72-47aa-bee2-8a9d0bfa6069" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011942Z:d72538e9-2b72-47aa-bee2-8a9d0bfa6069" + ], + "Date": [ + "Wed, 15 Jul 2015 01:19:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "34019553-bdbd-4fee-9782-5aa034a39925" + ], + "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": [ + "d72538e9-2b72-47aa-bee2-8a9d0bfa6069" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011942Z:d72538e9-2b72-47aa-bee2-8a9d0bfa6069" + ], + "Date": [ + "Wed, 15 Jul 2015 01:19:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "34019553-bdbd-4fee-9782-5aa034a39925" + ], + "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": [ + "d72538e9-2b72-47aa-bee2-8a9d0bfa6069" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T011942Z:d72538e9-2b72-47aa-bee2-8a9d0bfa6069" + ], + "Date": [ + "Wed, 15 Jul 2015 01:19:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "77222337-442f-4efa-a4fc-f7e06eee9eb6" + ], + "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": [ + "8206c37c-e9de-4769-b773-69650dd799fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012012Z:8206c37c-e9de-4769-b773-69650dd799fb" + ], + "Date": [ + "Wed, 15 Jul 2015 01:20:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "77222337-442f-4efa-a4fc-f7e06eee9eb6" + ], + "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": [ + "8206c37c-e9de-4769-b773-69650dd799fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012012Z:8206c37c-e9de-4769-b773-69650dd799fb" + ], + "Date": [ + "Wed, 15 Jul 2015 01:20:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "77222337-442f-4efa-a4fc-f7e06eee9eb6" + ], + "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": [ + "8206c37c-e9de-4769-b773-69650dd799fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012012Z:8206c37c-e9de-4769-b773-69650dd799fb" + ], + "Date": [ + "Wed, 15 Jul 2015 01:20:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "77222337-442f-4efa-a4fc-f7e06eee9eb6" + ], + "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": [ + "8206c37c-e9de-4769-b773-69650dd799fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012012Z:8206c37c-e9de-4769-b773-69650dd799fb" + ], + "Date": [ + "Wed, 15 Jul 2015 01:20:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e75e760b-050f-488f-b7cb-c0e73734994b" + ], + "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": [ + "dfd31d6c-bf01-4fff-bc11-838396402c79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012043Z:dfd31d6c-bf01-4fff-bc11-838396402c79" + ], + "Date": [ + "Wed, 15 Jul 2015 01:20:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e75e760b-050f-488f-b7cb-c0e73734994b" + ], + "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": [ + "dfd31d6c-bf01-4fff-bc11-838396402c79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012043Z:dfd31d6c-bf01-4fff-bc11-838396402c79" + ], + "Date": [ + "Wed, 15 Jul 2015 01:20:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e75e760b-050f-488f-b7cb-c0e73734994b" + ], + "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": [ + "dfd31d6c-bf01-4fff-bc11-838396402c79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012043Z:dfd31d6c-bf01-4fff-bc11-838396402c79" + ], + "Date": [ + "Wed, 15 Jul 2015 01:20:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "e75e760b-050f-488f-b7cb-c0e73734994b" + ], + "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": [ + "dfd31d6c-bf01-4fff-bc11-838396402c79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012043Z:dfd31d6c-bf01-4fff-bc11-838396402c79" + ], + "Date": [ + "Wed, 15 Jul 2015 01:20:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "81ffccea-7b4d-44aa-97f4-6cdfa603b99c" + ], + "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": [ + "98275207-da53-49bd-a8f0-a4053d1cd1e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012114Z:98275207-da53-49bd-a8f0-a4053d1cd1e7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:21:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "81ffccea-7b4d-44aa-97f4-6cdfa603b99c" + ], + "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": [ + "98275207-da53-49bd-a8f0-a4053d1cd1e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012114Z:98275207-da53-49bd-a8f0-a4053d1cd1e7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:21:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "81ffccea-7b4d-44aa-97f4-6cdfa603b99c" + ], + "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": [ + "98275207-da53-49bd-a8f0-a4053d1cd1e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012114Z:98275207-da53-49bd-a8f0-a4053d1cd1e7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:21:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "81ffccea-7b4d-44aa-97f4-6cdfa603b99c" + ], + "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": [ + "98275207-da53-49bd-a8f0-a4053d1cd1e7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012114Z:98275207-da53-49bd-a8f0-a4053d1cd1e7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:21:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d8b75e11-01b7-4fe5-a4b2-f8d49dcc6919" + ], + "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": [ + "171061eb-e160-48b6-8409-29111331b2ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012144Z:171061eb-e160-48b6-8409-29111331b2ff" + ], + "Date": [ + "Wed, 15 Jul 2015 01:21:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d8b75e11-01b7-4fe5-a4b2-f8d49dcc6919" + ], + "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": [ + "171061eb-e160-48b6-8409-29111331b2ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012144Z:171061eb-e160-48b6-8409-29111331b2ff" + ], + "Date": [ + "Wed, 15 Jul 2015 01:21:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d8b75e11-01b7-4fe5-a4b2-f8d49dcc6919" + ], + "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": [ + "171061eb-e160-48b6-8409-29111331b2ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012144Z:171061eb-e160-48b6-8409-29111331b2ff" + ], + "Date": [ + "Wed, 15 Jul 2015 01:21:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d8b75e11-01b7-4fe5-a4b2-f8d49dcc6919" + ], + "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": [ + "171061eb-e160-48b6-8409-29111331b2ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012144Z:171061eb-e160-48b6-8409-29111331b2ff" + ], + "Date": [ + "Wed, 15 Jul 2015 01:21:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "64743af5-cf33-420a-9db8-0b9eee1ae4b5" + ], + "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": [ + "684d40b7-7580-47ac-8c4d-c98efd92d330" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012215Z:684d40b7-7580-47ac-8c4d-c98efd92d330" + ], + "Date": [ + "Wed, 15 Jul 2015 01:22:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "64743af5-cf33-420a-9db8-0b9eee1ae4b5" + ], + "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": [ + "684d40b7-7580-47ac-8c4d-c98efd92d330" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012215Z:684d40b7-7580-47ac-8c4d-c98efd92d330" + ], + "Date": [ + "Wed, 15 Jul 2015 01:22:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "64743af5-cf33-420a-9db8-0b9eee1ae4b5" + ], + "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": [ + "684d40b7-7580-47ac-8c4d-c98efd92d330" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012215Z:684d40b7-7580-47ac-8c4d-c98efd92d330" + ], + "Date": [ + "Wed, 15 Jul 2015 01:22:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "64743af5-cf33-420a-9db8-0b9eee1ae4b5" + ], + "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": [ + "684d40b7-7580-47ac-8c4d-c98efd92d330" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012215Z:684d40b7-7580-47ac-8c4d-c98efd92d330" + ], + "Date": [ + "Wed, 15 Jul 2015 01:22:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f1943022-98f7-424c-af4f-e583948130e5" + ], + "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": [ + "37a5058a-5477-439d-aacc-f6deda3c56c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012246Z:37a5058a-5477-439d-aacc-f6deda3c56c9" + ], + "Date": [ + "Wed, 15 Jul 2015 01:22:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f1943022-98f7-424c-af4f-e583948130e5" + ], + "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": [ + "37a5058a-5477-439d-aacc-f6deda3c56c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012246Z:37a5058a-5477-439d-aacc-f6deda3c56c9" + ], + "Date": [ + "Wed, 15 Jul 2015 01:22:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f1943022-98f7-424c-af4f-e583948130e5" + ], + "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": [ + "37a5058a-5477-439d-aacc-f6deda3c56c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012246Z:37a5058a-5477-439d-aacc-f6deda3c56c9" + ], + "Date": [ + "Wed, 15 Jul 2015 01:22:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f1943022-98f7-424c-af4f-e583948130e5" + ], + "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": [ + "37a5058a-5477-439d-aacc-f6deda3c56c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012246Z:37a5058a-5477-439d-aacc-f6deda3c56c9" + ], + "Date": [ + "Wed, 15 Jul 2015 01:22:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fe8d59fa-0539-47c1-b142-9aeaf5867e08" + ], + "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": [ + "22e6cf0a-91f2-42dd-9fab-e6c9b0b5eedd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012317Z:22e6cf0a-91f2-42dd-9fab-e6c9b0b5eedd" + ], + "Date": [ + "Wed, 15 Jul 2015 01:23:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fe8d59fa-0539-47c1-b142-9aeaf5867e08" + ], + "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": [ + "22e6cf0a-91f2-42dd-9fab-e6c9b0b5eedd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012317Z:22e6cf0a-91f2-42dd-9fab-e6c9b0b5eedd" + ], + "Date": [ + "Wed, 15 Jul 2015 01:23:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fe8d59fa-0539-47c1-b142-9aeaf5867e08" + ], + "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": [ + "22e6cf0a-91f2-42dd-9fab-e6c9b0b5eedd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012317Z:22e6cf0a-91f2-42dd-9fab-e6c9b0b5eedd" + ], + "Date": [ + "Wed, 15 Jul 2015 01:23:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "fe8d59fa-0539-47c1-b142-9aeaf5867e08" + ], + "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": [ + "22e6cf0a-91f2-42dd-9fab-e6c9b0b5eedd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012317Z:22e6cf0a-91f2-42dd-9fab-e6c9b0b5eedd" + ], + "Date": [ + "Wed, 15 Jul 2015 01:23:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d96ed8f6-5183-4bd6-8959-f5b9bf87b0f4" + ], + "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": [ + "992f8a41-2563-4df1-8ea3-052ddebde3cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012348Z:992f8a41-2563-4df1-8ea3-052ddebde3cc" + ], + "Date": [ + "Wed, 15 Jul 2015 01:23:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d96ed8f6-5183-4bd6-8959-f5b9bf87b0f4" + ], + "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": [ + "992f8a41-2563-4df1-8ea3-052ddebde3cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012348Z:992f8a41-2563-4df1-8ea3-052ddebde3cc" + ], + "Date": [ + "Wed, 15 Jul 2015 01:23:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d96ed8f6-5183-4bd6-8959-f5b9bf87b0f4" + ], + "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": [ + "992f8a41-2563-4df1-8ea3-052ddebde3cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012348Z:992f8a41-2563-4df1-8ea3-052ddebde3cc" + ], + "Date": [ + "Wed, 15 Jul 2015 01:23:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d96ed8f6-5183-4bd6-8959-f5b9bf87b0f4" + ], + "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": [ + "992f8a41-2563-4df1-8ea3-052ddebde3cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012348Z:992f8a41-2563-4df1-8ea3-052ddebde3cc" + ], + "Date": [ + "Wed, 15 Jul 2015 01:23:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5ba164ef-5eaa-420f-9b19-5a44603d5209" + ], + "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": [ + "87c54775-f2b2-48ab-81a3-568dd95e8fd2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012419Z:87c54775-f2b2-48ab-81a3-568dd95e8fd2" + ], + "Date": [ + "Wed, 15 Jul 2015 01:24:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5ba164ef-5eaa-420f-9b19-5a44603d5209" + ], + "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": [ + "87c54775-f2b2-48ab-81a3-568dd95e8fd2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012419Z:87c54775-f2b2-48ab-81a3-568dd95e8fd2" + ], + "Date": [ + "Wed, 15 Jul 2015 01:24:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5ba164ef-5eaa-420f-9b19-5a44603d5209" + ], + "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": [ + "87c54775-f2b2-48ab-81a3-568dd95e8fd2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012419Z:87c54775-f2b2-48ab-81a3-568dd95e8fd2" + ], + "Date": [ + "Wed, 15 Jul 2015 01:24:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5ba164ef-5eaa-420f-9b19-5a44603d5209" + ], + "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": [ + "87c54775-f2b2-48ab-81a3-568dd95e8fd2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012419Z:87c54775-f2b2-48ab-81a3-568dd95e8fd2" + ], + "Date": [ + "Wed, 15 Jul 2015 01:24:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c8223ea8-d634-420c-894a-6d98de69d3f9" + ], + "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": [ + "dc4bcdc9-2570-44d5-a6be-f417f95dabf7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012450Z:dc4bcdc9-2570-44d5-a6be-f417f95dabf7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:24:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c8223ea8-d634-420c-894a-6d98de69d3f9" + ], + "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": [ + "dc4bcdc9-2570-44d5-a6be-f417f95dabf7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012450Z:dc4bcdc9-2570-44d5-a6be-f417f95dabf7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:24:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c8223ea8-d634-420c-894a-6d98de69d3f9" + ], + "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": [ + "dc4bcdc9-2570-44d5-a6be-f417f95dabf7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012450Z:dc4bcdc9-2570-44d5-a6be-f417f95dabf7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:24:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c8223ea8-d634-420c-894a-6d98de69d3f9" + ], + "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": [ + "dc4bcdc9-2570-44d5-a6be-f417f95dabf7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012450Z:dc4bcdc9-2570-44d5-a6be-f417f95dabf7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:24:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0bcdd4bb-d818-47b9-b064-957944722e27" + ], + "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": [ + "22ac1a87-fac2-4195-b8af-17ea85548825" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012521Z:22ac1a87-fac2-4195-b8af-17ea85548825" + ], + "Date": [ + "Wed, 15 Jul 2015 01:25:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0bcdd4bb-d818-47b9-b064-957944722e27" + ], + "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": [ + "22ac1a87-fac2-4195-b8af-17ea85548825" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012521Z:22ac1a87-fac2-4195-b8af-17ea85548825" + ], + "Date": [ + "Wed, 15 Jul 2015 01:25:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0bcdd4bb-d818-47b9-b064-957944722e27" + ], + "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": [ + "22ac1a87-fac2-4195-b8af-17ea85548825" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012521Z:22ac1a87-fac2-4195-b8af-17ea85548825" + ], + "Date": [ + "Wed, 15 Jul 2015 01:25:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0bcdd4bb-d818-47b9-b064-957944722e27" + ], + "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": [ + "22ac1a87-fac2-4195-b8af-17ea85548825" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012521Z:22ac1a87-fac2-4195-b8af-17ea85548825" + ], + "Date": [ + "Wed, 15 Jul 2015 01:25:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1266ffe5-0365-42fc-a0a3-9af385bfb8a9" + ], + "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": [ + "cac8257a-290a-4a8e-aea4-5731a2ead953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012551Z:cac8257a-290a-4a8e-aea4-5731a2ead953" + ], + "Date": [ + "Wed, 15 Jul 2015 01:25:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1266ffe5-0365-42fc-a0a3-9af385bfb8a9" + ], + "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": [ + "cac8257a-290a-4a8e-aea4-5731a2ead953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012551Z:cac8257a-290a-4a8e-aea4-5731a2ead953" + ], + "Date": [ + "Wed, 15 Jul 2015 01:25:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1266ffe5-0365-42fc-a0a3-9af385bfb8a9" + ], + "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": [ + "cac8257a-290a-4a8e-aea4-5731a2ead953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012551Z:cac8257a-290a-4a8e-aea4-5731a2ead953" + ], + "Date": [ + "Wed, 15 Jul 2015 01:25:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1266ffe5-0365-42fc-a0a3-9af385bfb8a9" + ], + "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": [ + "cac8257a-290a-4a8e-aea4-5731a2ead953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012551Z:cac8257a-290a-4a8e-aea4-5731a2ead953" + ], + "Date": [ + "Wed, 15 Jul 2015 01:25:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dffb2aa1-fed6-4138-b9f0-1c9f0bf25af1" + ], + "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": [ + "6ae012bf-cc36-492c-b464-b5c36521e46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012622Z:6ae012bf-cc36-492c-b464-b5c36521e46e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:26:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dffb2aa1-fed6-4138-b9f0-1c9f0bf25af1" + ], + "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": [ + "6ae012bf-cc36-492c-b464-b5c36521e46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012622Z:6ae012bf-cc36-492c-b464-b5c36521e46e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:26:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dffb2aa1-fed6-4138-b9f0-1c9f0bf25af1" + ], + "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": [ + "6ae012bf-cc36-492c-b464-b5c36521e46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012622Z:6ae012bf-cc36-492c-b464-b5c36521e46e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:26:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "dffb2aa1-fed6-4138-b9f0-1c9f0bf25af1" + ], + "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": [ + "6ae012bf-cc36-492c-b464-b5c36521e46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012622Z:6ae012bf-cc36-492c-b464-b5c36521e46e" + ], + "Date": [ + "Wed, 15 Jul 2015 01:26:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c487622-bd1d-4a1b-b7a3-3962c81c2ca1" + ], + "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": [ + "7a7ef519-daca-4bd1-a3a6-26b304f69bf5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012653Z:7a7ef519-daca-4bd1-a3a6-26b304f69bf5" + ], + "Date": [ + "Wed, 15 Jul 2015 01:26:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c487622-bd1d-4a1b-b7a3-3962c81c2ca1" + ], + "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": [ + "7a7ef519-daca-4bd1-a3a6-26b304f69bf5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012653Z:7a7ef519-daca-4bd1-a3a6-26b304f69bf5" + ], + "Date": [ + "Wed, 15 Jul 2015 01:26:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c487622-bd1d-4a1b-b7a3-3962c81c2ca1" + ], + "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": [ + "7a7ef519-daca-4bd1-a3a6-26b304f69bf5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012653Z:7a7ef519-daca-4bd1-a3a6-26b304f69bf5" + ], + "Date": [ + "Wed, 15 Jul 2015 01:26:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2c487622-bd1d-4a1b-b7a3-3962c81c2ca1" + ], + "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": [ + "7a7ef519-daca-4bd1-a3a6-26b304f69bf5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012653Z:7a7ef519-daca-4bd1-a3a6-26b304f69bf5" + ], + "Date": [ + "Wed, 15 Jul 2015 01:26:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47f16a4f-71e2-4d8d-b05c-f70219351da4" + ], + "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": [ + "8cb43497-da13-4459-9cf2-72f056083f18" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012724Z:8cb43497-da13-4459-9cf2-72f056083f18" + ], + "Date": [ + "Wed, 15 Jul 2015 01:27:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47f16a4f-71e2-4d8d-b05c-f70219351da4" + ], + "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": [ + "8cb43497-da13-4459-9cf2-72f056083f18" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012724Z:8cb43497-da13-4459-9cf2-72f056083f18" + ], + "Date": [ + "Wed, 15 Jul 2015 01:27:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47f16a4f-71e2-4d8d-b05c-f70219351da4" + ], + "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": [ + "8cb43497-da13-4459-9cf2-72f056083f18" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012724Z:8cb43497-da13-4459-9cf2-72f056083f18" + ], + "Date": [ + "Wed, 15 Jul 2015 01:27:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47f16a4f-71e2-4d8d-b05c-f70219351da4" + ], + "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": [ + "8cb43497-da13-4459-9cf2-72f056083f18" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012724Z:8cb43497-da13-4459-9cf2-72f056083f18" + ], + "Date": [ + "Wed, 15 Jul 2015 01:27:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "22704e11-a5a8-47e9-99c1-c98adf2811ea" + ], + "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": [ + "ba6fa700-c349-4af7-b201-4025264e5610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012754Z:ba6fa700-c349-4af7-b201-4025264e5610" + ], + "Date": [ + "Wed, 15 Jul 2015 01:27:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "22704e11-a5a8-47e9-99c1-c98adf2811ea" + ], + "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": [ + "ba6fa700-c349-4af7-b201-4025264e5610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012754Z:ba6fa700-c349-4af7-b201-4025264e5610" + ], + "Date": [ + "Wed, 15 Jul 2015 01:27:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "22704e11-a5a8-47e9-99c1-c98adf2811ea" + ], + "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": [ + "ba6fa700-c349-4af7-b201-4025264e5610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012754Z:ba6fa700-c349-4af7-b201-4025264e5610" + ], + "Date": [ + "Wed, 15 Jul 2015 01:27:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "22704e11-a5a8-47e9-99c1-c98adf2811ea" + ], + "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": [ + "ba6fa700-c349-4af7-b201-4025264e5610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012754Z:ba6fa700-c349-4af7-b201-4025264e5610" + ], + "Date": [ + "Wed, 15 Jul 2015 01:27:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a932769c-e755-4c45-a5ec-7735130fdf58" + ], + "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": [ + "f330c0a2-4eba-473a-8cb1-bf25f5b8dec0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012825Z:f330c0a2-4eba-473a-8cb1-bf25f5b8dec0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a932769c-e755-4c45-a5ec-7735130fdf58" + ], + "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": [ + "f330c0a2-4eba-473a-8cb1-bf25f5b8dec0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012825Z:f330c0a2-4eba-473a-8cb1-bf25f5b8dec0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a932769c-e755-4c45-a5ec-7735130fdf58" + ], + "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": [ + "f330c0a2-4eba-473a-8cb1-bf25f5b8dec0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012825Z:f330c0a2-4eba-473a-8cb1-bf25f5b8dec0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a932769c-e755-4c45-a5ec-7735130fdf58" + ], + "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": [ + "f330c0a2-4eba-473a-8cb1-bf25f5b8dec0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012825Z:f330c0a2-4eba-473a-8cb1-bf25f5b8dec0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\",\r\n \"endTime\": \"2015-07-14T18:28:32.7415382-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a23d8ee6-1e12-4df8-b206-7dbb3b2ae126" + ], + "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": [ + "e5c53bd8-3883-4bb0-a613-c7a95864c917" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012856Z:e5c53bd8-3883-4bb0-a613-c7a95864c917" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\",\r\n \"endTime\": \"2015-07-14T18:28:32.7415382-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a23d8ee6-1e12-4df8-b206-7dbb3b2ae126" + ], + "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": [ + "e5c53bd8-3883-4bb0-a613-c7a95864c917" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012856Z:e5c53bd8-3883-4bb0-a613-c7a95864c917" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\",\r\n \"endTime\": \"2015-07-14T18:28:32.7415382-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a23d8ee6-1e12-4df8-b206-7dbb3b2ae126" + ], + "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": [ + "e5c53bd8-3883-4bb0-a613-c7a95864c917" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012856Z:e5c53bd8-3883-4bb0-a613-c7a95864c917" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/6bb3838a-9c43-49f4-8340-3f32f8876059?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzZiYjM4MzhhLTljNDMtNDlmNC04MzQwLTNmMzJmODg3NjA1OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"6bb3838a-9c43-49f4-8340-3f32f8876059\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:18:06.9290983-07:00\",\r\n \"endTime\": \"2015-07-14T18:28:32.7415382-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a23d8ee6-1e12-4df8-b206-7dbb3b2ae126" + ], + "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": [ + "e5c53bd8-3883-4bb0-a613-c7a95864c917" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012856Z:e5c53bd8-3883-4bb0-a613-c7a95864c917" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47e66e21-8afd-466a-a7aa-45fdaab34b33" + ], + "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": [ + "0fd0c62d-cec2-4082-9878-df7666b5c8da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:0fd0c62d-cec2-4082-9878-df7666b5c8da" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47e66e21-8afd-466a-a7aa-45fdaab34b33" + ], + "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": [ + "0fd0c62d-cec2-4082-9878-df7666b5c8da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:0fd0c62d-cec2-4082-9878-df7666b5c8da" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47e66e21-8afd-466a-a7aa-45fdaab34b33" + ], + "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": [ + "0fd0c62d-cec2-4082-9878-df7666b5c8da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:0fd0c62d-cec2-4082-9878-df7666b5c8da" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "47e66e21-8afd-466a-a7aa-45fdaab34b33" + ], + "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": [ + "0fd0c62d-cec2-4082-9878-df7666b5c8da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:0fd0c62d-cec2-4082-9878-df7666b5c8da" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f1059a72-49c6-4956-8e6f-450fa617d101" + ], + "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": [ + "a81d01c8-5a4b-4968-a5a8-c2c232af88b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:a81d01c8-5a4b-4968-a5a8-c2c232af88b0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f1059a72-49c6-4956-8e6f-450fa617d101" + ], + "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": [ + "a81d01c8-5a4b-4968-a5a8-c2c232af88b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:a81d01c8-5a4b-4968-a5a8-c2c232af88b0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f1059a72-49c6-4956-8e6f-450fa617d101" + ], + "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": [ + "a81d01c8-5a4b-4968-a5a8-c2c232af88b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:a81d01c8-5a4b-4968-a5a8-c2c232af88b0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/pslibtest7935/ospslibtest9240.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Network/networkInterfaces/azsmnet8418\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014\",\r\n \"name\": \"vm3014\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f1059a72-49c6-4956-8e6f-450fa617d101" + ], + "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": [ + "a81d01c8-5a4b-4968-a5a8-c2c232af88b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:a81d01c8-5a4b-4968-a5a8-c2c232af88b0" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/start?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a561eac8-7d63-47df-9f5f-40f8ebf9f19b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "7e0d72d5-8ab4-4735-81f6-c2a34e9ed8a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:7e0d72d5-8ab4-4735-81f6-c2a34e9ed8a4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/start?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a561eac8-7d63-47df-9f5f-40f8ebf9f19b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "7e0d72d5-8ab4-4735-81f6-c2a34e9ed8a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:7e0d72d5-8ab4-4735-81f6-c2a34e9ed8a4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/start?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a561eac8-7d63-47df-9f5f-40f8ebf9f19b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "7e0d72d5-8ab4-4735-81f6-c2a34e9ed8a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:7e0d72d5-8ab4-4735-81f6-c2a34e9ed8a4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/start?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a561eac8-7d63-47df-9f5f-40f8ebf9f19b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "7e0d72d5-8ab4-4735-81f6-c2a34e9ed8a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012857Z:7e0d72d5-8ab4-4735-81f6-c2a34e9ed8a4" + ], + "Date": [ + "Wed, 15 Jul 2015 01:28:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E1NjFlYWM4LTdkNjMtNDdkZi05ZjVmLTQwZjhlYmY5ZjE5Yj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a561eac8-7d63-47df-9f5f-40f8ebf9f19b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:28:56.9603498-07:00\",\r\n \"endTime\": \"2015-07-14T18:28:57.3353523-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c4f56be7-d232-4c0f-9c7d-8b08dbeb4103" + ], + "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": [ + "2af29869-6340-49d3-b187-ce826a6b4f08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012928Z:2af29869-6340-49d3-b187-ce826a6b4f08" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E1NjFlYWM4LTdkNjMtNDdkZi05ZjVmLTQwZjhlYmY5ZjE5Yj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a561eac8-7d63-47df-9f5f-40f8ebf9f19b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:28:56.9603498-07:00\",\r\n \"endTime\": \"2015-07-14T18:28:57.3353523-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c4f56be7-d232-4c0f-9c7d-8b08dbeb4103" + ], + "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": [ + "2af29869-6340-49d3-b187-ce826a6b4f08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012928Z:2af29869-6340-49d3-b187-ce826a6b4f08" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E1NjFlYWM4LTdkNjMtNDdkZi05ZjVmLTQwZjhlYmY5ZjE5Yj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a561eac8-7d63-47df-9f5f-40f8ebf9f19b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:28:56.9603498-07:00\",\r\n \"endTime\": \"2015-07-14T18:28:57.3353523-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c4f56be7-d232-4c0f-9c7d-8b08dbeb4103" + ], + "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": [ + "2af29869-6340-49d3-b187-ce826a6b4f08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012928Z:2af29869-6340-49d3-b187-ce826a6b4f08" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a561eac8-7d63-47df-9f5f-40f8ebf9f19b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E1NjFlYWM4LTdkNjMtNDdkZi05ZjVmLTQwZjhlYmY5ZjE5Yj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a561eac8-7d63-47df-9f5f-40f8ebf9f19b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:28:56.9603498-07:00\",\r\n \"endTime\": \"2015-07-14T18:28:57.3353523-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c4f56be7-d232-4c0f-9c7d-8b08dbeb4103" + ], + "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": [ + "2af29869-6340-49d3-b187-ce826a6b4f08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012928Z:2af29869-6340-49d3-b187-ce826a6b4f08" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a3992e0e-8645-49ff-a773-9d212e0cc764" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "15d876c4-0ffe-42ea-a995-eeae12c86fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012928Z:15d876c4-0ffe-42ea-a995-eeae12c86fa5" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a3992e0e-8645-49ff-a773-9d212e0cc764" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "15d876c4-0ffe-42ea-a995-eeae12c86fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012928Z:15d876c4-0ffe-42ea-a995-eeae12c86fa5" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a3992e0e-8645-49ff-a773-9d212e0cc764" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "15d876c4-0ffe-42ea-a995-eeae12c86fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012928Z:15d876c4-0ffe-42ea-a995-eeae12c86fa5" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a3992e0e-8645-49ff-a773-9d212e0cc764" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "15d876c4-0ffe-42ea-a995-eeae12c86fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012928Z:15d876c4-0ffe-42ea-a995-eeae12c86fa5" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EzOTkyZTBlLTg2NDUtNDlmZi1hNzczLTlkMjEyZTBjYzc2ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a3992e0e-8645-49ff-a773-9d212e0cc764\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:29:28.2103489-07:00\",\r\n \"endTime\": \"2015-07-14T18:29:30.3352871-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "827dfec3-34ca-46a2-965e-3d799bed7430" + ], + "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": [ + "3ce94e00-93cf-432a-a4d8-0e23e21db713" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012959Z:3ce94e00-93cf-432a-a4d8-0e23e21db713" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EzOTkyZTBlLTg2NDUtNDlmZi1hNzczLTlkMjEyZTBjYzc2ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a3992e0e-8645-49ff-a773-9d212e0cc764\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:29:28.2103489-07:00\",\r\n \"endTime\": \"2015-07-14T18:29:30.3352871-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "827dfec3-34ca-46a2-965e-3d799bed7430" + ], + "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": [ + "3ce94e00-93cf-432a-a4d8-0e23e21db713" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012959Z:3ce94e00-93cf-432a-a4d8-0e23e21db713" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EzOTkyZTBlLTg2NDUtNDlmZi1hNzczLTlkMjEyZTBjYzc2ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a3992e0e-8645-49ff-a773-9d212e0cc764\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:29:28.2103489-07:00\",\r\n \"endTime\": \"2015-07-14T18:29:30.3352871-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "827dfec3-34ca-46a2-965e-3d799bed7430" + ], + "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": [ + "3ce94e00-93cf-432a-a4d8-0e23e21db713" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012959Z:3ce94e00-93cf-432a-a4d8-0e23e21db713" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/a3992e0e-8645-49ff-a773-9d212e0cc764?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EzOTkyZTBlLTg2NDUtNDlmZi1hNzczLTlkMjEyZTBjYzc2ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"a3992e0e-8645-49ff-a773-9d212e0cc764\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:29:28.2103489-07:00\",\r\n \"endTime\": \"2015-07-14T18:29:30.3352871-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "827dfec3-34ca-46a2-965e-3d799bed7430" + ], + "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": [ + "3ce94e00-93cf-432a-a4d8-0e23e21db713" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T012959Z:3ce94e00-93cf-432a-a4d8-0e23e21db713" + ], + "Date": [ + "Wed, 15 Jul 2015 01:29:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/powerOff?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3Bvd2VyT2ZmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f62f4536-d1d2-4969-af19-a940f4aff06c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "83d34f20-3b2c-4f4a-9fce-0fc8ebc1d3a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013000Z:83d34f20-3b2c-4f4a-9fce-0fc8ebc1d3a7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/powerOff?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3Bvd2VyT2ZmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f62f4536-d1d2-4969-af19-a940f4aff06c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "83d34f20-3b2c-4f4a-9fce-0fc8ebc1d3a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013000Z:83d34f20-3b2c-4f4a-9fce-0fc8ebc1d3a7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/powerOff?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3Bvd2VyT2ZmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f62f4536-d1d2-4969-af19-a940f4aff06c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "83d34f20-3b2c-4f4a-9fce-0fc8ebc1d3a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013000Z:83d34f20-3b2c-4f4a-9fce-0fc8ebc1d3a7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/powerOff?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L3Bvd2VyT2ZmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "f62f4536-d1d2-4969-af19-a940f4aff06c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "83d34f20-3b2c-4f4a-9fce-0fc8ebc1d3a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013000Z:83d34f20-3b2c-4f4a-9fce-0fc8ebc1d3a7" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2MmY0NTM2LWQxZDItNDk2OS1hZjE5LWE5NDBmNGFmZjA2Yz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f62f4536-d1d2-4969-af19-a940f4aff06c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:29:59.3978447-07:00\",\r\n \"endTime\": \"2015-07-14T18:30:13.7259847-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5075b5cb-eb69-4df3-8567-0f7d0f3a38b4" + ], + "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": [ + "2919af42-9b0e-47d2-9c9f-523282832a8c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013030Z:2919af42-9b0e-47d2-9c9f-523282832a8c" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2MmY0NTM2LWQxZDItNDk2OS1hZjE5LWE5NDBmNGFmZjA2Yz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f62f4536-d1d2-4969-af19-a940f4aff06c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:29:59.3978447-07:00\",\r\n \"endTime\": \"2015-07-14T18:30:13.7259847-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5075b5cb-eb69-4df3-8567-0f7d0f3a38b4" + ], + "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": [ + "2919af42-9b0e-47d2-9c9f-523282832a8c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013030Z:2919af42-9b0e-47d2-9c9f-523282832a8c" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2MmY0NTM2LWQxZDItNDk2OS1hZjE5LWE5NDBmNGFmZjA2Yz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f62f4536-d1d2-4969-af19-a940f4aff06c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:29:59.3978447-07:00\",\r\n \"endTime\": \"2015-07-14T18:30:13.7259847-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5075b5cb-eb69-4df3-8567-0f7d0f3a38b4" + ], + "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": [ + "2919af42-9b0e-47d2-9c9f-523282832a8c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013030Z:2919af42-9b0e-47d2-9c9f-523282832a8c" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/f62f4536-d1d2-4969-af19-a940f4aff06c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Y2MmY0NTM2LWQxZDItNDk2OS1hZjE5LWE5NDBmNGFmZjA2Yz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f62f4536-d1d2-4969-af19-a940f4aff06c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:29:59.3978447-07:00\",\r\n \"endTime\": \"2015-07-14T18:30:13.7259847-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "5075b5cb-eb69-4df3-8567-0f7d0f3a38b4" + ], + "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": [ + "2919af42-9b0e-47d2-9c9f-523282832a8c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013030Z:2919af42-9b0e-47d2-9c9f-523282832a8c" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/deallocate?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2RlYWxsb2NhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7a25b35f-e525-434c-84d9-5c5a3e460de6" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "95c07e64-1dff-4206-818b-884b4e479b29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013031Z:95c07e64-1dff-4206-818b-884b4e479b29" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/deallocate?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2RlYWxsb2NhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7a25b35f-e525-434c-84d9-5c5a3e460de6" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "95c07e64-1dff-4206-818b-884b4e479b29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013031Z:95c07e64-1dff-4206-818b-884b4e479b29" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/deallocate?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2RlYWxsb2NhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7a25b35f-e525-434c-84d9-5c5a3e460de6" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "95c07e64-1dff-4206-818b-884b4e479b29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013031Z:95c07e64-1dff-4206-818b-884b4e479b29" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/deallocate?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2RlYWxsb2NhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "7a25b35f-e525-434c-84d9-5c5a3e460de6" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "95c07e64-1dff-4206-818b-884b4e479b29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013031Z:95c07e64-1dff-4206-818b-884b4e479b29" + ], + "Date": [ + "Wed, 15 Jul 2015 01:30:30 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "003cd050-57c5-4811-84c0-62411e6ead67" + ], + "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": [ + "63961e7d-d035-434c-9004-cda81bca77da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013101Z:63961e7d-d035-434c-9004-cda81bca77da" + ], + "Date": [ + "Wed, 15 Jul 2015 01:31:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "003cd050-57c5-4811-84c0-62411e6ead67" + ], + "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": [ + "63961e7d-d035-434c-9004-cda81bca77da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013101Z:63961e7d-d035-434c-9004-cda81bca77da" + ], + "Date": [ + "Wed, 15 Jul 2015 01:31:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "003cd050-57c5-4811-84c0-62411e6ead67" + ], + "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": [ + "63961e7d-d035-434c-9004-cda81bca77da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013101Z:63961e7d-d035-434c-9004-cda81bca77da" + ], + "Date": [ + "Wed, 15 Jul 2015 01:31:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "003cd050-57c5-4811-84c0-62411e6ead67" + ], + "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": [ + "63961e7d-d035-434c-9004-cda81bca77da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013101Z:63961e7d-d035-434c-9004-cda81bca77da" + ], + "Date": [ + "Wed, 15 Jul 2015 01:31:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "10742bf8-35a2-4cbd-bdb0-11711dc05f02" + ], + "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": [ + "97707f52-579a-480c-a3f5-c35912be1528" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013132Z:97707f52-579a-480c-a3f5-c35912be1528" + ], + "Date": [ + "Wed, 15 Jul 2015 01:31:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "10742bf8-35a2-4cbd-bdb0-11711dc05f02" + ], + "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": [ + "97707f52-579a-480c-a3f5-c35912be1528" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013132Z:97707f52-579a-480c-a3f5-c35912be1528" + ], + "Date": [ + "Wed, 15 Jul 2015 01:31:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "10742bf8-35a2-4cbd-bdb0-11711dc05f02" + ], + "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": [ + "97707f52-579a-480c-a3f5-c35912be1528" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013132Z:97707f52-579a-480c-a3f5-c35912be1528" + ], + "Date": [ + "Wed, 15 Jul 2015 01:31:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "10742bf8-35a2-4cbd-bdb0-11711dc05f02" + ], + "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": [ + "97707f52-579a-480c-a3f5-c35912be1528" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013132Z:97707f52-579a-480c-a3f5-c35912be1528" + ], + "Date": [ + "Wed, 15 Jul 2015 01:31:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "59ce0077-9781-48ff-98ab-4ac13df35228" + ], + "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": [ + "f2ddf696-aecf-4e56-937b-f4453f8a2551" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013202Z:f2ddf696-aecf-4e56-937b-f4453f8a2551" + ], + "Date": [ + "Wed, 15 Jul 2015 01:32:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "59ce0077-9781-48ff-98ab-4ac13df35228" + ], + "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": [ + "f2ddf696-aecf-4e56-937b-f4453f8a2551" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013202Z:f2ddf696-aecf-4e56-937b-f4453f8a2551" + ], + "Date": [ + "Wed, 15 Jul 2015 01:32:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "59ce0077-9781-48ff-98ab-4ac13df35228" + ], + "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": [ + "f2ddf696-aecf-4e56-937b-f4453f8a2551" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013202Z:f2ddf696-aecf-4e56-937b-f4453f8a2551" + ], + "Date": [ + "Wed, 15 Jul 2015 01:32:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "59ce0077-9781-48ff-98ab-4ac13df35228" + ], + "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": [ + "f2ddf696-aecf-4e56-937b-f4453f8a2551" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013202Z:f2ddf696-aecf-4e56-937b-f4453f8a2551" + ], + "Date": [ + "Wed, 15 Jul 2015 01:32:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bd7fc05d-a3f9-483d-b1d5-cd3368ac5d8e" + ], + "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": [ + "78178747-7c8d-4a72-a80e-edfd4e744d87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013233Z:78178747-7c8d-4a72-a80e-edfd4e744d87" + ], + "Date": [ + "Wed, 15 Jul 2015 01:32:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bd7fc05d-a3f9-483d-b1d5-cd3368ac5d8e" + ], + "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": [ + "78178747-7c8d-4a72-a80e-edfd4e744d87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013233Z:78178747-7c8d-4a72-a80e-edfd4e744d87" + ], + "Date": [ + "Wed, 15 Jul 2015 01:32:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bd7fc05d-a3f9-483d-b1d5-cd3368ac5d8e" + ], + "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": [ + "78178747-7c8d-4a72-a80e-edfd4e744d87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013233Z:78178747-7c8d-4a72-a80e-edfd4e744d87" + ], + "Date": [ + "Wed, 15 Jul 2015 01:32:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "bd7fc05d-a3f9-483d-b1d5-cd3368ac5d8e" + ], + "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": [ + "78178747-7c8d-4a72-a80e-edfd4e744d87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013233Z:78178747-7c8d-4a72-a80e-edfd4e744d87" + ], + "Date": [ + "Wed, 15 Jul 2015 01:32:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\",\r\n \"endTime\": \"2015-07-14T18:33:03.3196638-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4e3cf3a0-6d6c-42a6-802f-ea00681a82b1" + ], + "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": [ + "0a76af43-1504-43ec-9fdc-a8e5c196b6a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013304Z:0a76af43-1504-43ec-9fdc-a8e5c196b6a8" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\",\r\n \"endTime\": \"2015-07-14T18:33:03.3196638-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4e3cf3a0-6d6c-42a6-802f-ea00681a82b1" + ], + "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": [ + "0a76af43-1504-43ec-9fdc-a8e5c196b6a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013304Z:0a76af43-1504-43ec-9fdc-a8e5c196b6a8" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\",\r\n \"endTime\": \"2015-07-14T18:33:03.3196638-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4e3cf3a0-6d6c-42a6-802f-ea00681a82b1" + ], + "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": [ + "0a76af43-1504-43ec-9fdc-a8e5c196b6a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013304Z:0a76af43-1504-43ec-9fdc-a8e5c196b6a8" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/7a25b35f-e525-434c-84d9-5c5a3e460de6?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdhMjViMzVmLWU1MjUtNDM0Yy04NGQ5LTVjNWEzZTQ2MGRlNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7a25b35f-e525-434c-84d9-5c5a3e460de6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:30:30.3666165-07:00\",\r\n \"endTime\": \"2015-07-14T18:33:03.3196638-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4e3cf3a0-6d6c-42a6-802f-ea00681a82b1" + ], + "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": [ + "0a76af43-1504-43ec-9fdc-a8e5c196b6a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013304Z:0a76af43-1504-43ec-9fdc-a8e5c196b6a8" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/generalize?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2dlbmVyYWxpemU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "549574b1-0484-4330-a9bc-642e82a651ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "9d6ec4ec-43bf-4d47-a33d-b23a2896f135" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013305Z:9d6ec4ec-43bf-4d47-a33d-b23a2896f135" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/generalize?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2dlbmVyYWxpemU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "549574b1-0484-4330-a9bc-642e82a651ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "9d6ec4ec-43bf-4d47-a33d-b23a2896f135" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013305Z:9d6ec4ec-43bf-4d47-a33d-b23a2896f135" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/generalize?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2dlbmVyYWxpemU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "549574b1-0484-4330-a9bc-642e82a651ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "9d6ec4ec-43bf-4d47-a33d-b23a2896f135" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013305Z:9d6ec4ec-43bf-4d47-a33d-b23a2896f135" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/generalize?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2dlbmVyYWxpemU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "549574b1-0484-4330-a9bc-642e82a651ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "9d6ec4ec-43bf-4d47-a33d-b23a2896f135" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013305Z:9d6ec4ec-43bf-4d47-a33d-b23a2896f135" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/capture?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2NhcHR1cmU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"vhdPrefix\": \"pslibtest2521\",\r\n \"destinationContainerName\": \"pslibtest3126\",\r\n \"overwriteVhds\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "110" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "966a26b9-33d0-4b8e-ba76-cfa4f968aaa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "daa12042-2755-4f54-875f-a9fecebe6caa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013306Z:daa12042-2755-4f54-875f-a9fecebe6caa" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/capture?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2NhcHR1cmU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"vhdPrefix\": \"pslibtest2521\",\r\n \"destinationContainerName\": \"pslibtest3126\",\r\n \"overwriteVhds\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "110" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "966a26b9-33d0-4b8e-ba76-cfa4f968aaa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "daa12042-2755-4f54-875f-a9fecebe6caa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013306Z:daa12042-2755-4f54-875f-a9fecebe6caa" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/capture?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2NhcHR1cmU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"vhdPrefix\": \"pslibtest2521\",\r\n \"destinationContainerName\": \"pslibtest3126\",\r\n \"overwriteVhds\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "110" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "966a26b9-33d0-4b8e-ba76-cfa4f968aaa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "daa12042-2755-4f54-875f-a9fecebe6caa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013306Z:daa12042-2755-4f54-875f-a9fecebe6caa" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/virtualMachines/vm3014/capture?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcwMDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm0zMDE0L2NhcHR1cmU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"vhdPrefix\": \"pslibtest2521\",\r\n \"destinationContainerName\": \"pslibtest3126\",\r\n \"overwriteVhds\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "110" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "966a26b9-33d0-4b8e-ba76-cfa4f968aaa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "daa12042-2755-4f54-875f-a9fecebe6caa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013306Z:daa12042-2755-4f54-875f-a9fecebe6caa" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:06 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk2NmEyNmI5LTMzZDAtNGI4ZS1iYTc2LWNmYTRmOTY4YWFhNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"966a26b9-33d0-4b8e-ba76-cfa4f968aaa7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:33:05.6009176-07:00\",\r\n \"endTime\": \"2015-07-14T18:33:06.3978468-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A0\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n },\r\n \"availabilitySetId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"[parameters('availabilitySetId')]\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"pslibtest2521-osDisk.fb4b7728-3aa6-4522-a72c-9f71a04f68b6.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/system/Microsoft.Compute/Images/pslibtest3126/pslibtest2521-osDisk.fb4b7728-3aa6-4522-a72c-9f71a04f68b6.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/vmcontainer81a220f7-833b-44aa-be18-c19f160c1664/osDisk.81a220f7-833b-44aa-be18-c19f160c1664.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1099c2d2-91b0-4972-9be8-11c94f98ea0a" + ], + "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": [ + "585764af-5ef4-43ce-b550-7eb75d03dca1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013337Z:585764af-5ef4-43ce-b550-7eb75d03dca1" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk2NmEyNmI5LTMzZDAtNGI4ZS1iYTc2LWNmYTRmOTY4YWFhNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"966a26b9-33d0-4b8e-ba76-cfa4f968aaa7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:33:05.6009176-07:00\",\r\n \"endTime\": \"2015-07-14T18:33:06.3978468-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A0\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n },\r\n \"availabilitySetId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"[parameters('availabilitySetId')]\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"pslibtest2521-osDisk.fb4b7728-3aa6-4522-a72c-9f71a04f68b6.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/system/Microsoft.Compute/Images/pslibtest3126/pslibtest2521-osDisk.fb4b7728-3aa6-4522-a72c-9f71a04f68b6.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/vmcontainer81a220f7-833b-44aa-be18-c19f160c1664/osDisk.81a220f7-833b-44aa-be18-c19f160c1664.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1099c2d2-91b0-4972-9be8-11c94f98ea0a" + ], + "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": [ + "585764af-5ef4-43ce-b550-7eb75d03dca1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013337Z:585764af-5ef4-43ce-b550-7eb75d03dca1" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk2NmEyNmI5LTMzZDAtNGI4ZS1iYTc2LWNmYTRmOTY4YWFhNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"966a26b9-33d0-4b8e-ba76-cfa4f968aaa7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:33:05.6009176-07:00\",\r\n \"endTime\": \"2015-07-14T18:33:06.3978468-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A0\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n },\r\n \"availabilitySetId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"[parameters('availabilitySetId')]\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"pslibtest2521-osDisk.fb4b7728-3aa6-4522-a72c-9f71a04f68b6.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/system/Microsoft.Compute/Images/pslibtest3126/pslibtest2521-osDisk.fb4b7728-3aa6-4522-a72c-9f71a04f68b6.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/vmcontainer81a220f7-833b-44aa-be18-c19f160c1664/osDisk.81a220f7-833b-44aa-be18-c19f160c1664.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1099c2d2-91b0-4972-9be8-11c94f98ea0a" + ], + "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": [ + "585764af-5ef4-43ce-b550-7eb75d03dca1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013337Z:585764af-5ef4-43ce-b550-7eb75d03dca1" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/966a26b9-33d0-4b8e-ba76-cfa4f968aaa7?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk2NmEyNmI5LTMzZDAtNGI4ZS1iYTc2LWNmYTRmOTY4YWFhNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"966a26b9-33d0-4b8e-ba76-cfa4f968aaa7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T18:33:05.6009176-07:00\",\r\n \"endTime\": \"2015-07-14T18:33:06.3978468-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A0\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n },\r\n \"availabilitySetId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest70061/providers/Microsoft.Compute/availabilitySets/AS7658\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"[parameters('availabilitySetId')]\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"pslibtest2521-osDisk.fb4b7728-3aa6-4522-a72c-9f71a04f68b6.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/system/Microsoft.Compute/Images/pslibtest3126/pslibtest2521-osDisk.fb4b7728-3aa6-4522-a72c-9f71a04f68b6.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest619.blob.core.windows.net/vmcontainer81a220f7-833b-44aa-be18-c19f160c1664/osDisk.81a220f7-833b-44aa-be18-c19f160c1664.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2357" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "1099c2d2-91b0-4972-9be8-11c94f98ea0a" + ], + "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": [ + "585764af-5ef4-43ce-b550-7eb75d03dca1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013337Z:585764af-5ef4-43ce-b550-7eb75d03dca1" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "1185" + ], + "x-ms-request-id": [ + "d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "x-ms-correlation-request-id": [ + "d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013340Z:d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "1185" + ], + "x-ms-request-id": [ + "d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "x-ms-correlation-request-id": [ + "d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013340Z:d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "1185" + ], + "x-ms-request-id": [ + "d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "x-ms-correlation-request-id": [ + "d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013340Z:d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest70061?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcwMDYxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "1185" + ], + "x-ms-request-id": [ + "d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "x-ms-correlation-request-id": [ + "d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013340Z:d5c89720-d0da-45dd-9e7a-87fe34b8f605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14956" + ], + "x-ms-request-id": [ + "613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "x-ms-correlation-request-id": [ + "613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013356Z:613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14956" + ], + "x-ms-request-id": [ + "613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "x-ms-correlation-request-id": [ + "613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013356Z:613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14956" + ], + "x-ms-request-id": [ + "613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "x-ms-correlation-request-id": [ + "613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013356Z:613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14956" + ], + "x-ms-request-id": [ + "613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "x-ms-correlation-request-id": [ + "613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013356Z:613ee082-76c4-4f83-8b9f-955d3798f7f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:33:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "x-ms-correlation-request-id": [ + "220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013411Z:220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "x-ms-correlation-request-id": [ + "220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013411Z:220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "x-ms-correlation-request-id": [ + "220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013411Z:220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14955" + ], + "x-ms-request-id": [ + "220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "x-ms-correlation-request-id": [ + "220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013411Z:220ce567-fa2a-48fc-a54c-7bca72571be0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "x-ms-correlation-request-id": [ + "1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013427Z:1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "x-ms-correlation-request-id": [ + "1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013427Z:1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "x-ms-correlation-request-id": [ + "1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013427Z:1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14954" + ], + "x-ms-request-id": [ + "1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "x-ms-correlation-request-id": [ + "1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013427Z:1e1f29fd-71b1-4bf3-bce1-082ea61b579f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14953" + ], + "x-ms-request-id": [ + "9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "x-ms-correlation-request-id": [ + "9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013442Z:9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14953" + ], + "x-ms-request-id": [ + "9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "x-ms-correlation-request-id": [ + "9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013442Z:9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14953" + ], + "x-ms-request-id": [ + "9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "x-ms-correlation-request-id": [ + "9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013442Z:9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14953" + ], + "x-ms-request-id": [ + "9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "x-ms-correlation-request-id": [ + "9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013442Z:9bfdc2d0-fe78-4a05-a850-7fa4e118c0e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14952" + ], + "x-ms-request-id": [ + "3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "x-ms-correlation-request-id": [ + "3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013458Z:3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14952" + ], + "x-ms-request-id": [ + "3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "x-ms-correlation-request-id": [ + "3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013458Z:3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14952" + ], + "x-ms-request-id": [ + "3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "x-ms-correlation-request-id": [ + "3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013458Z:3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14952" + ], + "x-ms-request-id": [ + "3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "x-ms-correlation-request-id": [ + "3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013458Z:3fff7b67-a17b-4971-8620-65f22765f93a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:34:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14951" + ], + "x-ms-request-id": [ + "43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "x-ms-correlation-request-id": [ + "43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013513Z:43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14951" + ], + "x-ms-request-id": [ + "43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "x-ms-correlation-request-id": [ + "43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013513Z:43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14951" + ], + "x-ms-request-id": [ + "43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "x-ms-correlation-request-id": [ + "43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013513Z:43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14951" + ], + "x-ms-request-id": [ + "43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "x-ms-correlation-request-id": [ + "43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013513Z:43f8072a-1f37-4b83-aa14-a1480ba09454" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14950" + ], + "x-ms-request-id": [ + "c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "x-ms-correlation-request-id": [ + "c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013529Z:c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14950" + ], + "x-ms-request-id": [ + "c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "x-ms-correlation-request-id": [ + "c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013529Z:c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14950" + ], + "x-ms-request-id": [ + "c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "x-ms-correlation-request-id": [ + "c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013529Z:c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14950" + ], + "x-ms-request-id": [ + "c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "x-ms-correlation-request-id": [ + "c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013529Z:c5e4970e-540c-4a9b-9a19-a5a1b1adb0ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14949" + ], + "x-ms-request-id": [ + "2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "x-ms-correlation-request-id": [ + "2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013544Z:2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14949" + ], + "x-ms-request-id": [ + "2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "x-ms-correlation-request-id": [ + "2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013544Z:2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14949" + ], + "x-ms-request-id": [ + "2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "x-ms-correlation-request-id": [ + "2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013544Z:2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14949" + ], + "x-ms-request-id": [ + "2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "x-ms-correlation-request-id": [ + "2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013544Z:2a1c4d13-b8e6-4297-adaf-f960807cd482" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14948" + ], + "x-ms-request-id": [ + "0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "x-ms-correlation-request-id": [ + "0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013559Z:0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14948" + ], + "x-ms-request-id": [ + "0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "x-ms-correlation-request-id": [ + "0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013559Z:0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14948" + ], + "x-ms-request-id": [ + "0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "x-ms-correlation-request-id": [ + "0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013559Z:0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14948" + ], + "x-ms-request-id": [ + "0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "x-ms-correlation-request-id": [ + "0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013559Z:0659440f-e5f3-4943-8b5f-aa0e6cd25a8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:35:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14947" + ], + "x-ms-request-id": [ + "ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "x-ms-correlation-request-id": [ + "ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013615Z:ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14947" + ], + "x-ms-request-id": [ + "ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "x-ms-correlation-request-id": [ + "ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013615Z:ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14947" + ], + "x-ms-request-id": [ + "ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "x-ms-correlation-request-id": [ + "ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013615Z:ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14947" + ], + "x-ms-request-id": [ + "ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "x-ms-correlation-request-id": [ + "ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013615Z:ccae3dfa-1f2d-488e-8d8a-49a4c746bb36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14946" + ], + "x-ms-request-id": [ + "0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "x-ms-correlation-request-id": [ + "0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013630Z:0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14946" + ], + "x-ms-request-id": [ + "0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "x-ms-correlation-request-id": [ + "0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013630Z:0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14946" + ], + "x-ms-request-id": [ + "0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "x-ms-correlation-request-id": [ + "0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013630Z:0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14946" + ], + "x-ms-request-id": [ + "0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "x-ms-correlation-request-id": [ + "0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013630Z:0d2f49b3-a4fc-4c8f-81bf-a4650f84427a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14945" + ], + "x-ms-request-id": [ + "dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "x-ms-correlation-request-id": [ + "dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013646Z:dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14945" + ], + "x-ms-request-id": [ + "dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "x-ms-correlation-request-id": [ + "dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013646Z:dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14945" + ], + "x-ms-request-id": [ + "dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "x-ms-correlation-request-id": [ + "dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013646Z:dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14945" + ], + "x-ms-request-id": [ + "dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "x-ms-correlation-request-id": [ + "dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013646Z:dec440b3-ca6d-4dae-bbc3-2828300b2437" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:36:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14944" + ], + "x-ms-request-id": [ + "c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "x-ms-correlation-request-id": [ + "c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013701Z:c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:37:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14944" + ], + "x-ms-request-id": [ + "c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "x-ms-correlation-request-id": [ + "c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013701Z:c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:37:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14944" + ], + "x-ms-request-id": [ + "c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "x-ms-correlation-request-id": [ + "c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013701Z:c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:37:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "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-reads": [ + "14944" + ], + "x-ms-request-id": [ + "c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "x-ms-correlation-request-id": [ + "c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013701Z:c2278713-c118-420a-b9c7-edbbd246e24f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:37:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "x-ms-correlation-request-id": [ + "d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013717Z:d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:37:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "x-ms-correlation-request-id": [ + "d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013717Z:d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:37:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "x-ms-correlation-request-id": [ + "d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013717Z:d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:37:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MDA2MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTURBMk1TMVRUMVZVU0VWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUp6YjNWMGFHVmhjM1JoYzJsaEluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "x-ms-correlation-request-id": [ + "d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150715T013717Z:d4b4bd42-98c7-4681-be9a-42c261a65aa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Jul 2015 01:37:17 GMT" + ] + }, + "StatusCode": 200 } ], "Names": { "TestVMOperations": [ - "pslibtest9766", - "as8344", - "pslibtest8849", - "pslibtest8458", - "pslibtest8855" + "pslibtest7006", + "as7658", + "pslibtest619", + "pslibtest3126", + "pslibtest2521" ], "CreatePublicIP": [ - "azsmnet4821", - "azsmnet2279" + "azsmnet149", + "azsmnet7298" ], "CreateVNET": [ - "azsmnet483", - "azsmnet1839" + "azsmnet4474", + "azsmnet7718" ], "CreateNIC": [ - "azsmnet3947", - "azsmnet9618" + "azsmnet8418", + "azsmnet3577" ], "CreateDefaultVMInput": [ - "pslibtest4145", - "pslibtest848", - "pslibtest1935", - "vm5592" + "pslibtest7935", + "pslibtest2020", + "pslibtest9240", + "vm3014", + "Microsoft.Compute/virtualMachines9782" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index bd0d5fdc88622..3098a28d17be1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmJHRvcD0x", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "696c8538-e2a8-4d3d-974b-3389dc0fd58d" + "bc298099-d9b3-4d59-8cdd-83f8454f3fb1" ], "Cache-Control": [ "no-cache" @@ -38,40 +38,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "22af3808-4494-49d2-86cb-4f1413e1de28" + "8fc36a42-e891-48cc-9064-f63837a9ca48" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174515Z:22af3808-4494-49d2-86cb-4f1413e1de28" + "WESTUS:20150714T220057Z:8fc36a42-e891-48cc-9064-f63837a9ca48" ], "Date": [ - "Tue, 16 Jun 2015 17:45:14 GMT" + "Tue, 14 Jul 2015 22:00:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest7283?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcyODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283\",\r\n \"name\": \"pslibtest7283\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,50 +76,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "017e2285-efb4-4f2a-8a8b-ccfe9f62e4cb" + "bc298099-d9b3-4d59-8cdd-83f8454f3fb1" ], - "x-ms-correlation-request-id": [ - "017e2285-efb4-4f2a-8a8b-ccfe9f62e4cb" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T174516Z:017e2285-efb4-4f2a-8a8b-ccfe9f62e4cb" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "8fc36a42-e891-48cc-9064-f63837a9ca48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220057Z:8fc36a42-e891-48cc-9064-f63837a9ca48" ], "Date": [ - "Tue, 16 Jun 2015 17:45:15 GMT" + "Tue, 14 Jul 2015 22:00:57 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest7283?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcyODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "35" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283\",\r\n \"name\": \"pslibtest7283\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "186" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,53 +128,48 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a30fac36-9daf-4dc9-a15a-c8da4197b777" + "bc298099-d9b3-4d59-8cdd-83f8454f3fb1" ], - "x-ms-correlation-request-id": [ - "a30fac36-9daf-4dc9-a15a-c8da4197b777" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T174558Z:a30fac36-9daf-4dc9-a15a-c8da4197b777" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "8fc36a42-e891-48cc-9064-f63837a9ca48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220057Z:8fc36a42-e891-48cc-9064-f63837a9ca48" ], "Date": [ - "Tue, 16 Jun 2015 17:45:57 GMT" + "Tue, 14 Jul 2015 22:00:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Storage/storageAccounts/pslibtest4803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q0ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "95" - ], - "x-ms-client-request-id": [ - "2fc05f2c-c5fb-4ff2-a9f1-2f37993e1de6" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201504\",\r\n \"id\": \"/Subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "4" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,57 +180,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e0d8adc-6634-4f4d-babc-86262f9f70de" + "bc298099-d9b3-4d59-8cdd-83f8454f3fb1" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/3e0d8adc-6634-4f4d-babc-86262f9f70de?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], "x-ms-correlation-request-id": [ - "e039ae86-a8e2-43aa-81d6-e39fd0440354" + "8fc36a42-e891-48cc-9064-f63837a9ca48" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174520Z:e039ae86-a8e2-43aa-81d6-e39fd0440354" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20150714T220057Z:8fc36a42-e891-48cc-9064-f63837a9ca48" ], "Date": [ - "Tue, 16 Jun 2015 17:45:20 GMT" + "Tue, 14 Jul 2015 22:00:57 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/3e0d8adc-6634-4f4d-babc-86262f9f70de?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNlMGQ4YWRjLTY2MzQtNGY0ZC1iYWJjLTg2MjYyZjlmNzBkZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "f110cb3b-f8b7-42ca-9aee-41a1aa7f55f1" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514\",\r\n \"name\": \"pslibtest1514\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "4" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -254,57 +238,50 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "25" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "b04742dd-7cc0-49b1-841b-1ba99e218e8d" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/3e0d8adc-6634-4f4d-babc-86262f9f70de?monitor=true&api-version=2015-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "x-ms-correlation-request-id": [ - "9816ff69-7ba8-4926-bd51-1f6349f63fec" + "454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174520Z:9816ff69-7ba8-4926-bd51-1f6349f63fec" + "WESTUS:20150714T220100Z:454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 17:45:20 GMT" + "Tue, 14 Jul 2015 22:00:59 GMT" ] }, - "StatusCode": 202 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Storage/operations/3e0d8adc-6634-4f4d-babc-86262f9f70de?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNlMGQ4YWRjLTY2MzQtNGY0ZC1iYWJjLTg2MjYyZjlmNzBkZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "6cafa7cf-6b3b-4a59-a8e3-e37e182a6109" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514\",\r\n \"name\": \"pslibtest1514\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "73" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,51 +292,50 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "1db993bb-96f1-4108-8471-2dbd80b8b2a9" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "x-ms-request-id": [ + "454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "x-ms-correlation-request-id": [ - "c6feb155-b3c4-44e1-a617-a20b990e59dd" + "454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174546Z:c6feb155-b3c4-44e1-a617-a20b990e59dd" + "WESTUS:20150714T220100Z:454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 17:45:45 GMT" + "Tue, 14 Jul 2015 22:00:59 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "674eb2c3-ee00-4157-a2b9-b2c8e8b0e7d2" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Storage/storageAccounts/pslibtest4803\",\r\n \"name\": \"pslibtest4803\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest4803.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest4803.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest4803.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-16T17:45:17.8043632Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514\",\r\n \"name\": \"pslibtest1514\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -370,46 +346,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "0134fb1c-25b8-418e-83fb-4606938970d0" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "x-ms-request-id": [ + "454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "x-ms-correlation-request-id": [ - "a5565caf-fcc3-4bbf-9bb3-40b1bd26cc56" + "454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174556Z:a5565caf-fcc3-4bbf-9bb3-40b1bd26cc56" + "WESTUS:20150714T220100Z:454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Tue, 16 Jun 2015 17:45:55 GMT" + "Tue, 14 Jul 2015 22:00:59 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/VMDoesNotExist?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9WTURvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514\",\r\n \"name\": \"pslibtest1514\",\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" ], @@ -417,16 +401,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "ef8a0b06-ab6d-4fa5-bd3e-6d52b66cfc8c" + "454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "x-ms-correlation-request-id": [ - "ef8a0b06-ab6d-4fa5-bd3e-6d52b66cfc8c" + "454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174556Z:ef8a0b06-ab6d-4fa5-bd3e-6d52b66cfc8c" + "WESTUS:20150714T220100Z:454e9210-de2b-4cf8-9151-c67cdd1831ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,23 +419,35 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:45:56 GMT" + "Tue, 14 Jul 2015 22:00:59 GMT" ] }, - "StatusCode": 204 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/ASDoesNotExist?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvQVNEb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514\",\r\n \"name\": \"pslibtest1514\",\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" ], @@ -462,13 +458,13 @@ "1195" ], "x-ms-request-id": [ - "d5f023ae-6dfb-46dd-b67f-4e06881aacc9" + "80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" ], "x-ms-correlation-request-id": [ - "d5f023ae-6dfb-46dd-b67f-4e06881aacc9" + "80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174557Z:d5f023ae-6dfb-46dd-b67f-4e06881aacc9" + "WESTUS:20150714T220142Z:80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -477,31 +473,31 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:45:56 GMT" + "Tue, 14 Jul 2015 22:01:42 GMT" ] }, - "StatusCode": 204 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/publicIPAddresses/azsmnet4297/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0Mjk3Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1967\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "212" + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4297\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/publicIPAddresses/azsmnet4297\",\r\n \"etag\": \"W/\\\"99a1df98-b4e7-4e22-9782-e292fd19fb2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1967\",\r\n \"fqdn\": \"azsmnet1967.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514\",\r\n \"name\": \"pslibtest1514\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "579" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -512,14 +508,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-request-id": [ - "cda024e0-e989-446a-b3e8-657f3a1cdce5" + "80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/cda024e0-e989-446a-b3e8-657f3a1cdce5?api-version=2015-05-01-preview" + "x-ms-correlation-request-id": [ + "80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220142Z:80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -527,42 +526,32 @@ "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-correlation-request-id": [ - "f872d1ca-e939-4376-8a1e-b00010f139e7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T174603Z:f872d1ca-e939-4376-8a1e-b00010f139e7" - ], "Date": [ - "Tue, 16 Jun 2015 17:46:02 GMT" + "Tue, 14 Jul 2015 22:01:42 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/cda024e0-e989-446a-b3e8-657f3a1cdce5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NkYTAyNGUwLWU5ODktNDQ2YS1iM2U4LTY1N2YzYTFjZGNlNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514\",\r\n \"name\": \"pslibtest1514\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -573,8 +562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], "x-ms-request-id": [ - "cb687779-6578-4ba1-8bd2-8506544d6f56" + "80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" + ], + "x-ms-correlation-request-id": [ + "80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220142Z:80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,39 +580,32 @@ "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": [ - "85e5c1b3-ed6e-417d-956b-406ed2cecb32" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T174604Z:85e5c1b3-ed6e-417d-956b-406ed2cecb32" - ], "Date": [ - "Tue, 16 Jun 2015 17:46:03 GMT" + "Tue, 14 Jul 2015 22:01:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/publicIPAddresses/azsmnet4297/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0Mjk3Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4297\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/publicIPAddresses/azsmnet4297\",\r\n \"etag\": \"W/\\\"bea9c048-0f05-4cd4-b9fe-b7fabd6ca994\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet1967\",\r\n \"fqdn\": \"azsmnet1967.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514\",\r\n \"name\": \"pslibtest1514\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -625,8 +616,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], "x-ms-request-id": [ - "8c32896d-01f1-49a4-b76f-be9c095d8f46" + "80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" + ], + "x-ms-correlation-request-id": [ + "80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220142Z:80e7c0d0-a9c6-4d28-b0bb-6b16ce932fef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -634,48 +634,32 @@ "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"bea9c048-0f05-4cd4-b9fe-b7fabd6ca994\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "cd463ba5-89de-4ad9-8b0b-a8da0a2d0ad0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150616T174605Z:cd463ba5-89de-4ad9-8b0b-a8da0a2d0ad0" - ], "Date": [ - "Tue, 16 Jun 2015 17:46:05 GMT" + "Tue, 14 Jul 2015 22:01:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/virtualnetworks/azsmnet7209?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzIwOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3MjI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"azsmnet6436\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet7209\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/virtualNetworks/azsmnet7209\",\r\n \"etag\": \"W/\\\"8f320ce2-d4cc-49fc-aa8e-d3ca7664b86a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet6436\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/virtualNetworks/azsmnet7209/subnets/azsmnet6436\",\r\n \"etag\": \"W/\\\"8f320ce2-d4cc-49fc-aa8e-d3ca7664b86a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "959" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,56 +671,59 @@ "no-cache" ], "Retry-After": [ - "10" + "25" ], "x-ms-request-id": [ - "26db6098-d6d4-49f1-880c-87b9c764c447" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/26db6098-d6d4-49f1-880c-87b9c764c447?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6902c886-60de-4d3e-ba25-035d1cc92cc0" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/6902c886-60de-4d3e-ba25-035d1cc92cc0?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "48a1e0c6-0d88-4201-a7a8-aa65e230f393" + "29c81f9f-0ebd-4b15-9a31-5a743629bb8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174608Z:48a1e0c6-0d88-4201-a7a8-aa65e230f393" + "WESTUS:20150714T220105Z:29c81f9f-0ebd-4b15-9a31-5a743629bb8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:08 GMT" + "Tue, 14 Jul 2015 22:01:04 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/26db6098-d6d4-49f1-880c-87b9c764c447?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZGI2MDk4LWQ2ZDQtNDlmMS04ODBjLTg3YjljNzY0YzQ0Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3MjI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "29" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -747,48 +734,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "59bc61ed-f3fb-490b-b72d-120267ca9add" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "6902c886-60de-4d3e-ba25-035d1cc92cc0" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/6902c886-60de-4d3e-ba25-035d1cc92cc0?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "bf6dee07-e2bb-409d-9674-42bb6c95a9a5" + "29c81f9f-0ebd-4b15-9a31-5a743629bb8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174609Z:bf6dee07-e2bb-409d-9674-42bb6c95a9a5" + "WESTUS:20150714T220105Z:29c81f9f-0ebd-4b15-9a31-5a743629bb8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:08 GMT" + "Tue, 14 Jul 2015 22:01:04 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/virtualnetworks/azsmnet7209/subnets/azsmnet6436?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0NzIwOS9zdWJuZXRzL2F6c21uZXQ2NDM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3MjI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6436\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/virtualNetworks/azsmnet7209/subnets/azsmnet6436\",\r\n \"etag\": \"W/\\\"9115f94e-cd5b-4459-a64b-dafc0cdf7ee8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "355" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -799,57 +798,60 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "6ef1d17b-9628-4371-8894-ffb3461a1477" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "6902c886-60de-4d3e-ba25-035d1cc92cc0" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"9115f94e-cd5b-4459-a64b-dafc0cdf7ee8\"" + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/6902c886-60de-4d3e-ba25-035d1cc92cc0?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "13ba4f5e-5658-4fdb-958a-41e8190e19d8" + "29c81f9f-0ebd-4b15-9a31-5a743629bb8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174609Z:13ba4f5e-5658-4fdb-958a-41e8190e19d8" + "WESTUS:20150714T220105Z:29c81f9f-0ebd-4b15-9a31-5a743629bb8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:09 GMT" + "Tue, 14 Jul 2015 22:01:04 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxOTQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3MjI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/virtualNetworks/azsmnet7209/subnets/azsmnet6436\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/publicIPAddresses/azsmnet4297\"\r\n }\r\n },\r\n \"name\": \"azsmnet3909\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet1946\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Content-Length": [ - "716" + "95" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1946\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946\",\r\n \"etag\": \"W/\\\"605ad22e-43bc-48a1-a73e-7477d1384ca3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3909\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946/ipConfigurations/azsmnet3909\",\r\n \"etag\": \"W/\\\"605ad22e-43bc-48a1-a73e-7477d1384ca3\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/publicIPAddresses/azsmnet4297\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/virtualNetworks/azsmnet7209/subnets/azsmnet6436\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "null", "ResponseHeaders": { "Content-Length": [ - "1324" + "4" ], "Content-Type": [ "application/json; charset=utf-8" @@ -860,54 +862,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "7f281cb3-09f8-4b51-8f3b-efa6e7eeeb09" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/7f281cb3-09f8-4b51-8f3b-efa6e7eeeb09?api-version=2015-05-01-preview" + "Retry-After": [ + "25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "6902c886-60de-4d3e-ba25-035d1cc92cc0" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/6902c886-60de-4d3e-ba25-035d1cc92cc0?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "a8946d07-5618-4c23-b8d8-f56b77e7a466" + "29c81f9f-0ebd-4b15-9a31-5a743629bb8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174613Z:a8946d07-5618-4c23-b8d8-f56b77e7a466" + "WESTUS:20150714T220105Z:29c81f9f-0ebd-4b15-9a31-5a743629bb8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:13 GMT" + "Tue, 14 Jul 2015 22:01:04 GMT" ] }, - "StatusCode": 201 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Network/locations/southeastasia/operations/7f281cb3-09f8-4b51-8f3b-efa6e7eeeb09?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdmMjgxY2IzLTA5ZjgtNGI1MS04ZjNiLWVmYTZlN2VlZWIwOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/6902c886-60de-4d3e-ba25-035d1cc92cc0?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzY5MDJjODg2LTYwZGUtNGQzZS1iYTI1LTAzNWQxY2M5MmNjMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "29" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -919,10 +921,7 @@ "no-cache" ], "x-ms-request-id": [ - "9f185da6-0857-4476-bfcc-c47a844a5e01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "072cdf3b-6468-4750-9403-2078c855a4e6" ], "Cache-Control": [ "no-cache" @@ -932,34 +931,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14990" ], "x-ms-correlation-request-id": [ - "f6462033-264b-4804-ad60-08eb16ba354a" + "5a2d28fb-9d6d-4bb9-99af-954bbdf91aa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174614Z:f6462033-264b-4804-ad60-08eb16ba354a" + "WESTUS:20150714T220130Z:5a2d28fb-9d6d-4bb9-99af-954bbdf91aa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:13 GMT" + "Tue, 14 Jul 2015 22:01:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQxOTQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/6902c886-60de-4d3e-ba25-035d1cc92cc0?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzY5MDJjODg2LTYwZGUtNGQzZS1iYTI1LTAzNWQxY2M5MmNjMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet1946\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946\",\r\n \"etag\": \"W/\\\"605ad22e-43bc-48a1-a73e-7477d1384ca3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3909\",\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946/ipConfigurations/azsmnet3909\",\r\n \"etag\": \"W/\\\"605ad22e-43bc-48a1-a73e-7477d1384ca3\\\"\",\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/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/publicIPAddresses/azsmnet4297\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/virtualNetworks/azsmnet7209/subnets/azsmnet6436\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1324" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -971,17 +973,11 @@ "no-cache" ], "x-ms-request-id": [ - "47634889-a220-472e-b0f1-eee0cabb7ea2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "072cdf3b-6468-4750-9403-2078c855a4e6" ], "Cache-Control": [ "no-cache" ], - "ETag": [ - "W/\"605ad22e-43bc-48a1-a73e-7477d1384ca3\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -990,37 +986,34 @@ "14990" ], "x-ms-correlation-request-id": [ - "9ed5baa7-d0d5-4b14-8c34-e18d0cd160a6" + "5a2d28fb-9d6d-4bb9-99af-954bbdf91aa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174614Z:9ed5baa7-d0d5-4b14-8c34-e18d0cd160a6" + "WESTUS:20150714T220130Z:5a2d28fb-9d6d-4bb9-99af-954bbdf91aa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:14 GMT" + "Tue, 14 Jul 2015 22:01:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/as4164?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MTY0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"as4164\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/6902c886-60de-4d3e-ba25-035d1cc92cc0?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzY5MDJjODg2LTYwZGUtNGQzZS1iYTI1LTAzNWQxY2M5MmNjMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "133" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/as4164\",\r\n \"name\": \"as4164\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "403" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1031,11 +1024,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "c89dca37-4eb8-4604-be3a-cde4e237eb70" + "072cdf3b-6468-4750-9403-2078c855a4e6" ], "Cache-Control": [ "no-cache" @@ -1044,41 +1034,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-correlation-request-id": [ - "adcc0ecc-aa0f-4245-a1cd-f4288f6a9e27" + "5a2d28fb-9d6d-4bb9-99af-954bbdf91aa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174618Z:adcc0ecc-aa0f-4245-a1cd-f4288f6a9e27" + "WESTUS:20150714T220130Z:5a2d28fb-9d6d-4bb9-99af-954bbdf91aa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:18 GMT" + "Tue, 14 Jul 2015 22:01:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk0OTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4803.blob.core.windows.net/pslibtest4249/ospslibtest5052.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest7283\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/as4164\"\r\n }\r\n },\r\n \"name\": \"vm9499\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Storage/operations/6902c886-60de-4d3e-ba25-035d1cc92cc0?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzY5MDJjODg2LTYwZGUtNGQzZS1iYTI1LTAzNWQxY2M5MmNjMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1321" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/AS4164\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4803.blob.core.windows.net/pslibtest4249/ospslibtest5052.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499\",\r\n \"name\": \"vm9499\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1580" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1089,14 +1076,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/bdf38b65-ee93-4860-a260-f838b83f1ec4?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "bdf38b65-ee93-4860-a260-f838b83f1ec4" + "072cdf3b-6468-4750-9403-2078c855a4e6" ], "Cache-Control": [ "no-cache" @@ -1105,35 +1086,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-correlation-request-id": [ - "bed653e8-6a01-4850-8936-db31ea102497" + "5a2d28fb-9d6d-4bb9-99af-954bbdf91aa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174623Z:bed653e8-6a01-4850-8936-db31ea102497" + "WESTUS:20150714T220130Z:5a2d28fb-9d6d-4bb9-99af-954bbdf91aa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:22 GMT" + "Tue, 14 Jul 2015 22:01:30 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/bdf38b65-ee93-4860-a260-f838b83f1ec4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JkZjM4YjY1LWVlOTMtNDg2MC1hMjYwLWY4MzhiODNmMWVjND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bdf38b65-ee93-4860-a260-f838b83f1ec4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:46:21.121979-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227\",\r\n \"name\": \"pslibtest7227\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7227.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7227.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7227.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T22:01:02.7227338Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1144,11 +1128,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "38e68114-088c-4d4e-94c4-e72e6bbe13bd" + "dd822f91-a3bf-4cc3-85e7-c348c0ca5b50" ], "Cache-Control": [ "no-cache" @@ -1161,31 +1142,34 @@ "14989" ], "x-ms-correlation-request-id": [ - "5b9d4812-badc-4804-805b-9c1afb47be99" + "7c58c681-0c30-47d4-a456-7d1451ca6086" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174623Z:5b9d4812-badc-4804-805b-9c1afb47be99" + "WESTUS:20150714T220140Z:7c58c681-0c30-47d4-a456-7d1451ca6086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:23 GMT" + "Tue, 14 Jul 2015 22:01:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk0OTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/AS4164\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4803.blob.core.windows.net/pslibtest4249/ospslibtest5052.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499\",\r\n \"name\": \"vm9499\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227\",\r\n \"name\": \"pslibtest7227\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7227.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7227.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7227.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T22:01:02.7227338Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1580" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1196,11 +1180,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "bbafaead-7be4-4757-86a8-6fb8e8b2755c" + "dd822f91-a3bf-4cc3-85e7-c348c0ca5b50" ], "Cache-Control": [ "no-cache" @@ -1210,34 +1191,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14989" ], "x-ms-correlation-request-id": [ - "e0b38b87-8cf2-4b90-a038-1f7cf5f1f787" + "7c58c681-0c30-47d4-a456-7d1451ca6086" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174624Z:e0b38b87-8cf2-4b90-a038-1f7cf5f1f787" + "WESTUS:20150714T220140Z:7c58c681-0c30-47d4-a456-7d1451ca6086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:23 GMT" + "Tue, 14 Jul 2015 22:01:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk0OTk/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/AS4164\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4803.blob.core.windows.net/pslibtest4249/ospslibtest5052.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-06-16T10:46:24-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-06-16T10:46:22.731369-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499\",\r\n \"name\": \"vm9499\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227\",\r\n \"name\": \"pslibtest7227\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7227.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7227.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7227.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T22:01:02.7227338Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2507" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1248,11 +1232,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "1bd584e6-1486-4017-a769-11fdffc64dbe" + "dd822f91-a3bf-4cc3-85e7-c348c0ca5b50" ], "Cache-Control": [ "no-cache" @@ -1262,34 +1243,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14989" ], "x-ms-correlation-request-id": [ - "b6d4820f-d33d-47ea-819c-68c49e41089f" + "7c58c681-0c30-47d4-a456-7d1451ca6086" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174624Z:b6d4820f-d33d-47ea-819c-68c49e41089f" + "WESTUS:20150714T220140Z:7c58c681-0c30-47d4-a456-7d1451ca6086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:24 GMT" + "Tue, 14 Jul 2015 22:01:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/AS4164\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest4803.blob.core.windows.net/pslibtest4249/ospslibtest5052.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Network/networkInterfaces/azsmnet1946\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499\",\r\n \"name\": \"vm9499\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227\",\r\n \"name\": \"pslibtest7227\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7227.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7227.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7227.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T22:01:02.7227338Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1793" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1300,11 +1284,8 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "0edfe1ac-5af9-4378-ad72-1a699d841ad2" + "dd822f91-a3bf-4cc3-85e7-c348c0ca5b50" ], "Cache-Control": [ "no-cache" @@ -1314,34 +1295,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-correlation-request-id": [ - "9233637f-0a97-4ab3-aade-42789dcb3ecc" + "7c58c681-0c30-47d4-a456-7d1451ca6086" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174624Z:9233637f-0a97-4ab3-aade-42789dcb3ecc" + "WESTUS:20150714T220140Z:7c58c681-0c30-47d4-a456-7d1451ca6086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:24 GMT" + "Tue, 14 Jul 2015 22:01:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk0OTkvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3MjI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227\",\r\n \"name\": \"pslibtest7227\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7227.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7227.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7227.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T22:01:02.7227338Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5867" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1352,11 +1336,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "859a334b-ad43-4908-a717-11ea4eee5b96" + ], + "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": [ + "6af2b15a-3e85-475b-804a-c51d78bf660d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220140Z:6af2b15a-3e85-475b-804a-c51d78bf660d" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Tue, 14 Jul 2015 22:01:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3MjI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227\",\r\n \"name\": \"pslibtest7227\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7227.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7227.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7227.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T22:01:02.7227338Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "480278cf-bf20-45f6-aa8b-72552b237944" + "859a334b-ad43-4908-a717-11ea4eee5b96" ], "Cache-Control": [ "no-cache" @@ -1366,34 +1399,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14988" ], "x-ms-correlation-request-id": [ - "cdf51cea-7182-4864-9986-39182b5888a6" + "6af2b15a-3e85-475b-804a-c51d78bf660d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174625Z:cdf51cea-7182-4864-9986-39182b5888a6" + "WESTUS:20150714T220140Z:6af2b15a-3e85-475b-804a-c51d78bf660d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:24 GMT" + "Tue, 14 Jul 2015 22:01:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/availabilitySets/as4164/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MTY0L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3MjI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227\",\r\n \"name\": \"pslibtest7227\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7227.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7227.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7227.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T22:01:02.7227338Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5867" + "679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1404,11 +1440,60 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "859a334b-ad43-4908-a717-11ea4eee5b96" + ], + "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": [ + "6af2b15a-3e85-475b-804a-c51d78bf660d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220140Z:6af2b15a-3e85-475b-804a-c51d78bf660d" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Date": [ + "Tue, 14 Jul 2015 22:01:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc2xpYnRlc3Q3MjI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Storage/storageAccounts/pslibtest7227\",\r\n \"name\": \"pslibtest7227\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pslibtest7227.blob.core.windows.net/\",\r\n \"queue\": \"https://pslibtest7227.queue.core.windows.net/\",\r\n \"table\": \"https://pslibtest7227.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"Southeast Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-07-14T22:01:02.7227338Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "b3e36fa6-cde4-45ab-943b-339b1bd3c062" + "859a334b-ad43-4908-a717-11ea4eee5b96" ], "Cache-Control": [ "no-cache" @@ -1418,92 +1503,11064 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14988" ], "x-ms-correlation-request-id": [ - "106643e3-453a-4764-9dd4-a865c3a244a4" + "6af2b15a-3e85-475b-804a-c51d78bf660d" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174625Z:106643e3-453a-4764-9dd4-a865c3a244a4" + "WESTUS:20150714T220140Z:6af2b15a-3e85-475b-804a-c51d78bf660d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 16 Jun 2015 17:46:24 GMT" + "Tue, 14 Jul 2015 22:01:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourceGroups/pslibtest7283/providers/Microsoft.Compute/virtualMachines/vm9499?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDcyODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk0OTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/VMDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9WTURvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "907d2c40-3e69-4a88-9c89-5ac977a6c156" + ], + "x-ms-correlation-request-id": [ + "907d2c40-3e69-4a88-9c89-5ac977a6c156" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220141Z:907d2c40-3e69-4a88-9c89-5ac977a6c156" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:40 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/VMDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9WTURvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { "Expires": [ "-1" ], "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?api-version=2015-06-15" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "907d2c40-3e69-4a88-9c89-5ac977a6c156" + ], + "x-ms-correlation-request-id": [ + "907d2c40-3e69-4a88-9c89-5ac977a6c156" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220141Z:907d2c40-3e69-4a88-9c89-5ac977a6c156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:40 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/VMDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9WTURvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], "x-ms-request-id": [ - "025491f9-17bb-48d5-8a44-f7a9993e892d" + "907d2c40-3e69-4a88-9c89-5ac977a6c156" + ], + "x-ms-correlation-request-id": [ + "907d2c40-3e69-4a88-9c89-5ac977a6c156" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220141Z:907d2c40-3e69-4a88-9c89-5ac977a6c156" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?monitor=true&api-version=2015-06-15" + "Date": [ + "Tue, 14 Jul 2015 22:01:40 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/VMDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9WTURvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Pragma": [ + "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1197" + ], + "x-ms-request-id": [ + "907d2c40-3e69-4a88-9c89-5ac977a6c156" ], "x-ms-correlation-request-id": [ - "90742be1-118d-4938-a791-332d47443f4f" + "907d2c40-3e69-4a88-9c89-5ac977a6c156" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174627Z:90742be1-118d-4938-a791-332d47443f4f" + "WESTUS:20150714T220141Z:907d2c40-3e69-4a88-9c89-5ac977a6c156" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:46:26 GMT" + "Tue, 14 Jul 2015 22:01:40 GMT" ] }, - "StatusCode": 202 + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNTQ5MWY5LTE3YmItNDhkNS04YTQ0LWY3YTk5OTNlODkyZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/ASDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvQVNEb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"025491f9-17bb-48d5-8a44-f7a9993e892d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:46:25.8095142-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "141" + "Expires": [ + "-1" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "x-ms-correlation-request-id": [ + "55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220141Z:55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:41 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/ASDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvQVNEb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "x-ms-correlation-request-id": [ + "55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220141Z:55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:41 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/ASDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvQVNEb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "x-ms-correlation-request-id": [ + "55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220141Z:55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:41 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/ASDoesNotExist?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvQVNEb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "x-ms-correlation-request-id": [ + "55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220141Z:55194a3d-ed75-43ed-a9a5-e9b7375099ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:41 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"9263bea7-e52d-4ec2-8fa7-94af2f41664d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "665ccade-de8c-4aaf-a105-08468638d0b4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/665ccade-de8c-4aaf-a105-08468638d0b4?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "8b7b553a-bd06-4738-8e9b-c31432311fd5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220147Z:8b7b553a-bd06-4738-8e9b-c31432311fd5" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"9263bea7-e52d-4ec2-8fa7-94af2f41664d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "665ccade-de8c-4aaf-a105-08468638d0b4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/665ccade-de8c-4aaf-a105-08468638d0b4?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "8b7b553a-bd06-4738-8e9b-c31432311fd5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220147Z:8b7b553a-bd06-4738-8e9b-c31432311fd5" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"9263bea7-e52d-4ec2-8fa7-94af2f41664d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "665ccade-de8c-4aaf-a105-08468638d0b4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/665ccade-de8c-4aaf-a105-08468638d0b4?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "8b7b553a-bd06-4738-8e9b-c31432311fd5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220147Z:8b7b553a-bd06-4738-8e9b-c31432311fd5" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"9263bea7-e52d-4ec2-8fa7-94af2f41664d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "665ccade-de8c-4aaf-a105-08468638d0b4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/665ccade-de8c-4aaf-a105-08468638d0b4?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "8b7b553a-bd06-4738-8e9b-c31432311fd5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220147Z:8b7b553a-bd06-4738-8e9b-c31432311fd5" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:47 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/665ccade-de8c-4aaf-a105-08468638d0b4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2NWNjYWRlLWRlOGMtNGFhZi1hMTA1LTA4NDY4NjM4ZDBiND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47968398-08ab-4819-8904-0af28f44dcd5" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "af1389c4-b4b7-46d9-bde5-87829f2dcdd1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220158Z:af1389c4-b4b7-46d9-bde5-87829f2dcdd1" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/665ccade-de8c-4aaf-a105-08468638d0b4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2NWNjYWRlLWRlOGMtNGFhZi1hMTA1LTA4NDY4NjM4ZDBiND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47968398-08ab-4819-8904-0af28f44dcd5" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "af1389c4-b4b7-46d9-bde5-87829f2dcdd1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220158Z:af1389c4-b4b7-46d9-bde5-87829f2dcdd1" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/665ccade-de8c-4aaf-a105-08468638d0b4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2NWNjYWRlLWRlOGMtNGFhZi1hMTA1LTA4NDY4NjM4ZDBiND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47968398-08ab-4819-8904-0af28f44dcd5" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "af1389c4-b4b7-46d9-bde5-87829f2dcdd1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220158Z:af1389c4-b4b7-46d9-bde5-87829f2dcdd1" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/665ccade-de8c-4aaf-a105-08468638d0b4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2NWNjYWRlLWRlOGMtNGFhZi1hMTA1LTA4NDY4NjM4ZDBiND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47968398-08ab-4819-8904-0af28f44dcd5" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "af1389c4-b4b7-46d9-bde5-87829f2dcdd1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220158Z:af1389c4-b4b7-46d9-bde5-87829f2dcdd1" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"069d20b3-365b-4f5a-8c66-893b34ca83e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f3e4de44-c097-4fae-baf5-7e48587df9d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"069d20b3-365b-4f5a-8c66-893b34ca83e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "17b99751-241a-48f3-bbfa-00e3d73e6144" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220159Z:17b99751-241a-48f3-bbfa-00e3d73e6144" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"069d20b3-365b-4f5a-8c66-893b34ca83e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f3e4de44-c097-4fae-baf5-7e48587df9d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"069d20b3-365b-4f5a-8c66-893b34ca83e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "17b99751-241a-48f3-bbfa-00e3d73e6144" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220159Z:17b99751-241a-48f3-bbfa-00e3d73e6144" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"069d20b3-365b-4f5a-8c66-893b34ca83e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f3e4de44-c097-4fae-baf5-7e48587df9d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"069d20b3-365b-4f5a-8c66-893b34ca83e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "17b99751-241a-48f3-bbfa-00e3d73e6144" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220159Z:17b99751-241a-48f3-bbfa-00e3d73e6144" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"069d20b3-365b-4f5a-8c66-893b34ca83e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f3e4de44-c097-4fae-baf5-7e48587df9d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"069d20b3-365b-4f5a-8c66-893b34ca83e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "17b99751-241a-48f3-bbfa-00e3d73e6144" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220159Z:17b99751-241a-48f3-bbfa-00e3d73e6144" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"069d20b3-365b-4f5a-8c66-893b34ca83e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "49cc71d8-edd4-4e9a-b0ec-a75b25c3a5ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"069d20b3-365b-4f5a-8c66-893b34ca83e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "c034cf0f-2942-4b42-bcaa-c5130f240f20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220159Z:c034cf0f-2942-4b42-bcaa-c5130f240f20" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"069d20b3-365b-4f5a-8c66-893b34ca83e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "49cc71d8-edd4-4e9a-b0ec-a75b25c3a5ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"069d20b3-365b-4f5a-8c66-893b34ca83e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "c034cf0f-2942-4b42-bcaa-c5130f240f20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220159Z:c034cf0f-2942-4b42-bcaa-c5130f240f20" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"069d20b3-365b-4f5a-8c66-893b34ca83e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "49cc71d8-edd4-4e9a-b0ec-a75b25c3a5ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"069d20b3-365b-4f5a-8c66-893b34ca83e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "c034cf0f-2942-4b42-bcaa-c5130f240f20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220159Z:c034cf0f-2942-4b42-bcaa-c5130f240f20" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ4MTc4Lz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8178\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/publicIPAddresses/azsmnet8178\",\r\n \"etag\": \"W/\\\"069d20b3-365b-4f5a-8c66-893b34ca83e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2296\",\r\n \"fqdn\": \"azsmnet2296.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "49cc71d8-edd4-4e9a-b0ec-a75b25c3a5ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"069d20b3-365b-4f5a-8c66-893b34ca83e0\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "c034cf0f-2942-4b42-bcaa-c5130f240f20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220159Z:c034cf0f-2942-4b42-bcaa-c5130f240f20" + ], + "Date": [ + "Tue, 14 Jul 2015 22:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3357\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357\",\r\n \"etag\": \"W/\\\"14d009ae-4e63-439e-b24c-2e2766bb86e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"14d009ae-4e63-439e-b24c-2e2766bb86e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1fc8023c-dac4-4ce1-bae3-006e148971c2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1fc8023c-dac4-4ce1-bae3-006e148971c2?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "340c3778-0505-494c-9413-992e7f498b20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220202Z:340c3778-0505-494c-9413-992e7f498b20" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:02 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3357\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357\",\r\n \"etag\": \"W/\\\"14d009ae-4e63-439e-b24c-2e2766bb86e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"14d009ae-4e63-439e-b24c-2e2766bb86e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1fc8023c-dac4-4ce1-bae3-006e148971c2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1fc8023c-dac4-4ce1-bae3-006e148971c2?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "340c3778-0505-494c-9413-992e7f498b20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220202Z:340c3778-0505-494c-9413-992e7f498b20" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:02 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3357\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357\",\r\n \"etag\": \"W/\\\"14d009ae-4e63-439e-b24c-2e2766bb86e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"14d009ae-4e63-439e-b24c-2e2766bb86e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1fc8023c-dac4-4ce1-bae3-006e148971c2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1fc8023c-dac4-4ce1-bae3-006e148971c2?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "340c3778-0505-494c-9413-992e7f498b20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220202Z:340c3778-0505-494c-9413-992e7f498b20" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:02 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "407" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3357\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357\",\r\n \"etag\": \"W/\\\"14d009ae-4e63-439e-b24c-2e2766bb86e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"14d009ae-4e63-439e-b24c-2e2766bb86e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1fc8023c-dac4-4ce1-bae3-006e148971c2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1fc8023c-dac4-4ce1-bae3-006e148971c2?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "340c3778-0505-494c-9413-992e7f498b20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220202Z:340c3778-0505-494c-9413-992e7f498b20" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:02 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1fc8023c-dac4-4ce1-bae3-006e148971c2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmYzgwMjNjLWRhYzQtNGNlMS1iYWUzLTAwNmUxNDg5NzFjMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01613b06-cebe-44a4-9fcf-b6321adc9b09" + ], + "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": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "219bbf50-045c-48ff-b06d-3477a0d6d9d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:219bbf50-045c-48ff-b06d-3477a0d6d9d4" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1fc8023c-dac4-4ce1-bae3-006e148971c2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmYzgwMjNjLWRhYzQtNGNlMS1iYWUzLTAwNmUxNDg5NzFjMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01613b06-cebe-44a4-9fcf-b6321adc9b09" + ], + "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": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "219bbf50-045c-48ff-b06d-3477a0d6d9d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:219bbf50-045c-48ff-b06d-3477a0d6d9d4" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1fc8023c-dac4-4ce1-bae3-006e148971c2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmYzgwMjNjLWRhYzQtNGNlMS1iYWUzLTAwNmUxNDg5NzFjMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01613b06-cebe-44a4-9fcf-b6321adc9b09" + ], + "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": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "219bbf50-045c-48ff-b06d-3477a0d6d9d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:219bbf50-045c-48ff-b06d-3477a0d6d9d4" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/1fc8023c-dac4-4ce1-bae3-006e148971c2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFmYzgwMjNjLWRhYzQtNGNlMS1iYWUzLTAwNmUxNDg5NzFjMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01613b06-cebe-44a4-9fcf-b6321adc9b09" + ], + "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": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "219bbf50-045c-48ff-b06d-3477a0d6d9d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:219bbf50-045c-48ff-b06d-3477a0d6d9d4" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3357\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bc3eed4-a34a-46e8-a4cc-e98060756caa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "fbadfe46-3bf6-4e98-be11-3104dd3355c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:fbadfe46-3bf6-4e98-be11-3104dd3355c4" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3357\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bc3eed4-a34a-46e8-a4cc-e98060756caa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "fbadfe46-3bf6-4e98-be11-3104dd3355c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:fbadfe46-3bf6-4e98-be11-3104dd3355c4" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3357\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bc3eed4-a34a-46e8-a4cc-e98060756caa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "fbadfe46-3bf6-4e98-be11-3104dd3355c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:fbadfe46-3bf6-4e98-be11-3104dd3355c4" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3357\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bc3eed4-a34a-46e8-a4cc-e98060756caa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "fbadfe46-3bf6-4e98-be11-3104dd3355c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:fbadfe46-3bf6-4e98-be11-3104dd3355c4" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357/subnets/azsmnet3700?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Ny9zdWJuZXRzL2F6c21uZXQzNzAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8441f029-ec28-42a7-981e-d53602ff5deb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "e3d65f62-f760-48a4-b7e9-2190d8c47254" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:e3d65f62-f760-48a4-b7e9-2190d8c47254" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357/subnets/azsmnet3700?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Ny9zdWJuZXRzL2F6c21uZXQzNzAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8441f029-ec28-42a7-981e-d53602ff5deb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "e3d65f62-f760-48a4-b7e9-2190d8c47254" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:e3d65f62-f760-48a4-b7e9-2190d8c47254" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357/subnets/azsmnet3700?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Ny9zdWJuZXRzL2F6c21uZXQzNzAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8441f029-ec28-42a7-981e-d53602ff5deb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "e3d65f62-f760-48a4-b7e9-2190d8c47254" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:e3d65f62-f760-48a4-b7e9-2190d8c47254" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualnetworks/azsmnet3357/subnets/azsmnet3700?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy9henNtbmV0MzM1Ny9zdWJuZXRzL2F6c21uZXQzNzAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet3700\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8441f029-ec28-42a7-981e-d53602ff5deb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "e3d65f62-f760-48a4-b7e9-2190d8c47254" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220213Z:e3d65f62-f760-48a4-b7e9-2190d8c47254" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet547\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547/ipConfigurations/azsmnet9591\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cbc8cfed-de01-4151-82f7-9f3d58bc4af5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cbc8cfed-de01-4151-82f7-9f3d58bc4af5?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "fdc3ae8b-0838-4329-9255-8a7f627df2cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220217Z:fdc3ae8b-0838-4329-9255-8a7f627df2cf" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet547\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547/ipConfigurations/azsmnet9591\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cbc8cfed-de01-4151-82f7-9f3d58bc4af5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cbc8cfed-de01-4151-82f7-9f3d58bc4af5?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "fdc3ae8b-0838-4329-9255-8a7f627df2cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220217Z:fdc3ae8b-0838-4329-9255-8a7f627df2cf" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet547\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547/ipConfigurations/azsmnet9591\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cbc8cfed-de01-4151-82f7-9f3d58bc4af5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cbc8cfed-de01-4151-82f7-9f3d58bc4af5?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "fdc3ae8b-0838-4329-9255-8a7f627df2cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220217Z:fdc3ae8b-0838-4329-9255-8a7f627df2cf" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet3700\",\r\n \"etag\": \"W/\\\"8b45b1ef-f04e-4e1a-b108-c9ef1c316871\\\"\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "727" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet547\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547/ipConfigurations/azsmnet9591\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cbc8cfed-de01-4151-82f7-9f3d58bc4af5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Network/locations/southeastasia/operations/cbc8cfed-de01-4151-82f7-9f3d58bc4af5?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "fdc3ae8b-0838-4329-9255-8a7f627df2cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220217Z:fdc3ae8b-0838-4329-9255-8a7f627df2cf" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet547\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547/ipConfigurations/azsmnet9591\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e164bd0-ca60-4357-bcea-0ad034039309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "82391b15-2a6e-4482-8fd9-0ca40b11269a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220218Z:82391b15-2a6e-4482-8fd9-0ca40b11269a" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet547\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547/ipConfigurations/azsmnet9591\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e164bd0-ca60-4357-bcea-0ad034039309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "82391b15-2a6e-4482-8fd9-0ca40b11269a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220218Z:82391b15-2a6e-4482-8fd9-0ca40b11269a" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet547\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547/ipConfigurations/azsmnet9591\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e164bd0-ca60-4357-bcea-0ad034039309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "82391b15-2a6e-4482-8fd9-0ca40b11269a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220218Z:82391b15-2a6e-4482-8fd9-0ca40b11269a" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet547\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9591\",\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547/ipConfigurations/azsmnet9591\",\r\n \"etag\": \"W/\\\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/virtualNetworks/azsmnet3357/subnets/azsmnet3700\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e164bd0-ca60-4357-bcea-0ad034039309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ca53ab8b-fdc0-4eaf-82a6-c41022315951\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "82391b15-2a6e-4482-8fd9-0ca40b11269a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220218Z:82391b15-2a6e-4482-8fd9-0ca40b11269a" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MzI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329\",\r\n \"name\": \"as7329\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "32a566bc-e0ed-46d2-babf-25cecf435e6e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "968c60f0-19c7-4f84-af1c-c75390252b82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220222Z:968c60f0-19c7-4f84-af1c-c75390252b82" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MzI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329\",\r\n \"name\": \"as7329\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "32a566bc-e0ed-46d2-babf-25cecf435e6e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "968c60f0-19c7-4f84-af1c-c75390252b82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220222Z:968c60f0-19c7-4f84-af1c-c75390252b82" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MzI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329\",\r\n \"name\": \"as7329\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "32a566bc-e0ed-46d2-babf-25cecf435e6e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "968c60f0-19c7-4f84-af1c-c75390252b82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220222Z:968c60f0-19c7-4f84-af1c-c75390252b82" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MzI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "112" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329\",\r\n \"name\": \"as7329\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "403" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "32a566bc-e0ed-46d2-babf-25cecf435e6e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "968c60f0-19c7-4f84-af1c-c75390252b82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220222Z:968c60f0-19c7-4f84-af1c-c75390252b82" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1514\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1251" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ce3f1c34-82fa-47a9-8ed5-4335a8504fbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "47760a59-e396-46b9-bbb2-a6f5c1dfde56" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220226Z:47760a59-e396-46b9-bbb2-a6f5c1dfde56" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1514\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1251" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ce3f1c34-82fa-47a9-8ed5-4335a8504fbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "47760a59-e396-46b9-bbb2-a6f5c1dfde56" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220226Z:47760a59-e396-46b9-bbb2-a6f5c1dfde56" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1514\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1251" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ce3f1c34-82fa-47a9-8ed5-4335a8504fbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "47760a59-e396-46b9-bbb2-a6f5c1dfde56" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220226Z:47760a59-e396-46b9-bbb2-a6f5c1dfde56" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pslibtest1514\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1251" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ce3f1c34-82fa-47a9-8ed5-4335a8504fbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "47760a59-e396-46b9-bbb2-a6f5c1dfde56" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220226Z:47760a59-e396-46b9-bbb2-a6f5c1dfde56" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "241fb35f-cedd-46b4-b18a-ab0b1e747d31" + ], + "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": [ + "5a5323a7-cc0f-43f1-93f8-89ccfbc7e383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220257Z:5a5323a7-cc0f-43f1-93f8-89ccfbc7e383" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "241fb35f-cedd-46b4-b18a-ab0b1e747d31" + ], + "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": [ + "5a5323a7-cc0f-43f1-93f8-89ccfbc7e383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220257Z:5a5323a7-cc0f-43f1-93f8-89ccfbc7e383" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "241fb35f-cedd-46b4-b18a-ab0b1e747d31" + ], + "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": [ + "5a5323a7-cc0f-43f1-93f8-89ccfbc7e383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220257Z:5a5323a7-cc0f-43f1-93f8-89ccfbc7e383" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "241fb35f-cedd-46b4-b18a-ab0b1e747d31" + ], + "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": [ + "5a5323a7-cc0f-43f1-93f8-89ccfbc7e383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220257Z:5a5323a7-cc0f-43f1-93f8-89ccfbc7e383" + ], + "Date": [ + "Tue, 14 Jul 2015 22:02:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ab798502-6ce4-4cfe-bb6d-16aa25ee8990" + ], + "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": [ + "75393828-59cc-48bd-992e-a2a3b9137111" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220328Z:75393828-59cc-48bd-992e-a2a3b9137111" + ], + "Date": [ + "Tue, 14 Jul 2015 22:03:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ab798502-6ce4-4cfe-bb6d-16aa25ee8990" + ], + "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": [ + "75393828-59cc-48bd-992e-a2a3b9137111" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220328Z:75393828-59cc-48bd-992e-a2a3b9137111" + ], + "Date": [ + "Tue, 14 Jul 2015 22:03:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ab798502-6ce4-4cfe-bb6d-16aa25ee8990" + ], + "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": [ + "75393828-59cc-48bd-992e-a2a3b9137111" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220328Z:75393828-59cc-48bd-992e-a2a3b9137111" + ], + "Date": [ + "Tue, 14 Jul 2015 22:03:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "ab798502-6ce4-4cfe-bb6d-16aa25ee8990" + ], + "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": [ + "75393828-59cc-48bd-992e-a2a3b9137111" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220328Z:75393828-59cc-48bd-992e-a2a3b9137111" + ], + "Date": [ + "Tue, 14 Jul 2015 22:03:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "55270270-88ca-488f-93fb-ec95896ae35c" + ], + "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": [ + "f4e0b73d-27de-4215-8b7f-6a5a089f2368" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220359Z:f4e0b73d-27de-4215-8b7f-6a5a089f2368" + ], + "Date": [ + "Tue, 14 Jul 2015 22:03:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "55270270-88ca-488f-93fb-ec95896ae35c" + ], + "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": [ + "f4e0b73d-27de-4215-8b7f-6a5a089f2368" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220359Z:f4e0b73d-27de-4215-8b7f-6a5a089f2368" + ], + "Date": [ + "Tue, 14 Jul 2015 22:03:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "55270270-88ca-488f-93fb-ec95896ae35c" + ], + "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": [ + "f4e0b73d-27de-4215-8b7f-6a5a089f2368" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220359Z:f4e0b73d-27de-4215-8b7f-6a5a089f2368" + ], + "Date": [ + "Tue, 14 Jul 2015 22:03:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "55270270-88ca-488f-93fb-ec95896ae35c" + ], + "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": [ + "f4e0b73d-27de-4215-8b7f-6a5a089f2368" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220359Z:f4e0b73d-27de-4215-8b7f-6a5a089f2368" + ], + "Date": [ + "Tue, 14 Jul 2015 22:03:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b9e27b7-1b83-49e1-a5cd-2545889cff69" + ], + "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": [ + "898cb3f4-b30d-46a4-b432-4a57e19d5200" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220429Z:898cb3f4-b30d-46a4-b432-4a57e19d5200" + ], + "Date": [ + "Tue, 14 Jul 2015 22:04:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b9e27b7-1b83-49e1-a5cd-2545889cff69" + ], + "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": [ + "898cb3f4-b30d-46a4-b432-4a57e19d5200" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220429Z:898cb3f4-b30d-46a4-b432-4a57e19d5200" + ], + "Date": [ + "Tue, 14 Jul 2015 22:04:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b9e27b7-1b83-49e1-a5cd-2545889cff69" + ], + "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": [ + "898cb3f4-b30d-46a4-b432-4a57e19d5200" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220429Z:898cb3f4-b30d-46a4-b432-4a57e19d5200" + ], + "Date": [ + "Tue, 14 Jul 2015 22:04:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b9e27b7-1b83-49e1-a5cd-2545889cff69" + ], + "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": [ + "898cb3f4-b30d-46a4-b432-4a57e19d5200" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220429Z:898cb3f4-b30d-46a4-b432-4a57e19d5200" + ], + "Date": [ + "Tue, 14 Jul 2015 22:04:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b538330c-5781-424a-b92a-d13ca44b5faa" + ], + "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": [ + "c9f71e4f-bba0-4d7b-b6ae-d2bd9a303f3d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220500Z:c9f71e4f-bba0-4d7b-b6ae-d2bd9a303f3d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:05:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b538330c-5781-424a-b92a-d13ca44b5faa" + ], + "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": [ + "c9f71e4f-bba0-4d7b-b6ae-d2bd9a303f3d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220500Z:c9f71e4f-bba0-4d7b-b6ae-d2bd9a303f3d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:05:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b538330c-5781-424a-b92a-d13ca44b5faa" + ], + "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": [ + "c9f71e4f-bba0-4d7b-b6ae-d2bd9a303f3d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220500Z:c9f71e4f-bba0-4d7b-b6ae-d2bd9a303f3d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:05:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b538330c-5781-424a-b92a-d13ca44b5faa" + ], + "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": [ + "c9f71e4f-bba0-4d7b-b6ae-d2bd9a303f3d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220500Z:c9f71e4f-bba0-4d7b-b6ae-d2bd9a303f3d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:05:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c8308c6-c865-435b-828a-67572142c588" + ], + "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": [ + "3792788a-da4b-4da3-a2d6-92d8466e9c31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220531Z:3792788a-da4b-4da3-a2d6-92d8466e9c31" + ], + "Date": [ + "Tue, 14 Jul 2015 22:05:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c8308c6-c865-435b-828a-67572142c588" + ], + "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": [ + "3792788a-da4b-4da3-a2d6-92d8466e9c31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220531Z:3792788a-da4b-4da3-a2d6-92d8466e9c31" + ], + "Date": [ + "Tue, 14 Jul 2015 22:05:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c8308c6-c865-435b-828a-67572142c588" + ], + "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": [ + "3792788a-da4b-4da3-a2d6-92d8466e9c31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220531Z:3792788a-da4b-4da3-a2d6-92d8466e9c31" + ], + "Date": [ + "Tue, 14 Jul 2015 22:05:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8c8308c6-c865-435b-828a-67572142c588" + ], + "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": [ + "3792788a-da4b-4da3-a2d6-92d8466e9c31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220531Z:3792788a-da4b-4da3-a2d6-92d8466e9c31" + ], + "Date": [ + "Tue, 14 Jul 2015 22:05:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b9ebb2d-fc1a-4c77-a804-8a824ca8b090" + ], + "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": [ + "f2887240-f30b-4a29-acc6-335204c4117e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220602Z:f2887240-f30b-4a29-acc6-335204c4117e" + ], + "Date": [ + "Tue, 14 Jul 2015 22:06:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b9ebb2d-fc1a-4c77-a804-8a824ca8b090" + ], + "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": [ + "f2887240-f30b-4a29-acc6-335204c4117e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220602Z:f2887240-f30b-4a29-acc6-335204c4117e" + ], + "Date": [ + "Tue, 14 Jul 2015 22:06:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b9ebb2d-fc1a-4c77-a804-8a824ca8b090" + ], + "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": [ + "f2887240-f30b-4a29-acc6-335204c4117e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220602Z:f2887240-f30b-4a29-acc6-335204c4117e" + ], + "Date": [ + "Tue, 14 Jul 2015 22:06:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "8b9ebb2d-fc1a-4c77-a804-8a824ca8b090" + ], + "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": [ + "f2887240-f30b-4a29-acc6-335204c4117e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220602Z:f2887240-f30b-4a29-acc6-335204c4117e" + ], + "Date": [ + "Tue, 14 Jul 2015 22:06:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "50df37c9-6f56-4dfe-b682-d02f74a9b1ac" + ], + "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": [ + "9eae64fe-5886-4f65-bdd3-4218ef862863" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220632Z:9eae64fe-5886-4f65-bdd3-4218ef862863" + ], + "Date": [ + "Tue, 14 Jul 2015 22:06:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "50df37c9-6f56-4dfe-b682-d02f74a9b1ac" + ], + "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": [ + "9eae64fe-5886-4f65-bdd3-4218ef862863" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220632Z:9eae64fe-5886-4f65-bdd3-4218ef862863" + ], + "Date": [ + "Tue, 14 Jul 2015 22:06:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "50df37c9-6f56-4dfe-b682-d02f74a9b1ac" + ], + "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": [ + "9eae64fe-5886-4f65-bdd3-4218ef862863" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220632Z:9eae64fe-5886-4f65-bdd3-4218ef862863" + ], + "Date": [ + "Tue, 14 Jul 2015 22:06:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "50df37c9-6f56-4dfe-b682-d02f74a9b1ac" + ], + "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": [ + "9eae64fe-5886-4f65-bdd3-4218ef862863" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220632Z:9eae64fe-5886-4f65-bdd3-4218ef862863" + ], + "Date": [ + "Tue, 14 Jul 2015 22:06:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5aad9db-b105-49b6-8a87-6dd8f4ddc29e" + ], + "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": [ + "7214e184-8b66-484a-bb3f-73c6584b9d44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220703Z:7214e184-8b66-484a-bb3f-73c6584b9d44" + ], + "Date": [ + "Tue, 14 Jul 2015 22:07:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5aad9db-b105-49b6-8a87-6dd8f4ddc29e" + ], + "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": [ + "7214e184-8b66-484a-bb3f-73c6584b9d44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220703Z:7214e184-8b66-484a-bb3f-73c6584b9d44" + ], + "Date": [ + "Tue, 14 Jul 2015 22:07:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5aad9db-b105-49b6-8a87-6dd8f4ddc29e" + ], + "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": [ + "7214e184-8b66-484a-bb3f-73c6584b9d44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220703Z:7214e184-8b66-484a-bb3f-73c6584b9d44" + ], + "Date": [ + "Tue, 14 Jul 2015 22:07:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "d5aad9db-b105-49b6-8a87-6dd8f4ddc29e" + ], + "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": [ + "7214e184-8b66-484a-bb3f-73c6584b9d44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220703Z:7214e184-8b66-484a-bb3f-73c6584b9d44" + ], + "Date": [ + "Tue, 14 Jul 2015 22:07:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a7d4a34d-2ca7-4f11-a331-503f2b13d954" + ], + "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": [ + "ff1f2e05-4b70-476d-a005-16301914545f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220734Z:ff1f2e05-4b70-476d-a005-16301914545f" + ], + "Date": [ + "Tue, 14 Jul 2015 22:07:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a7d4a34d-2ca7-4f11-a331-503f2b13d954" + ], + "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": [ + "ff1f2e05-4b70-476d-a005-16301914545f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220734Z:ff1f2e05-4b70-476d-a005-16301914545f" + ], + "Date": [ + "Tue, 14 Jul 2015 22:07:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a7d4a34d-2ca7-4f11-a331-503f2b13d954" + ], + "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": [ + "ff1f2e05-4b70-476d-a005-16301914545f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220734Z:ff1f2e05-4b70-476d-a005-16301914545f" + ], + "Date": [ + "Tue, 14 Jul 2015 22:07:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "a7d4a34d-2ca7-4f11-a331-503f2b13d954" + ], + "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": [ + "ff1f2e05-4b70-476d-a005-16301914545f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220734Z:ff1f2e05-4b70-476d-a005-16301914545f" + ], + "Date": [ + "Tue, 14 Jul 2015 22:07:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "25f53c4b-2e5e-4091-bf8e-a6a9f3ebb36e" + ], + "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": [ + "8d271bca-92d8-436b-96f8-8325aca7b7da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220805Z:8d271bca-92d8-436b-96f8-8325aca7b7da" + ], + "Date": [ + "Tue, 14 Jul 2015 22:08:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "25f53c4b-2e5e-4091-bf8e-a6a9f3ebb36e" + ], + "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": [ + "8d271bca-92d8-436b-96f8-8325aca7b7da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220805Z:8d271bca-92d8-436b-96f8-8325aca7b7da" + ], + "Date": [ + "Tue, 14 Jul 2015 22:08:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "25f53c4b-2e5e-4091-bf8e-a6a9f3ebb36e" + ], + "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": [ + "8d271bca-92d8-436b-96f8-8325aca7b7da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220805Z:8d271bca-92d8-436b-96f8-8325aca7b7da" + ], + "Date": [ + "Tue, 14 Jul 2015 22:08:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "25f53c4b-2e5e-4091-bf8e-a6a9f3ebb36e" + ], + "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": [ + "8d271bca-92d8-436b-96f8-8325aca7b7da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220805Z:8d271bca-92d8-436b-96f8-8325aca7b7da" + ], + "Date": [ + "Tue, 14 Jul 2015 22:08:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6237b2fa-2b43-4842-8a06-5b9ecbae99bc" + ], + "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": [ + "9d7fce42-d3fd-4710-9401-dcc0b15d653d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220836Z:9d7fce42-d3fd-4710-9401-dcc0b15d653d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:08:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6237b2fa-2b43-4842-8a06-5b9ecbae99bc" + ], + "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": [ + "9d7fce42-d3fd-4710-9401-dcc0b15d653d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220836Z:9d7fce42-d3fd-4710-9401-dcc0b15d653d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:08:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6237b2fa-2b43-4842-8a06-5b9ecbae99bc" + ], + "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": [ + "9d7fce42-d3fd-4710-9401-dcc0b15d653d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220836Z:9d7fce42-d3fd-4710-9401-dcc0b15d653d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:08:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "6237b2fa-2b43-4842-8a06-5b9ecbae99bc" + ], + "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": [ + "9d7fce42-d3fd-4710-9401-dcc0b15d653d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220836Z:9d7fce42-d3fd-4710-9401-dcc0b15d653d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:08:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "96c1f9a6-4d3d-425c-b687-f8aae764eb63" + ], + "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": [ + "f3527c56-8f40-4436-bf08-7ab36bb80614" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220907Z:f3527c56-8f40-4436-bf08-7ab36bb80614" + ], + "Date": [ + "Tue, 14 Jul 2015 22:09:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "96c1f9a6-4d3d-425c-b687-f8aae764eb63" + ], + "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": [ + "f3527c56-8f40-4436-bf08-7ab36bb80614" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220907Z:f3527c56-8f40-4436-bf08-7ab36bb80614" + ], + "Date": [ + "Tue, 14 Jul 2015 22:09:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "96c1f9a6-4d3d-425c-b687-f8aae764eb63" + ], + "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": [ + "f3527c56-8f40-4436-bf08-7ab36bb80614" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220907Z:f3527c56-8f40-4436-bf08-7ab36bb80614" + ], + "Date": [ + "Tue, 14 Jul 2015 22:09:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "96c1f9a6-4d3d-425c-b687-f8aae764eb63" + ], + "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": [ + "f3527c56-8f40-4436-bf08-7ab36bb80614" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220907Z:f3527c56-8f40-4436-bf08-7ab36bb80614" + ], + "Date": [ + "Tue, 14 Jul 2015 22:09:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2b6e76ca-b81c-4d31-95c3-3666652c8467" + ], + "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": [ + "10978c2d-d914-4939-bb5b-4922e6580f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220937Z:10978c2d-d914-4939-bb5b-4922e6580f49" + ], + "Date": [ + "Tue, 14 Jul 2015 22:09:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2b6e76ca-b81c-4d31-95c3-3666652c8467" + ], + "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": [ + "10978c2d-d914-4939-bb5b-4922e6580f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220937Z:10978c2d-d914-4939-bb5b-4922e6580f49" + ], + "Date": [ + "Tue, 14 Jul 2015 22:09:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2b6e76ca-b81c-4d31-95c3-3666652c8467" + ], + "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": [ + "10978c2d-d914-4939-bb5b-4922e6580f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220937Z:10978c2d-d914-4939-bb5b-4922e6580f49" + ], + "Date": [ + "Tue, 14 Jul 2015 22:09:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "2b6e76ca-b81c-4d31-95c3-3666652c8467" + ], + "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": [ + "10978c2d-d914-4939-bb5b-4922e6580f49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T220937Z:10978c2d-d914-4939-bb5b-4922e6580f49" + ], + "Date": [ + "Tue, 14 Jul 2015 22:09:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4acab1c0-c302-4a85-b94e-28f6980b046b" + ], + "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": [ + "d3650c19-ad5d-47bd-b62e-c2fb73559189" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221008Z:d3650c19-ad5d-47bd-b62e-c2fb73559189" + ], + "Date": [ + "Tue, 14 Jul 2015 22:10:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4acab1c0-c302-4a85-b94e-28f6980b046b" + ], + "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": [ + "d3650c19-ad5d-47bd-b62e-c2fb73559189" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221008Z:d3650c19-ad5d-47bd-b62e-c2fb73559189" + ], + "Date": [ + "Tue, 14 Jul 2015 22:10:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4acab1c0-c302-4a85-b94e-28f6980b046b" + ], + "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": [ + "d3650c19-ad5d-47bd-b62e-c2fb73559189" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221008Z:d3650c19-ad5d-47bd-b62e-c2fb73559189" + ], + "Date": [ + "Tue, 14 Jul 2015 22:10:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4acab1c0-c302-4a85-b94e-28f6980b046b" + ], + "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": [ + "d3650c19-ad5d-47bd-b62e-c2fb73559189" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221008Z:d3650c19-ad5d-47bd-b62e-c2fb73559189" + ], + "Date": [ + "Tue, 14 Jul 2015 22:10:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c31758df-979c-4378-9d7e-d9dd7dd2d97c" + ], + "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": [ + "40d0d93c-3108-4356-8d4c-e5a445558fd0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221039Z:40d0d93c-3108-4356-8d4c-e5a445558fd0" + ], + "Date": [ + "Tue, 14 Jul 2015 22:10:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c31758df-979c-4378-9d7e-d9dd7dd2d97c" + ], + "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": [ + "40d0d93c-3108-4356-8d4c-e5a445558fd0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221039Z:40d0d93c-3108-4356-8d4c-e5a445558fd0" + ], + "Date": [ + "Tue, 14 Jul 2015 22:10:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c31758df-979c-4378-9d7e-d9dd7dd2d97c" + ], + "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": [ + "40d0d93c-3108-4356-8d4c-e5a445558fd0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221039Z:40d0d93c-3108-4356-8d4c-e5a445558fd0" + ], + "Date": [ + "Tue, 14 Jul 2015 22:10:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "c31758df-979c-4378-9d7e-d9dd7dd2d97c" + ], + "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": [ + "40d0d93c-3108-4356-8d4c-e5a445558fd0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221039Z:40d0d93c-3108-4356-8d4c-e5a445558fd0" + ], + "Date": [ + "Tue, 14 Jul 2015 22:10:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b6679e51-b696-47c0-ac93-05f62ae3f889" + ], + "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": [ + "d4021da6-20e4-458a-9da3-0a59f96af168" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221110Z:d4021da6-20e4-458a-9da3-0a59f96af168" + ], + "Date": [ + "Tue, 14 Jul 2015 22:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b6679e51-b696-47c0-ac93-05f62ae3f889" + ], + "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": [ + "d4021da6-20e4-458a-9da3-0a59f96af168" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221110Z:d4021da6-20e4-458a-9da3-0a59f96af168" + ], + "Date": [ + "Tue, 14 Jul 2015 22:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b6679e51-b696-47c0-ac93-05f62ae3f889" + ], + "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": [ + "d4021da6-20e4-458a-9da3-0a59f96af168" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221110Z:d4021da6-20e4-458a-9da3-0a59f96af168" + ], + "Date": [ + "Tue, 14 Jul 2015 22:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b6679e51-b696-47c0-ac93-05f62ae3f889" + ], + "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": [ + "d4021da6-20e4-458a-9da3-0a59f96af168" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221110Z:d4021da6-20e4-458a-9da3-0a59f96af168" + ], + "Date": [ + "Tue, 14 Jul 2015 22:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cc73d915-a2aa-48f1-adc9-04421e88ef87" + ], + "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": [ + "24032d1a-6116-4137-93a8-17cfc788e83d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221141Z:24032d1a-6116-4137-93a8-17cfc788e83d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cc73d915-a2aa-48f1-adc9-04421e88ef87" + ], + "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": [ + "24032d1a-6116-4137-93a8-17cfc788e83d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221141Z:24032d1a-6116-4137-93a8-17cfc788e83d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cc73d915-a2aa-48f1-adc9-04421e88ef87" + ], + "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": [ + "24032d1a-6116-4137-93a8-17cfc788e83d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221141Z:24032d1a-6116-4137-93a8-17cfc788e83d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "cc73d915-a2aa-48f1-adc9-04421e88ef87" + ], + "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": [ + "24032d1a-6116-4137-93a8-17cfc788e83d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221141Z:24032d1a-6116-4137-93a8-17cfc788e83d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b4d7de28-1e1f-4604-8e93-9bb7802cf902" + ], + "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": [ + "13439cfc-f1f9-40dd-a184-2bbb01460175" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221212Z:13439cfc-f1f9-40dd-a184-2bbb01460175" + ], + "Date": [ + "Tue, 14 Jul 2015 22:12:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b4d7de28-1e1f-4604-8e93-9bb7802cf902" + ], + "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": [ + "13439cfc-f1f9-40dd-a184-2bbb01460175" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221212Z:13439cfc-f1f9-40dd-a184-2bbb01460175" + ], + "Date": [ + "Tue, 14 Jul 2015 22:12:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b4d7de28-1e1f-4604-8e93-9bb7802cf902" + ], + "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": [ + "13439cfc-f1f9-40dd-a184-2bbb01460175" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221212Z:13439cfc-f1f9-40dd-a184-2bbb01460175" + ], + "Date": [ + "Tue, 14 Jul 2015 22:12:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b4d7de28-1e1f-4604-8e93-9bb7802cf902" + ], + "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": [ + "13439cfc-f1f9-40dd-a184-2bbb01460175" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221212Z:13439cfc-f1f9-40dd-a184-2bbb01460175" + ], + "Date": [ + "Tue, 14 Jul 2015 22:12:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "041e1ed8-e047-48fc-ae2b-c15c5134e487" + ], + "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": [ + "efd0dd07-d595-489b-8ce7-0dfa42ca3655" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221243Z:efd0dd07-d595-489b-8ce7-0dfa42ca3655" + ], + "Date": [ + "Tue, 14 Jul 2015 22:12:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "041e1ed8-e047-48fc-ae2b-c15c5134e487" + ], + "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": [ + "efd0dd07-d595-489b-8ce7-0dfa42ca3655" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221243Z:efd0dd07-d595-489b-8ce7-0dfa42ca3655" + ], + "Date": [ + "Tue, 14 Jul 2015 22:12:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "041e1ed8-e047-48fc-ae2b-c15c5134e487" + ], + "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": [ + "efd0dd07-d595-489b-8ce7-0dfa42ca3655" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221243Z:efd0dd07-d595-489b-8ce7-0dfa42ca3655" + ], + "Date": [ + "Tue, 14 Jul 2015 22:12:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "041e1ed8-e047-48fc-ae2b-c15c5134e487" + ], + "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": [ + "efd0dd07-d595-489b-8ce7-0dfa42ca3655" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221243Z:efd0dd07-d595-489b-8ce7-0dfa42ca3655" + ], + "Date": [ + "Tue, 14 Jul 2015 22:12:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\",\r\n \"endTime\": \"2015-07-14T15:12:53.9209765-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0cb18654-f9d3-4693-adc5-dba9beb4899f" + ], + "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": [ + "cdfd3b1c-1588-4863-862b-100a54170d59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221313Z:cdfd3b1c-1588-4863-862b-100a54170d59" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\",\r\n \"endTime\": \"2015-07-14T15:12:53.9209765-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0cb18654-f9d3-4693-adc5-dba9beb4899f" + ], + "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": [ + "cdfd3b1c-1588-4863-862b-100a54170d59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221313Z:cdfd3b1c-1588-4863-862b-100a54170d59" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\",\r\n \"endTime\": \"2015-07-14T15:12:53.9209765-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0cb18654-f9d3-4693-adc5-dba9beb4899f" + ], + "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": [ + "cdfd3b1c-1588-4863-862b-100a54170d59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221313Z:cdfd3b1c-1588-4863-862b-100a54170d59" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/ce3f1c34-82fa-47a9-8ed5-4335a8504fbd?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NlM2YxYzM0LTgyZmEtNDdhOS04ZWQ1LTQzMzVhODUwNGZiZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ce3f1c34-82fa-47a9-8ed5-4335a8504fbd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T15:02:24.3722401-07:00\",\r\n \"endTime\": \"2015-07-14T15:12:53.9209765-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "0cb18654-f9d3-4693-adc5-dba9beb4899f" + ], + "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": [ + "cdfd3b1c-1588-4863-862b-100a54170d59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221313Z:cdfd3b1c-1588-4863-862b-100a54170d59" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f915037-ce42-49ef-8f6c-b6bad45be3db" + ], + "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": [ + "8cb56084-286f-4f4c-9457-56fa072aa952" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221314Z:8cb56084-286f-4f4c-9457-56fa072aa952" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f915037-ce42-49ef-8f6c-b6bad45be3db" + ], + "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": [ + "8cb56084-286f-4f4c-9457-56fa072aa952" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221314Z:8cb56084-286f-4f4c-9457-56fa072aa952" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f915037-ce42-49ef-8f6c-b6bad45be3db" + ], + "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": [ + "8cb56084-286f-4f4c-9457-56fa072aa952" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221314Z:8cb56084-286f-4f4c-9457-56fa072aa952" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f915037-ce42-49ef-8f6c-b6bad45be3db" + ], + "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": [ + "8cb56084-286f-4f4c-9457-56fa072aa952" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221314Z:8cb56084-286f-4f4c-9457-56fa072aa952" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "be61ab9d-2191-4eee-b547-d55f13d43818" + ], + "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": [ + "a1002161-5eb8-4435-b1e7-fcfdbea9fc76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221314Z:a1002161-5eb8-4435-b1e7-fcfdbea9fc76" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "be61ab9d-2191-4eee-b547-d55f13d43818" + ], + "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": [ + "a1002161-5eb8-4435-b1e7-fcfdbea9fc76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221314Z:a1002161-5eb8-4435-b1e7-fcfdbea9fc76" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "be61ab9d-2191-4eee-b547-d55f13d43818" + ], + "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": [ + "a1002161-5eb8-4435-b1e7-fcfdbea9fc76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221314Z:a1002161-5eb8-4435-b1e7-fcfdbea9fc76" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "be61ab9d-2191-4eee-b547-d55f13d43818" + ], + "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": [ + "a1002161-5eb8-4435-b1e7-fcfdbea9fc76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221314Z:a1002161-5eb8-4435-b1e7-fcfdbea9fc76" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T15:13:15-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T15:02:25.4816042-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T15:12:53.8428475-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2779" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b8a20158-6374-4c93-a115-66053c2e975b" + ], + "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": [ + "ae3e89d8-b8b0-49df-897a-150a0c3e8f2d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:ae3e89d8-b8b0-49df-897a-150a0c3e8f2d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T15:13:15-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T15:02:25.4816042-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T15:12:53.8428475-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2779" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b8a20158-6374-4c93-a115-66053c2e975b" + ], + "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": [ + "ae3e89d8-b8b0-49df-897a-150a0c3e8f2d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:ae3e89d8-b8b0-49df-897a-150a0c3e8f2d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T15:13:15-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T15:02:25.4816042-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T15:12:53.8428475-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2779" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b8a20158-6374-4c93-a115-66053c2e975b" + ], + "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": [ + "ae3e89d8-b8b0-49df-897a-150a0c3e8f2d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:ae3e89d8-b8b0-49df-897a-150a0c3e8f2d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-07-14T15:13:15-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T15:02:25.4816042-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-07-14T15:12:53.8428475-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2779" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "b8a20158-6374-4c93-a115-66053c2e975b" + ], + "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": [ + "ae3e89d8-b8b0-49df-897a-150a0c3e8f2d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:ae3e89d8-b8b0-49df-897a-150a0c3e8f2d" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1793" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "43a47d94-d20b-4682-848d-23b6326c2f71" + ], + "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": [ + "7efe2c63-a4c8-491c-8e49-fcfbd5a75797" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:7efe2c63-a4c8-491c-8e49-fcfbd5a75797" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1793" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "43a47d94-d20b-4682-848d-23b6326c2f71" + ], + "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": [ + "7efe2c63-a4c8-491c-8e49-fcfbd5a75797" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:7efe2c63-a4c8-491c-8e49-fcfbd5a75797" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1793" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "43a47d94-d20b-4682-848d-23b6326c2f71" + ], + "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": [ + "7efe2c63-a4c8-491c-8e49-fcfbd5a75797" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:7efe2c63-a4c8-491c-8e49-fcfbd5a75797" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/AS7329\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://pslibtest7227.blob.core.windows.net/pslibtest5247/ospslibtest3507.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Network/networkInterfaces/azsmnet547\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745\",\r\n \"name\": \"vm9745\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1793" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "43a47d94-d20b-4682-848d-23b6326c2f71" + ], + "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": [ + "7efe2c63-a4c8-491c-8e49-fcfbd5a75797" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:7efe2c63-a4c8-491c-8e49-fcfbd5a75797" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDUvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "58e759ab-6292-49a6-a976-d5c4f804dd31" + ], + "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": [ + "dcba713b-0e6f-4cda-9fd5-e1986ca8462f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:dcba713b-0e6f-4cda-9fd5-e1986ca8462f" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDUvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "58e759ab-6292-49a6-a976-d5c4f804dd31" + ], + "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": [ + "dcba713b-0e6f-4cda-9fd5-e1986ca8462f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:dcba713b-0e6f-4cda-9fd5-e1986ca8462f" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDUvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "58e759ab-6292-49a6-a976-d5c4f804dd31" + ], + "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": [ + "dcba713b-0e6f-4cda-9fd5-e1986ca8462f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:dcba713b-0e6f-4cda-9fd5-e1986ca8462f" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDUvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "58e759ab-6292-49a6-a976-d5c4f804dd31" + ], + "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": [ + "dcba713b-0e6f-4cda-9fd5-e1986ca8462f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221315Z:dcba713b-0e6f-4cda-9fd5-e1986ca8462f" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MzI5L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3991da0e-e4f4-4b6c-bae3-ddb0d427dff4" + ], + "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": [ + "249c2ca8-0833-44a5-8988-fb1d3fbae443" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221316Z:249c2ca8-0833-44a5-8988-fb1d3fbae443" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MzI5L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3991da0e-e4f4-4b6c-bae3-ddb0d427dff4" + ], + "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": [ + "249c2ca8-0833-44a5-8988-fb1d3fbae443" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221316Z:249c2ca8-0833-44a5-8988-fb1d3fbae443" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MzI5L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3991da0e-e4f4-4b6c-bae3-ddb0d427dff4" + ], + "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": [ + "249c2ca8-0833-44a5-8988-fb1d3fbae443" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221316Z:249c2ca8-0833-44a5-8988-fb1d3fbae443" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/availabilitySets/as7329/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MzI5L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "3991da0e-e4f4-4b6c-bae3-ddb0d427dff4" + ], + "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": [ + "249c2ca8-0833-44a5-8988-fb1d3fbae443" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221316Z:249c2ca8-0833-44a5-8988-fb1d3fbae443" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "75b39114-b265-444d-aa87-f365c7b7c169" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "ea4eed22-8d65-42b7-8aa6-05d530159f29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221319Z:ea4eed22-8d65-42b7-8aa6-05d530159f29" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "75b39114-b265-444d-aa87-f365c7b7c169" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "ea4eed22-8d65-42b7-8aa6-05d530159f29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221319Z:ea4eed22-8d65-42b7-8aa6-05d530159f29" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "75b39114-b265-444d-aa87-f365c7b7c169" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "ea4eed22-8d65-42b7-8aa6-05d530159f29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221319Z:ea4eed22-8d65-42b7-8aa6-05d530159f29" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/pslibtest1514/providers/Microsoft.Compute/virtualMachines/vm9745?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlR3JvdXBzL3BzbGlidGVzdDE1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk3NDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "75b39114-b265-444d-aa87-f365c7b7c169" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "ea4eed22-8d65-42b7-8aa6-05d530159f29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221319Z:ea4eed22-8d65-42b7-8aa6-05d530159f29" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f46a6c7-a83a-41d6-ab86-1328ae53437d" + ], + "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": [ + "03da812e-043e-449f-bb3f-f048f3a37ad3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221350Z:03da812e-043e-449f-bb3f-f048f3a37ad3" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f46a6c7-a83a-41d6-ab86-1328ae53437d" + ], + "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": [ + "03da812e-043e-449f-bb3f-f048f3a37ad3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221350Z:03da812e-043e-449f-bb3f-f048f3a37ad3" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f46a6c7-a83a-41d6-ab86-1328ae53437d" + ], + "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": [ + "03da812e-043e-449f-bb3f-f048f3a37ad3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221350Z:03da812e-043e-449f-bb3f-f048f3a37ad3" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "4f46a6c7-a83a-41d6-ab86-1328ae53437d" + ], + "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": [ + "03da812e-043e-449f-bb3f-f048f3a37ad3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221350Z:03da812e-043e-449f-bb3f-f048f3a37ad3" + ], + "Date": [ + "Tue, 14 Jul 2015 22:13:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "02494037-4f4e-461e-9737-873d1b502a13" + ], + "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": [ + "1ca734d4-3a25-48fd-9c0c-eca522c66cc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221421Z:1ca734d4-3a25-48fd-9c0c-eca522c66cc2" + ], + "Date": [ + "Tue, 14 Jul 2015 22:14:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "02494037-4f4e-461e-9737-873d1b502a13" + ], + "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": [ + "1ca734d4-3a25-48fd-9c0c-eca522c66cc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221421Z:1ca734d4-3a25-48fd-9c0c-eca522c66cc2" + ], + "Date": [ + "Tue, 14 Jul 2015 22:14:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "02494037-4f4e-461e-9737-873d1b502a13" + ], + "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": [ + "1ca734d4-3a25-48fd-9c0c-eca522c66cc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221421Z:1ca734d4-3a25-48fd-9c0c-eca522c66cc2" + ], + "Date": [ + "Tue, 14 Jul 2015 22:14:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "02494037-4f4e-461e-9737-873d1b502a13" + ], + "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": [ + "1ca734d4-3a25-48fd-9c0c-eca522c66cc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221421Z:1ca734d4-3a25-48fd-9c0c-eca522c66cc2" + ], + "Date": [ + "Tue, 14 Jul 2015 22:14:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "29161046-3c23-4d82-b203-a9dafa333f0a" + ], + "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": [ + "773f6c45-c5c4-4f1a-bfc6-38739cdb1131" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221452Z:773f6c45-c5c4-4f1a-bfc6-38739cdb1131" + ], + "Date": [ + "Tue, 14 Jul 2015 22:14:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "29161046-3c23-4d82-b203-a9dafa333f0a" + ], + "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": [ + "773f6c45-c5c4-4f1a-bfc6-38739cdb1131" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221452Z:773f6c45-c5c4-4f1a-bfc6-38739cdb1131" + ], + "Date": [ + "Tue, 14 Jul 2015 22:14:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "29161046-3c23-4d82-b203-a9dafa333f0a" + ], + "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": [ + "773f6c45-c5c4-4f1a-bfc6-38739cdb1131" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221452Z:773f6c45-c5c4-4f1a-bfc6-38739cdb1131" + ], + "Date": [ + "Tue, 14 Jul 2015 22:14:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "29161046-3c23-4d82-b203-a9dafa333f0a" + ], + "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": [ + "773f6c45-c5c4-4f1a-bfc6-38739cdb1131" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221452Z:773f6c45-c5c4-4f1a-bfc6-38739cdb1131" + ], + "Date": [ + "Tue, 14 Jul 2015 22:14:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\",\r\n \"endTime\": \"2015-07-14T15:15:09.8119287-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "519f526a-d378-420c-adb6-b66c6dc05ff4" + ], + "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": [ + "b1ccb7de-7f49-4a85-865e-425a74741758" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221522Z:b1ccb7de-7f49-4a85-865e-425a74741758" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\",\r\n \"endTime\": \"2015-07-14T15:15:09.8119287-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "519f526a-d378-420c-adb6-b66c6dc05ff4" + ], + "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": [ + "b1ccb7de-7f49-4a85-865e-425a74741758" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221522Z:b1ccb7de-7f49-4a85-865e-425a74741758" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\",\r\n \"endTime\": \"2015-07-14T15:15:09.8119287-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "519f526a-d378-420c-adb6-b66c6dc05ff4" + ], + "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": [ + "b1ccb7de-7f49-4a85-865e-425a74741758" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221522Z:b1ccb7de-7f49-4a85-865e-425a74741758" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/southeastasia/operations/75b39114-b265-444d-aa87-f365c7b7c169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc1YjM5MTE0LWIyNjUtNDQ0ZC1hYTg3LWYzNjVjN2I3YzE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"75b39114-b265-444d-aa87-f365c7b7c169\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-07-14T15:13:17.7022816-07:00\",\r\n \"endTime\": \"2015-07-14T15:15:09.8119287-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], + "x-ms-request-id": [ + "519f526a-d378-420c-adb6-b66c6dc05ff4" + ], + "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": [ + "b1ccb7de-7f49-4a85-865e-425a74741758" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221522Z:b1ccb7de-7f49-4a85-865e-425a74741758" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "x-ms-correlation-request-id": [ + "5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221526Z:5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "x-ms-correlation-request-id": [ + "5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221526Z:5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "x-ms-correlation-request-id": [ + "5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221526Z:5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/pslibtest1514?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDE1MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "x-ms-correlation-request-id": [ + "5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221526Z:5fc1eb37-066d-4204-8488-367c7833a2d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14942" + ], + "x-ms-request-id": [ + "38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "x-ms-correlation-request-id": [ + "38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221542Z:38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14942" + ], + "x-ms-request-id": [ + "38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "x-ms-correlation-request-id": [ + "38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221542Z:38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14942" + ], + "x-ms-request-id": [ + "38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "x-ms-correlation-request-id": [ + "38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221542Z:38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14942" + ], + "x-ms-request-id": [ + "38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "x-ms-correlation-request-id": [ + "38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221542Z:38d38ba1-f2ac-472f-99f4-b76f8b5ab6b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14941" + ], + "x-ms-request-id": [ + "1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "x-ms-correlation-request-id": [ + "1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221558Z:1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14941" + ], + "x-ms-request-id": [ + "1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "x-ms-correlation-request-id": [ + "1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221558Z:1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14941" + ], + "x-ms-request-id": [ + "1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "x-ms-correlation-request-id": [ + "1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221558Z:1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14941" + ], + "x-ms-request-id": [ + "1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "x-ms-correlation-request-id": [ + "1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221558Z:1d42eded-8fef-4a26-b436-9c847bd1f139" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:15:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14940" + ], + "x-ms-request-id": [ + "2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "x-ms-correlation-request-id": [ + "2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221613Z:2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:16:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14940" + ], + "x-ms-request-id": [ + "2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "x-ms-correlation-request-id": [ + "2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221613Z:2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:16:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14940" + ], + "x-ms-request-id": [ + "2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "x-ms-correlation-request-id": [ + "2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221613Z:2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:16:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14940" + ], + "x-ms-request-id": [ + "2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "x-ms-correlation-request-id": [ + "2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221613Z:2a062286-c0c8-4899-a3c4-443950f2c2c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:16:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "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-reads": [ + "14939" + ], + "x-ms-request-id": [ + "abb8278a-ac59-4666-a043-391d1a521735" + ], + "x-ms-correlation-request-id": [ + "abb8278a-ac59-4666-a043-391d1a521735" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150714T221628Z:abb8278a-ac59-4666-a043-391d1a521735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 14 Jul 2015 22:16:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" ], "Expires": [ "-1" @@ -1511,51 +12568,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f2ea6673-b9f4-4bd5-a4a4-643b55f6c69c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14939" + ], + "x-ms-request-id": [ + "abb8278a-ac59-4666-a043-391d1a521735" ], "x-ms-correlation-request-id": [ - "e566dbe4-4eef-4072-8e23-fadae97f7c65" + "abb8278a-ac59-4666-a043-391d1a521735" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174628Z:e566dbe4-4eef-4072-8e23-fadae97f7c65" + "WESTUS:20150714T221628Z:abb8278a-ac59-4666-a043-391d1a521735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:46:27 GMT" + "Tue, 14 Jul 2015 22:16:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNTQ5MWY5LTE3YmItNDhkNS04YTQ0LWY3YTk5OTNlODkyZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"025491f9-17bb-48d5-8a44-f7a9993e892d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:46:25.8095142-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1563,51 +12619,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "7c0b46e6-5b18-4489-8f3e-68ffbff3f3fd" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14939" + ], + "x-ms-request-id": [ + "abb8278a-ac59-4666-a043-391d1a521735" ], "x-ms-correlation-request-id": [ - "38be79bb-9221-4989-b5fc-bf9384b67649" + "abb8278a-ac59-4666-a043-391d1a521735" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174658Z:38be79bb-9221-4989-b5fc-bf9384b67649" + "WESTUS:20150714T221628Z:abb8278a-ac59-4666-a043-391d1a521735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:46:58 GMT" + "Tue, 14 Jul 2015 22:16:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNTQ5MWY5LTE3YmItNDhkNS04YTQ0LWY3YTk5OTNlODkyZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"025491f9-17bb-48d5-8a44-f7a9993e892d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:46:25.8095142-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1615,51 +12670,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "b7a26878-bdfa-45d0-b3a1-8b65aa9176c1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14939" + ], + "x-ms-request-id": [ + "abb8278a-ac59-4666-a043-391d1a521735" ], "x-ms-correlation-request-id": [ - "41949c2c-270f-475c-997b-124a42b05752" + "abb8278a-ac59-4666-a043-391d1a521735" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174729Z:41949c2c-270f-475c-997b-124a42b05752" + "WESTUS:20150714T221628Z:abb8278a-ac59-4666-a043-391d1a521735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:47:29 GMT" + "Tue, 14 Jul 2015 22:16:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNTQ5MWY5LTE3YmItNDhkNS04YTQ0LWY3YTk5OTNlODkyZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"025491f9-17bb-48d5-8a44-f7a9993e892d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:46:25.8095142-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1667,51 +12721,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "ac684fe6-9262-4df4-90e3-824ba885acfa" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14938" + ], + "x-ms-request-id": [ + "637acae0-e72a-436b-a65e-c88c6c6d0a14" ], "x-ms-correlation-request-id": [ - "41df5bb2-f5e0-4c5b-ae3b-22020eda1546" + "637acae0-e72a-436b-a65e-c88c6c6d0a14" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174800Z:41df5bb2-f5e0-4c5b-ae3b-22020eda1546" + "WESTUS:20150714T221644Z:637acae0-e72a-436b-a65e-c88c6c6d0a14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:48:00 GMT" + "Tue, 14 Jul 2015 22:16:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNTQ5MWY5LTE3YmItNDhkNS04YTQ0LWY3YTk5OTNlODkyZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"025491f9-17bb-48d5-8a44-f7a9993e892d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:46:25.8095142-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1719,51 +12772,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "d4264e7e-453b-4008-8c24-3a258b173d99" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14938" + ], + "x-ms-request-id": [ + "637acae0-e72a-436b-a65e-c88c6c6d0a14" ], "x-ms-correlation-request-id": [ - "5ccb8597-5fd8-45db-8ebb-df3b8f7f7523" + "637acae0-e72a-436b-a65e-c88c6c6d0a14" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174831Z:5ccb8597-5fd8-45db-8ebb-df3b8f7f7523" + "WESTUS:20150714T221644Z:637acae0-e72a-436b-a65e-c88c6c6d0a14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:48:31 GMT" + "Tue, 14 Jul 2015 22:16:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNTQ5MWY5LTE3YmItNDhkNS04YTQ0LWY3YTk5OTNlODkyZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"025491f9-17bb-48d5-8a44-f7a9993e892d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-16T10:46:25.8095142-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1771,51 +12823,50 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "81c514e7-d846-416d-ba75-abf1991c76a7" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14938" + ], + "x-ms-request-id": [ + "637acae0-e72a-436b-a65e-c88c6c6d0a14" ], "x-ms-correlation-request-id": [ - "5972a1b9-8266-4328-94b1-8c185a8bc4a7" + "637acae0-e72a-436b-a65e-c88c6c6d0a14" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174902Z:5972a1b9-8266-4328-94b1-8c185a8bc4a7" + "WESTUS:20150714T221644Z:637acae0-e72a-436b-a65e-c88c6c6d0a14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:49:01 GMT" + "Tue, 14 Jul 2015 22:16:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/southeastasia/operations/025491f9-17bb-48d5-8a44-f7a9993e892d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNTQ5MWY5LTE3YmItNDhkNS04YTQ0LWY3YTk5OTNlODkyZD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"025491f9-17bb-48d5-8a44-f7a9993e892d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-16T10:46:25.8095142-07:00\",\r\n \"endTime\": \"2015-06-16T10:49:08.1542698-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -1823,38 +12874,40 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "dbfff036-9d85-4d3e-9bc9-6e7fee85b188" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14938" + ], + "x-ms-request-id": [ + "637acae0-e72a-436b-a65e-c88c6c6d0a14" ], "x-ms-correlation-request-id": [ - "79a91233-e1b7-4718-ab18-2c7104b470c0" + "637acae0-e72a-436b-a65e-c88c6c6d0a14" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174933Z:79a91233-e1b7-4718-ab18-2c7104b470c0" + "WESTUS:20150714T221644Z:637acae0-e72a-436b-a65e-c88c6c6d0a14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:49:32 GMT" + "Tue, 14 Jul 2015 22:16:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/resourcegroups/pslibtest7283?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Jlc291cmNlZ3JvdXBzL3BzbGlidGVzdDcyODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ @@ -1875,17 +12928,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" ], "x-ms-request-id": [ - "39391489-6303-4aa5-b92b-c1193b010148" + "d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "x-ms-correlation-request-id": [ - "39391489-6303-4aa5-b92b-c1193b010148" + "d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174935Z:39391489-6303-4aa5-b92b-c1193b010148" + "WESTUS:20150714T221659Z:d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1894,23 +12947,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:49:35 GMT" + "Tue, 14 Jul 2015 22:16:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTWpnekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1930,16 +12980,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14937" ], "x-ms-request-id": [ - "d235f61f-4631-4230-b0c8-5004499056e3" + "d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "x-ms-correlation-request-id": [ - "d235f61f-4631-4230-b0c8-5004499056e3" + "d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174936Z:d235f61f-4631-4230-b0c8-5004499056e3" + "WESTUS:20150714T221659Z:d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1948,23 +12998,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:49:35 GMT" + "Tue, 14 Jul 2015 22:16:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTWpnekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -1984,16 +13031,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14937" ], "x-ms-request-id": [ - "81721b46-4b8a-40a3-a7c8-95e34bf0b9c9" + "d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "x-ms-correlation-request-id": [ - "81721b46-4b8a-40a3-a7c8-95e34bf0b9c9" + "d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T174951Z:81721b46-4b8a-40a3-a7c8-95e34bf0b9c9" + "WESTUS:20150714T221659Z:d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2002,23 +13049,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:49:51 GMT" + "Tue, 14 Jul 2015 22:16:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTWpnekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2038,16 +13082,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14937" ], "x-ms-request-id": [ - "a682faca-1ed8-49ec-b6ff-9c65edc6c670" + "d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "x-ms-correlation-request-id": [ - "a682faca-1ed8-49ec-b6ff-9c65edc6c670" + "d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175007Z:a682faca-1ed8-49ec-b6ff-9c65edc6c670" + "WESTUS:20150714T221659Z:d01d56fe-89e2-4b2d-b571-ad7fe2ab650e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2056,23 +13100,20 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:50:06 GMT" + "Tue, 14 Jul 2015 22:16:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTWpnekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2088,20 +13129,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14936" ], "x-ms-request-id": [ - "fdddc521-7420-405d-99af-8e8f4fc7feb2" + "783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "x-ms-correlation-request-id": [ - "fdddc521-7420-405d-99af-8e8f4fc7feb2" + "783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175022Z:fdddc521-7420-405d-99af-8e8f4fc7feb2" + "WESTUS:20150714T221715Z:783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2110,23 +13148,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:50:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 22:17:15 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTWpnekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2142,20 +13174,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14936" ], "x-ms-request-id": [ - "488a6e91-aeb7-4d73-bfc7-f45000aa546a" + "783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "x-ms-correlation-request-id": [ - "488a6e91-aeb7-4d73-bfc7-f45000aa546a" + "783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175037Z:488a6e91-aeb7-4d73-bfc7-f45000aa546a" + "WESTUS:20150714T221715Z:783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2164,23 +13193,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:50:37 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 22:17:15 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTWpnekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2196,20 +13219,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14936" ], "x-ms-request-id": [ - "9319bd12-400b-4836-be81-767f76a6bda2" + "783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "x-ms-correlation-request-id": [ - "9319bd12-400b-4836-be81-767f76a6bda2" + "783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175053Z:9319bd12-400b-4836-be81-767f76a6bda2" + "WESTUS:20150714T221715Z:783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2218,23 +13238,17 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:50:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + "Tue, 14 Jul 2015 22:17:15 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1Q3MjgzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVEzTWpnekxWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU0xJQlRFU1QxNTE0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTB4SlFsUkZVMVF4TlRFMExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2251,16 +13265,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14936" ], "x-ms-request-id": [ - "1a977161-0724-4be5-a84f-f9210b37513f" + "783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "x-ms-correlation-request-id": [ - "1a977161-0724-4be5-a84f-f9210b37513f" + "783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T175108Z:1a977161-0724-4be5-a84f-f9210b37513f" + "WESTUS:20150714T221715Z:783a393b-d1bb-4bcf-bf22-58bf2902e347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2269,7 +13283,7 @@ "no-cache" ], "Date": [ - "Tue, 16 Jun 2015 17:51:07 GMT" + "Tue, 14 Jul 2015 22:17:15 GMT" ] }, "StatusCode": 200 @@ -2277,30 +13291,31 @@ ], "Names": { "TestVMScenarioOperations": [ - "pslibtest7283", - "pslibtest4803", - "as4164" + "pslibtest1514", + "pslibtest7227", + "as7329" ], "CreatePublicIP": [ - "azsmnet4297", - "azsmnet1967" + "azsmnet8178", + "azsmnet2296" ], "CreateVNET": [ - "azsmnet7209", - "azsmnet6436" + "azsmnet3357", + "azsmnet3700" ], "CreateNIC": [ - "azsmnet1946", - "azsmnet3909" + "azsmnet547", + "azsmnet9591" ], "CreateDefaultVMInput": [ - "pslibtest4249", - "pslibtest6087", - "pslibtest5052", - "vm9499" + "pslibtest5247", + "pslibtest3713", + "pslibtest3507", + "vm9745", + "Microsoft.Compute/virtualMachines5022" ] }, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMSizesTests/TestListVMSizes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMSizesTests/TestListVMSizes.json index b48ce6523e8c6..acb0217f63c7a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMSizesTests/TestListVMSizes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMSizesTests/TestListVMSizes.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ccfebd33-45cd-4e22-9389-98982441aa5d/providers/Microsoft.Compute/locations/SoutheastAsia/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NmZWJkMzMtNDVjZC00ZTIyLTkzODktOTg5ODI0NDFhYTVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/Microsoft.Compute/locations/SoutheastAsia/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDA5NzdjZGItMTYzZi00MzVmLTljMzItMzllYzhhZTYxZjRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.8.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", @@ -27,8 +27,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "3149e522-9284-41ad-9558-a0ba125a5448_130724825203388677" + ], "x-ms-request-id": [ - "31c1ca1d-e90d-4780-8e86-1b80607c11e4" + "10dc2c59-bce9-46bc-a16a-56cf44fcdf0b" ], "Cache-Control": [ "no-cache" @@ -38,16 +41,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14912" ], "x-ms-correlation-request-id": [ - "38c1fe36-fb1e-48a7-9d9d-42c38e972b5e" + "46236f8a-1805-4d7b-8429-68b08c267272" ], "x-ms-routing-request-id": [ - "WESTUS:20150616T191714Z:38c1fe36-fb1e-48a7-9d9d-42c38e972b5e" + "WESTUS:20150714T205117Z:46236f8a-1805-4d7b-8429-68b08c267272" ], "Date": [ - "Tue, 16 Jun 2015 19:17:14 GMT" + "Tue, 14 Jul 2015 20:51:17 GMT" ] }, "StatusCode": 200 @@ -55,6 +58,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "ccfebd33-45cd-4e22-9389-98982441aa5d" + "SubscriptionId": "00977cdb-163f-435f-9c32-39ec8ae61f4d" } } \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/packages.config b/src/ResourceManagement/Compute/Compute.Tests/packages.config index 7f8c20bce4eec..489a60961cc1d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/packages.config +++ b/src/ResourceManagement/Compute/Compute.Tests/packages.config @@ -3,8 +3,8 @@ <package id="Microsoft.Azure.Test.Framework" version="2.0.5658.29898-prerelease" targetFramework="net45" /> <package id="Microsoft.Azure.Test.HttpRecorder" version="2.0.5658.29898-prerelease" targetFramework="net45" /> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.0.2" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.11" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.0.3" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="1.9.2" targetFramework="net451" /> <package id="xunit.runner.visualstudio" version="0.99.9-build1021" targetFramework="net451" /> diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj index 6237d64f52962..2a651d45c9cde 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj @@ -25,14 +25,13 @@ <SubType>Designer</SubType> </None> </ItemGroup> - <ItemGroup /> <ItemGroup> <Reference Include="Microsoft.Rest.ClientRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.2\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.11\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> </ItemGroup> diff --git a/src/ResourceManagement/Compute/ComputeManagement/packages.config b/src/ResourceManagement/Compute/ComputeManagement/packages.config index ec7b6dabe7bf3..6bd3919e725de 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/packages.config +++ b/src/ResourceManagement/Compute/ComputeManagement/packages.config @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.Rest.ClientRuntime" version="1.0.2" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.11" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.0.3" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj index ec664600df468..5e475f02d74d2 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj @@ -25,11 +25,11 @@ </ItemGroup> <ItemGroup> <Reference Include="Microsoft.Rest.ClientRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.2\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.11\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> </ItemGroup> diff --git a/src/ResourceManagement/Network/NetworkManagement/packages.config b/src/ResourceManagement/Network/NetworkManagement/packages.config index ec7b6dabe7bf3..6bd3919e725de 100644 --- a/src/ResourceManagement/Network/NetworkManagement/packages.config +++ b/src/ResourceManagement/Network/NetworkManagement/packages.config @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.Rest.ClientRuntime" version="1.0.2" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.11" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.0.3" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index 973e8f6ce24b5..64cd2f1673715 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -24,11 +24,11 @@ </ItemGroup> <ItemGroup> <Reference Include="Microsoft.Rest.ClientRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.2\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.11\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> </ItemGroup> diff --git a/src/ResourceManagement/Resource/ResourceManagement/packages.config b/src/ResourceManagement/Resource/ResourceManagement/packages.config index ec7b6dabe7bf3..6bd3919e725de 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/packages.config +++ b/src/ResourceManagement/Resource/ResourceManagement/packages.config @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.Rest.ClientRuntime" version="1.0.2" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.11" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.0.3" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj index 3c543fa9ae8b4..b6a00caf8988a 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj @@ -26,11 +26,11 @@ </ItemGroup> <ItemGroup> <Reference Include="Microsoft.Rest.ClientRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.2\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.11\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> </ItemGroup> diff --git a/src/ResourceManagement/Storage/StorageManagement/packages.config b/src/ResourceManagement/Storage/StorageManagement/packages.config index ec7b6dabe7bf3..6bd3919e725de 100644 --- a/src/ResourceManagement/Storage/StorageManagement/packages.config +++ b/src/ResourceManagement/Storage/StorageManagement/packages.config @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.Rest.ClientRuntime" version="1.0.2" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.11" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.0.3" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file From 7285a28d051ac27ffbb64fff85d85722bff62c15 Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Mon, 20 Jul 2015 16:56:17 -0700 Subject: [PATCH 3/3] Added x-ms-client-request-id --- .../ScenarioTests/AvailabilitySetTests.cs | 2 +- .../ScenarioTests/ExtImgTests.cs | 6 +- .../ScenarioTests/ExtensionTests.cs | 2 +- .../ScenarioTests/VMImageTests.cs | 2 +- .../ComputeManagementClient.json | 10 +- .../Generated/AvailabilitySetsOperations.cs | 75 +++++- .../Generated/ComputeManagementClient.cs | 6 + .../Generated/IComputeManagementClient.cs | 42 +++- .../Generated/UsageOperations.cs | 15 +- ...VirtualMachineExtensionImagesOperations.cs | 45 +++- .../VirtualMachineExtensionsOperations.cs | 47 +++- .../VirtualMachineImagesOperations.cs | 75 +++++- .../VirtualMachineSizesOperations.cs | 15 +- .../Generated/VirtualMachinesOperations.cs | 212 +++++++++++++++-- .../ApplicationGatewaysOperations.cs | 135 ++++++++++- .../INetworkResourceProviderClient.cs | 40 ++++ .../Generated/LoadBalancersOperations.cs | 105 +++++++- .../LocalNetworkGatewaysOperations.cs | 75 +++++- .../Generated/NetworkInterfacesOperations.cs | 105 +++++++- .../NetworkResourceProviderClient.cs | 21 +- .../NetworkSecurityGroupsOperations.cs | 105 +++++++- .../Generated/PublicIpAddressesOperations.cs | 105 +++++++- .../Generated/SecurityRulesOperations.cs | 75 +++++- .../Generated/SubnetsOperations.cs | 75 +++++- .../Generated/UsagesOperations.cs | 15 +- ...tualNetworkGatewayConnectionsOperations.cs | 120 +++++++++- .../VirtualNetworkGatewaysOperations.cs | 90 ++++++- .../Generated/VirtualNetworksOperations.cs | 105 +++++++- .../Generated/AuthorizationClient.cs | 6 + .../DeploymentOperationsOperations.cs | 45 +++- .../Generated/DeploymentsOperations.cs | 90 ++++++- .../Generated/FeatureClient.cs | 6 + .../Generated/FeaturesOperations.cs | 90 ++++++- .../Generated/IAuthorizationClient.cs | 42 +++- .../Generated/IFeatureClient.cs | 42 +++- .../Generated/IResourceManagementClient.cs | 42 +++- .../Generated/ISubscriptionClient.cs | 42 +++- .../Generated/ManagementLocksOperations.cs | 225 ++++++++++++++++-- .../Generated/ProvidersOperations.cs | 75 +++++- .../Generated/ResourceGroupsOperations.cs | 135 ++++++++++- .../Generated/ResourceManagementClient.cs | 6 + ...ourceProviderOperationDetailsOperations.cs | 15 +- .../Generated/ResourcesOperations.cs | 105 +++++++- .../Generated/SubscriptionClient.cs | 6 + .../Generated/SubscriptionsOperations.cs | 45 +++- .../Generated/TagsOperations.cs | 90 ++++++- .../Generated/TenantsOperations.cs | 30 ++- .../Generated/IStorageManagementClient.cs | 42 +++- .../Generated/StorageAccountsOperations.cs | 165 ++++++++++++- .../Generated/StorageManagementClient.cs | 6 + 50 files changed, 2875 insertions(+), 200 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs index 1b6ad469423c0..43db24d4903bd 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs @@ -240,7 +240,7 @@ private void VerifyInvalidFDUDValuesFail() {"testTag", "1"}, }, }; - typeof(Resource).GetProperty("ProvisioningState").SetValue(inputAvailabilitySet, "InProgress"); + typeof(AvailabilitySet).GetProperty("ProvisioningState").SetValue(inputAvailabilitySet, "InProgress"); // function to test the limits available. inputAvailabilitySet.PlatformFaultDomainCount = FDTooLow; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs index 2ac3502327bec..13e3083cfaf31 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs @@ -103,8 +103,8 @@ public void TestExtImgGet() Assert.True(vmimageext.Location == "westus"); Assert.True(vmimageext.OperatingSystem == "Windows"); - Assert.True(vmimageext.ComputeRole == "PaaS"); - Assert.True(vmimageext.HandlerSchema == ""); + Assert.True(vmimageext.ComputeRole == "IaaS"); + Assert.True(vmimageext.HandlerSchema == null); Assert.True(vmimageext.VmScaleSetEnabled == false); Assert.True(vmimageext.SupportsMultipleExtensions == false); } @@ -125,7 +125,7 @@ public void TestExtImgListTypes() parameters.PublisherName); Assert.True(vmextimg.Count > 0); - Assert.True(vmextimg.Count(vmi => vmi.Name == "vmaccess") != 0); + Assert.True(vmextimg.Count(vmi => vmi.Name == "VMAccessAgent") != 0); } } diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs index 2f90febe214d4..796b01d739e42 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs @@ -113,7 +113,7 @@ private void ValidateVMExtension(VirtualMachineExtension vmExtExpected, VirtualM Assert.True(vmExtExpected.VirtualMachineExtensionType == vmExtReturned.VirtualMachineExtensionType); Assert.True(vmExtExpected.AutoUpgradeMinorVersion == vmExtReturned.AutoUpgradeMinorVersion); Assert.True(vmExtExpected.TypeHandlerVersion == vmExtReturned.TypeHandlerVersion); - Assert.True(vmExtExpected.Settings == vmExtReturned.Settings); + Assert.True(vmExtExpected.Settings.ToString() == vmExtReturned.Settings.ToString()); } private void ValidateVMExtensionInstanceView(VirtualMachineExtensionInstanceView vmExtInstanceView) diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs index d09f7e2ef2f94..0e75e7d26bb55 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs @@ -93,7 +93,7 @@ public void TestVMImageListFilters() "MicrosoftWindowsServer", "WindowsServer", "2012-R2-Datacenter", - top: 1); + top: 0); Assert.True(vmimages.Count == 0); // Filter: top - Positive Test diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json index b3bcabde903a6..4ddf76573abc6 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json @@ -743,10 +743,10 @@ } ], "responses": { - "204": { + "200": { "description": "" }, - "200": { + "204": { "description": "" }, "202": { @@ -918,14 +918,14 @@ } ], "responses": { - "202": { - "description": "" - }, "200": { "description": "", "schema": { "$ref": "#/definitions/ComputeLongRunningOperationResult" } + }, + "202": { + "description": "" } }, "x-ms-long-running-operation": true diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs index c970a7b35f763..e9a147a7ca84f 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs @@ -101,11 +101,24 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -214,11 +227,24 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -331,11 +357,24 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -457,11 +496,24 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -595,11 +647,24 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs index ab443978f5e71..dd88e889b1d24 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs @@ -55,6 +55,11 @@ public partial class ComputeManagementClient : ServiceClient<ComputeManagementCl /// </summary> public string ApiVersion { get; private set; } + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + public string AcceptLanguage { get; set; } + /// <summary> /// The retry timeout for Long Running Operations. /// </summary> @@ -188,6 +193,7 @@ private void Initialize() this.VirtualMachines = new VirtualMachinesOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-06-15"; + this.AcceptLanguage = "en-US"; if (this.Credentials != null) { this.Credentials.InitializeServiceClient(this); diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs index 30bccc0df3271..e4be4181302f5 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs @@ -5,6 +5,7 @@ namespace Microsoft.Azure.Management.Compute using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Azure.OData; using System.Linq.Expressions; @@ -20,6 +21,45 @@ public partial interface IComputeManagementClient /// </summary> Uri BaseUri { get; set; } + /// <summary> + /// Gets or sets json serialization settings. + /// </summary> + JsonSerializerSettings SerializationSettings { get; } + + /// <summary> + /// Gets or sets json deserialization settings. + /// </summary> + JsonSerializerSettings DeserializationSettings { get; } + + /// <summary> + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. + /// </summary> + SubscriptionCloudCredentials Credentials { get; } + + /// <summary> + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// </summary> + string SubscriptionId { get; set; } + + /// <summary> + /// Client Api Version. + /// </summary> + string ApiVersion { get; } + + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + string AcceptLanguage { get; set; } + + /// <summary> + /// The retry timeout for Long Running Operations. + /// </summary> + int? LongRunningOperationRetryTimeout { get; set; } + + IAvailabilitySetsOperations AvailabilitySets { get; } IVirtualMachineImagesOperations VirtualMachineImages { get; } @@ -34,5 +74,5 @@ public partial interface IComputeManagementClient IVirtualMachinesOperations VirtualMachines { get; } - } + } } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs index 8492ab6b4fa3d..05c8f216c184c 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs @@ -92,11 +92,24 @@ internal UsageOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs index 5eb7f9384046a..2e7f2a3229481 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs @@ -115,11 +115,24 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -269,11 +282,24 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -393,11 +419,24 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs index 5cef449150fdd..cfe39b3c83487 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs @@ -155,11 +155,24 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -326,11 +339,24 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -350,7 +376,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); ex.Request = httpRequest; @@ -456,11 +482,24 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs index 19d786e8e8af1..d64ed2e749fbb 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs @@ -123,11 +123,24 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -247,11 +260,24 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -363,11 +389,24 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -495,11 +534,24 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -657,11 +709,24 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs index 735a7b2cc3b5a..05b13e1c00e21 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs @@ -92,11 +92,24 @@ internal VirtualMachineSizesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs index e3974ef2dd248..887bb61cd4be8 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs @@ -137,11 +137,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -165,7 +178,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -307,11 +320,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -466,11 +492,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -587,11 +626,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -738,11 +790,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -851,11 +916,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -955,11 +1033,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1065,11 +1156,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1191,11 +1295,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1340,11 +1457,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1476,11 +1606,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1612,11 +1755,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1702,11 +1858,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1807,11 +1976,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs index 381e05a6bea3a..f59f2f0c69c3b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs @@ -124,11 +124,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -238,11 +251,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -404,11 +430,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -532,11 +571,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -641,11 +693,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -792,11 +857,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -930,11 +1008,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1021,11 +1112,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1125,11 +1229,24 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs index d5a784eb47dbf..0bf1d4e80893b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs @@ -5,6 +5,7 @@ namespace Microsoft.Azure.Management.Network using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Azure; using Models; @@ -18,6 +19,45 @@ public partial interface INetworkResourceProviderClient /// </summary> Uri BaseUri { get; set; } + /// <summary> + /// Gets or sets json serialization settings. + /// </summary> + JsonSerializerSettings SerializationSettings { get; } + + /// <summary> + /// Gets or sets json deserialization settings. + /// </summary> + JsonSerializerSettings DeserializationSettings { get; } + + /// <summary> + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. + /// </summary> + SubscriptionCloudCredentials Credentials { get; } + + /// <summary> + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// </summary> + string SubscriptionId { get; set; } + + /// <summary> + /// Client Api Version. + /// </summary> + string ApiVersion { get; } + + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + string AcceptLanguage { get; set; } + + /// <summary> + /// The retry timeout for Long Running Operations. + /// </summary> + int? LongRunningOperationRetryTimeout { get; set; } + + IApplicationGatewaysOperations ApplicationGateways { get; } ILoadBalancersOperations LoadBalancers { get; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs index 78d39ee752d76..1d912570c633d 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs @@ -122,11 +122,24 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -236,11 +249,24 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -402,11 +428,24 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -521,11 +560,24 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -639,11 +691,24 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -743,11 +808,24 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -847,11 +925,24 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs index a30db96e89f92..b04c73a7b4ee4 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs @@ -143,11 +143,24 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -280,11 +293,24 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -431,11 +457,24 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -536,11 +575,24 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -640,11 +692,24 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs index b118bed50fac1..14d22124c1d0b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs @@ -122,11 +122,24 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -236,11 +249,24 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -402,11 +428,24 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -521,11 +560,24 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -639,11 +691,24 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -743,11 +808,24 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -847,11 +925,24 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs index 941c045ac7476..d06e8c89a0398 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs @@ -53,6 +53,11 @@ public partial class NetworkResourceProviderClient : ServiceClient<NetworkResour /// </summary> public string ApiVersion { get; private set; } + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + public string AcceptLanguage { get; set; } + /// <summary> /// The retry timeout for Long Running Operations. /// </summary> @@ -201,6 +206,7 @@ private void Initialize() this.VirtualNetworks = new VirtualNetworksOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-05-01-preview"; + this.AcceptLanguage = "en-US"; if (this.Credentials != null) { this.Credentials.InitializeServiceClient(this); @@ -292,11 +298,24 @@ private void Initialize() httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs index e029e5c8a33b6..7c6e7eac3eec4 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs @@ -124,11 +124,24 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -238,11 +251,24 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -406,11 +432,24 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -525,11 +564,24 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -643,11 +695,24 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -747,11 +812,24 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -851,11 +929,24 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs index 96bdf9c7ec8fc..d7012624aad80 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs @@ -122,11 +122,24 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -236,11 +249,24 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -404,11 +430,24 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -523,11 +562,24 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -641,11 +693,24 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -745,11 +810,24 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -849,11 +927,24 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs index e84eb81f60469..8db42608e4ff4 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs @@ -136,11 +136,24 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -259,11 +272,24 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -435,11 +461,24 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -572,11 +611,24 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -676,11 +728,24 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs index acfcd9bded58e..ba3c81719c9e9 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs @@ -134,11 +134,24 @@ internal SubnetsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -256,11 +269,24 @@ internal SubnetsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -432,11 +458,24 @@ internal SubnetsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -568,11 +607,24 @@ internal SubnetsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -671,11 +723,24 @@ internal SubnetsOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs index df64abc9e64d7..e885b1d61d961 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs @@ -90,11 +90,24 @@ internal UsagesOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs index 27890900ea8d8..0b14071bac6d1 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -145,11 +145,24 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -283,11 +296,24 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -434,11 +460,24 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -549,11 +588,24 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -719,11 +771,24 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -847,11 +912,24 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1015,11 +1093,24 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1123,11 +1214,24 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs index fdfc84671b605..16a59c88892f7 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs @@ -143,11 +143,24 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -280,11 +293,24 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -431,11 +457,24 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -536,11 +575,24 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -706,11 +758,24 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -814,11 +879,24 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs index f7bbc3140b761..31be2cab97adf 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs @@ -122,11 +122,24 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -236,11 +249,24 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -404,11 +430,24 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -522,11 +561,24 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -639,11 +691,24 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -742,11 +807,24 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -845,11 +923,24 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs index 826d8dd445f0b..50df873904598 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs @@ -55,6 +55,11 @@ public partial class AuthorizationClient : ServiceClient<AuthorizationClient>, I /// </summary> public string ApiVersion { get; private set; } + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + public string AcceptLanguage { get; set; } + /// <summary> /// The retry timeout for Long Running Operations. /// </summary> @@ -170,6 +175,7 @@ private void Initialize() this.ManagementLocks = new ManagementLocksOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-01-01"; + this.AcceptLanguage = "en-US"; if (this.Credentials != null) { this.Credentials.InitializeServiceClient(this); diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs index d0a9652ab793b..e62e38e36a713 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs @@ -110,11 +110,24 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -244,11 +257,24 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -347,11 +373,24 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs index 642473f4717a1..d9cb074499f8d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs @@ -101,11 +101,24 @@ internal DeploymentsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -222,11 +235,24 @@ internal DeploymentsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -366,11 +392,24 @@ internal DeploymentsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -502,11 +541,24 @@ internal DeploymentsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -635,11 +687,24 @@ internal DeploymentsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -738,11 +803,24 @@ internal DeploymentsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs index d013a3781c847..9052e52f2225b 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs @@ -53,6 +53,11 @@ public partial class FeatureClient : ServiceClient<FeatureClient>, IFeatureClien /// </summary> public string ApiVersion { get; private set; } + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + public string AcceptLanguage { get; set; } + /// <summary> /// The retry timeout for Long Running Operations. /// </summary> @@ -168,6 +173,7 @@ private void Initialize() this.Features = new FeaturesOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2014-08-01-preview"; + this.AcceptLanguage = "en-US"; if (this.Credentials != null) { this.Credentials.InitializeServiceClient(this); diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs index 541694c752a62..3ff2561bb7d8a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs @@ -82,11 +82,24 @@ internal FeaturesOperations(FeatureClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -199,11 +212,24 @@ internal FeaturesOperations(FeatureClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -325,11 +351,24 @@ internal FeaturesOperations(FeatureClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -451,11 +490,24 @@ internal FeaturesOperations(FeatureClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -555,11 +607,24 @@ internal FeaturesOperations(FeatureClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -658,11 +723,24 @@ internal FeaturesOperations(FeatureClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs index ffe5ff3e18df0..36f699ffac450 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs @@ -5,6 +5,7 @@ namespace Microsoft.Azure.Management.Resources using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Azure.OData; using System.Linq.Expressions; @@ -20,7 +21,46 @@ public partial interface IAuthorizationClient /// </summary> Uri BaseUri { get; set; } + /// <summary> + /// Gets or sets json serialization settings. + /// </summary> + JsonSerializerSettings SerializationSettings { get; } + + /// <summary> + /// Gets or sets json deserialization settings. + /// </summary> + JsonSerializerSettings DeserializationSettings { get; } + + /// <summary> + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. + /// </summary> + SubscriptionCloudCredentials Credentials { get; } + + /// <summary> + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// </summary> + string SubscriptionId { get; set; } + + /// <summary> + /// Client Api Version. + /// </summary> + string ApiVersion { get; } + + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + string AcceptLanguage { get; set; } + + /// <summary> + /// The retry timeout for Long Running Operations. + /// </summary> + int? LongRunningOperationRetryTimeout { get; set; } + + IManagementLocksOperations ManagementLocks { get; } - } + } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs index b7193ffbe822e..58df4a7d40f1c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs @@ -5,6 +5,7 @@ namespace Microsoft.Azure.Management.Resources using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Azure; using Models; @@ -18,7 +19,46 @@ public partial interface IFeatureClient /// </summary> Uri BaseUri { get; set; } + /// <summary> + /// Gets or sets json serialization settings. + /// </summary> + JsonSerializerSettings SerializationSettings { get; } + + /// <summary> + /// Gets or sets json deserialization settings. + /// </summary> + JsonSerializerSettings DeserializationSettings { get; } + + /// <summary> + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. + /// </summary> + SubscriptionCloudCredentials Credentials { get; } + + /// <summary> + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// </summary> + string SubscriptionId { get; set; } + + /// <summary> + /// Client Api Version. + /// </summary> + string ApiVersion { get; } + + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + string AcceptLanguage { get; set; } + + /// <summary> + /// The retry timeout for Long Running Operations. + /// </summary> + int? LongRunningOperationRetryTimeout { get; set; } + + IFeaturesOperations Features { get; } - } + } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs index 7136b9f9d9b3e..be12f43b82f5b 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs @@ -5,6 +5,7 @@ namespace Microsoft.Azure.Management.Resources using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Azure.OData; using System.Linq.Expressions; @@ -20,6 +21,45 @@ public partial interface IResourceManagementClient /// </summary> Uri BaseUri { get; set; } + /// <summary> + /// Gets or sets json serialization settings. + /// </summary> + JsonSerializerSettings SerializationSettings { get; } + + /// <summary> + /// Gets or sets json deserialization settings. + /// </summary> + JsonSerializerSettings DeserializationSettings { get; } + + /// <summary> + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. + /// </summary> + SubscriptionCloudCredentials Credentials { get; } + + /// <summary> + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// </summary> + string SubscriptionId { get; set; } + + /// <summary> + /// Client Api Version. + /// </summary> + string ApiVersion { get; } + + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + string AcceptLanguage { get; set; } + + /// <summary> + /// The retry timeout for Long Running Operations. + /// </summary> + int? LongRunningOperationRetryTimeout { get; set; } + + IProvidersOperations Providers { get; } IResourceGroupsOperations ResourceGroups { get; } @@ -34,5 +74,5 @@ public partial interface IResourceManagementClient IDeploymentsOperations Deployments { get; } - } + } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs index 4713e0493bb8d..e520d80c0a768 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs @@ -5,6 +5,7 @@ namespace Microsoft.Azure.Subscriptions using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Azure; using Models; @@ -18,9 +19,48 @@ public partial interface ISubscriptionClient /// </summary> Uri BaseUri { get; set; } + /// <summary> + /// Gets or sets json serialization settings. + /// </summary> + JsonSerializerSettings SerializationSettings { get; } + + /// <summary> + /// Gets or sets json deserialization settings. + /// </summary> + JsonSerializerSettings DeserializationSettings { get; } + + /// <summary> + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. + /// </summary> + SubscriptionCloudCredentials Credentials { get; } + + /// <summary> + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// </summary> + string SubscriptionId { get; set; } + + /// <summary> + /// Client Api Version. + /// </summary> + string ApiVersion { get; } + + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + string AcceptLanguage { get; set; } + + /// <summary> + /// The retry timeout for Long Running Operations. + /// </summary> + int? LongRunningOperationRetryTimeout { get; set; } + + ISubscriptionsOperations Subscriptions { get; } ITenantsOperations Tenants { get; } - } + } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs index 27febe92846d6..b5a709d019243 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs @@ -109,11 +109,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -290,11 +303,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -462,11 +488,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -574,11 +613,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -701,11 +753,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -805,11 +870,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -937,11 +1015,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1049,11 +1140,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1210,11 +1314,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1319,11 +1436,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1435,11 +1565,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1538,11 +1681,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1641,11 +1797,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1744,11 +1913,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1847,11 +2029,24 @@ internal ManagementLocksOperations(AuthorizationClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs index 14d5059fe4982..42ad562345d71 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs @@ -92,11 +92,24 @@ internal ProvidersOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -209,11 +222,24 @@ internal ProvidersOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -325,11 +351,24 @@ internal ProvidersOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -442,11 +481,24 @@ internal ProvidersOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -545,11 +597,24 @@ internal ProvidersOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs index 00b5470c79d78..2009b4d884b8e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs @@ -108,11 +108,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -225,11 +238,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("HEAD"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -346,11 +372,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -495,11 +534,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -599,11 +651,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -728,11 +793,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("PATCH"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -856,11 +934,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -959,11 +1050,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1062,11 +1166,24 @@ internal ResourceGroupsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs index e2f83015eed6f..4260e6e872286 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs @@ -55,6 +55,11 @@ public partial class ResourceManagementClient : ServiceClient<ResourceManagement /// </summary> public string ApiVersion { get; private set; } + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + public string AcceptLanguage { get; set; } + /// <summary> /// The retry timeout for Long Running Operations. /// </summary> @@ -188,6 +193,7 @@ private void Initialize() this.Deployments = new DeploymentsOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2014-04-01-preview"; + this.AcceptLanguage = "en-US"; if (this.Credentials != null) { this.Credentials.InitializeServiceClient(this); diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs index 8b058414d64ac..3d5d3252e5b15 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs @@ -95,11 +95,24 @@ internal ResourceProviderOperationDetailsOperations(ResourceManagementClient cli httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs index 7149edf87d6dd..582105feb4ecc 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs @@ -100,11 +100,24 @@ internal ResourcesOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -215,11 +228,24 @@ internal ResourcesOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -371,11 +397,24 @@ internal ResourcesOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("HEAD"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -522,11 +561,24 @@ internal ResourcesOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -677,11 +729,24 @@ internal ResourcesOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -843,11 +908,24 @@ internal ResourcesOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -952,11 +1030,24 @@ internal ResourcesOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs index 076825bb44840..bfd873a93c050 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs @@ -53,6 +53,11 @@ public partial class SubscriptionClient : ServiceClient<SubscriptionClient>, ISu /// </summary> public string ApiVersion { get; private set; } + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + public string AcceptLanguage { get; set; } + /// <summary> /// The retry timeout for Long Running Operations. /// </summary> @@ -171,6 +176,7 @@ private void Initialize() this.Tenants = new TenantsOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2014-04-01-preview"; + this.AcceptLanguage = "en-US"; if (this.Credentials != null) { this.Credentials.InitializeServiceClient(this); diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs index bd946dbb03bdd..4846c89325c62 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs @@ -85,11 +85,24 @@ internal SubscriptionsOperations(SubscriptionClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -193,11 +206,24 @@ internal SubscriptionsOperations(SubscriptionClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -296,11 +322,24 @@ internal SubscriptionsOperations(SubscriptionClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs index a4f2767bf5c79..56983f2e33d1f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs @@ -101,11 +101,24 @@ internal TagsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -214,11 +227,24 @@ internal TagsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -337,11 +363,24 @@ internal TagsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -460,11 +499,24 @@ internal TagsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -555,11 +607,24 @@ internal TagsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -658,11 +723,24 @@ internal TagsOperations(ResourceManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs index 099fa526b179e..342f45884cf04 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs @@ -81,11 +81,24 @@ internal TenantsOperations(SubscriptionClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -184,11 +197,24 @@ internal TenantsOperations(SubscriptionClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs index 8c660cfefcd6a..2a6b6a6829990 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs @@ -5,6 +5,7 @@ namespace Microsoft.Azure.Management.Storage using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Azure; using Models; @@ -18,7 +19,46 @@ public partial interface IStorageManagementClient /// </summary> Uri BaseUri { get; set; } + /// <summary> + /// Gets or sets json serialization settings. + /// </summary> + JsonSerializerSettings SerializationSettings { get; } + + /// <summary> + /// Gets or sets json deserialization settings. + /// </summary> + JsonSerializerSettings DeserializationSettings { get; } + + /// <summary> + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. + /// </summary> + SubscriptionCloudCredentials Credentials { get; } + + /// <summary> + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// </summary> + string SubscriptionId { get; set; } + + /// <summary> + /// Client Api Version. + /// </summary> + string ApiVersion { get; } + + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + string AcceptLanguage { get; set; } + + /// <summary> + /// The retry timeout for Long Running Operations. + /// </summary> + int? LongRunningOperationRetryTimeout { get; set; } + + IStorageAccountsOperations StorageAccounts { get; } - } + } } diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs index 2428c5447b221..faeef78ddfc73 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs @@ -91,11 +91,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -273,11 +286,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("PUT"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -405,11 +431,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("DELETE"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -522,11 +561,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -667,11 +719,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("PATCH"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -797,11 +862,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -906,11 +984,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1025,11 +1116,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1161,11 +1265,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("POST"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1269,11 +1386,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } @@ -1374,11 +1504,24 @@ internal StorageAccountsOperations(StorageManagementClient client) httpRequest.Method = new HttpMethod("GET"); httpRequest.RequestUri = new Uri(url); // Set Headers + httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + if (this.Client.AcceptLanguage != null) + { + if (httpRequest.Headers.Contains("accept-language")) + { + httpRequest.Headers.Remove("accept-language"); + } + httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } if (customHeaders != null) { foreach(var header in customHeaders) { - httpRequest.Headers.Add(header.Key, header.Value); + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); } } diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs index ab6c5a369ff29..a624799161723 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs @@ -53,6 +53,11 @@ public partial class StorageManagementClient : ServiceClient<StorageManagementCl /// </summary> public string ApiVersion { get; private set; } + /// <summary> + /// Gets or sets the preferred language for the response. + /// </summary> + public string AcceptLanguage { get; set; } + /// <summary> /// The retry timeout for Long Running Operations. /// </summary> @@ -168,6 +173,7 @@ private void Initialize() this.StorageAccounts = new StorageAccountsOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-05-01-preview"; + this.AcceptLanguage = "en-US"; if (this.Credentials != null) { this.Credentials.InitializeServiceClient(this);