From 4e992b5fe3ec79a2230fbb74df536e7ad05f9c36 Mon Sep 17 00:00:00 2001 From: stankovski Date: Mon, 13 Jul 2015 17:37:02 -0700 Subject: [PATCH 01/34] 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 02/34] 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 b906e7fe7f9b80f1867ded8cdc63bf4d34632b3b Mon Sep 17 00:00:00 2001 From: yugangw-msft <yugangw@microsoft.com> Date: Fri, 17 Jul 2015 16:01:28 -0700 Subject: [PATCH 03/34] remove net40 solution configurations from auto rest based libraries --- build.proj | 35 ++++++--- .../Compute.Tests/Compute.Tests.csproj | 13 +--- src/ResourceManagement/Compute/Compute.sln | 12 --- .../ComputeManagement.csproj | 17 +---- .../Network.Tests/Network.Tests.csproj | 13 +--- src/ResourceManagement/Network/Network.sln | 8 -- .../NetworkManagement.csproj | 17 +---- src/ResourceManagement/Resource/Resource.sln | 6 -- .../ResourceManagement.csproj | 22 +----- .../Resources.Tests/Resources.Tests.csproj | 9 +-- .../Storage.Tests/Storage.Tests.csproj | 9 +-- src/ResourceManagement/Storage/Storage.sln | 8 -- .../StorageManagement.csproj | 17 +---- .../FilterOutAutoRestLibraries.cs | 73 +++++++++++++++++++ .../Microsoft.WindowsAzure.Build.Tasks.csproj | 1 + .../StrongNameUtility.cs | 4 - .../ValidateStrongNameSignatureTask.cs | 8 +- tools/nuget.targets | 2 +- tools/references.net45.props | 70 +++++++++++------- tools/references.portable.props | 16 ++++ 20 files changed, 173 insertions(+), 187 deletions(-) create mode 100644 tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs diff --git a/build.proj b/build.proj index 65bccf4922ddf..e9b1cc1967fe1 100644 --- a/build.proj +++ b/build.proj @@ -69,15 +69,16 @@ Exclude="$(LibrarySourceFolder)\HDInsight\**\*.sln;$(LibrarySourceFolder)\KeyVault\**\*.sln" Condition=" '$(Scope)' == 'all' " /> <LibraryFxTargetList Include="$(FxTargetList)" /> + <AutoRestLibraryFxTargetList Include="portable;net45" /> </ItemGroup> <PropertyGroup> <NuGetCommand>&quot;$(LibraryToolsFolder)\nuget.exe&quot;</NuGetCommand> </PropertyGroup> - <UsingTask AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" TaskName="RegexReplacementTask" /> - <UsingTask AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" TaskName="ValidateStrongNameSignatureTask" /> - + <UsingTask TaskName="ValidateStrongNameSignatureTask" AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" /> + <UsingTask TaskName="FilterOutAutoRestLibraries" AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" /> + <!-- CI build related --> @@ -91,27 +92,41 @@ <UsingTask Condition=" $(OnPremiseBuild) " TaskName="CorporateValidation" AssemblyFile="$(CIToolsPath)\Microsoft.WindowsAzure.Tools.Build.Tasks.OnPremise.dll" /> <Import Condition=" $(OnPremiseBuild) " Project="$(CIToolsPath)\Microsoft.WindowsAzure.Build.OnPremise.msbuild" /> - <Target Name="Build" DependsOnTargets="RestoreNugetPackages"> + <Target Name="PrepareForAutoRestLibraries"> + <FilterOutAutoRestLibraries AllLibraries="@(LibrariesToBuild)" AutoRestMark="AutoRestProjects"> + <Output TaskParameter="AutoRestLibraries" ItemName="AutoRestLibraries" /> + <Output TaskParameter="NonAutoRestLibraries" ItemName="NonAutoRestLibraries" /> + </FilterOutAutoRestLibraries> + </Target> + + <Target Name="Build" DependsOnTargets="RestoreNugetPackages;BuildMsBuildTask;PrepareForAutoRestLibraries"> <PropertyGroup> <_ExtraPropertyList>CodeSign=$(CodeSign)</_ExtraPropertyList> </PropertyGroup> - <CallTarget Targets="BuildMsBuildTask" /> <CallTarget Targets="BuildServerPreparation" Condition=" '$(CodeSign)' == 'true' " /> + <!--The solution contains configurations for each platform such as Net40-Debug, Net45-Release, etc So when invoke msbuild, feed the right configuration name--> - <MSBuild Projects="@(LibrariesToBuild)" + <MSBuild Projects="@(NonAutoRestLibraries)" Properties="Configuration=%(LibraryFxTargetList.Identity)-$(Configuration);Platform=Any CPU;$(_ExtraPropertyList)" Targets="Build" /> + <MSBuild Projects="@(AutoRestLibraries)" + Properties="Configuration=%(AutoRestLibraryFxTargetList.Identity)-$(Configuration);Platform=Any CPU;$(_ExtraPropertyList)" + Targets="Build" /> + <CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " /> </Target> - <Target Name="Clean" DependsOnTargets="RestoreNugetPackages"> - <MSBuild Projects="@(LibrariesToBuild)" + <Target Name="Clean" DependsOnTargets="RestoreNugetPackages;BuildMsBuildTask;PrepareForAutoRestLibraries"> + <MSBuild Projects="@(NonAutoRestLibraries)" Properties="Configuration=%(LibraryFxTargetList.Identity)-$(Configuration);Platform=Any CPU" - Targets="Clean"/> + Targets="Clean" /> + <MSBuild Projects="@(AutoRestLibraries)" + Properties="Configuration=%(AutoRestLibraryFxTargetList.Identity)-$(Configuration);Platform=Any CPU;$(_ExtraPropertyList)" + Targets="Clean" /> <RemoveDir Directories="$(BinariesFolder)" /> </Target> @@ -122,7 +137,7 @@ <TestPartialName>$([System.IO.Path]::GetFileName($(Scope)))</TestPartialName> </PropertyGroup> <ItemGroup> - <!--TODO: improve inclue the logic to be more explicit --> + <!--TODO: improve the logic to be more explicit --> <TestDlls Include=".\src\**\*.Tests\bin\net45-$(Configuration)\*.Tests.dll" Condition=" '$(Scope)' == 'All' " /> <TestDlls Include=".\src\$(Scope)\*.Tests\bin\net45-$(Configuration)\*$(TestPartialName)*.Tests.dll" Condition=" '$(Scope)' != 'All' " /> diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index 7891aa46675a8..b5760d5d2c14d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> + <AutoRestProjects>true</AutoRestProjects> <SDKTestProject>true</SDKTestProject> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <OutputType>Library</OutputType> @@ -154,18 +155,6 @@ <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <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"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> - <Private>True</Private> - </Reference> <Reference Include="xunit"> <HintPath>$(LibraryNugetPackageFolder)\xunit.1.9.2\lib\net20\xunit.dll</HintPath> </Reference> diff --git a/src/ResourceManagement/Compute/Compute.sln b/src/ResourceManagement/Compute/Compute.sln index f44c58c9d72b5..a82a436695465 100644 --- a/src/ResourceManagement/Compute/Compute.sln +++ b/src/ResourceManagement/Compute/Compute.sln @@ -15,16 +15,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceManagement", "..\Re EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Net40-Debug|Any CPU = Net40-Debug|Any CPU - Net40-Release|Any CPU = Net40-Release|Any CPU Net45-Debug|Any CPU = Net45-Debug|Any CPU Net45-Release|Any CPU = Net45-Release|Any CPU Portable-Debug|Any CPU = Portable-Debug|Any CPU Portable-Release|Any CPU = Portable-Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU @@ -33,32 +29,24 @@ Global {4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU {4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU {4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU - {3C768CCE-36A0-433E-8280-31979756CC07}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {3C768CCE-36A0-433E-8280-31979756CC07}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {3C768CCE-36A0-433E-8280-31979756CC07}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {3C768CCE-36A0-433E-8280-31979756CC07}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {3C768CCE-36A0-433E-8280-31979756CC07}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {3C768CCE-36A0-433E-8280-31979756CC07}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {3C768CCE-36A0-433E-8280-31979756CC07}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {3C768CCE-36A0-433E-8280-31979756CC07}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj index 59ecf153cd12a..8868d19ee2034 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj @@ -2,6 +2,7 @@ <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <PropertyGroup> + <AutoRestProjects>true</AutoRestProjects> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}</ProjectGuid> <OutputType>Library</OutputType> @@ -27,22 +28,6 @@ <SubType>Designer</SubType> </None> </ItemGroup> - <ItemGroup Condition=" '$(LibraryFxTarget)' == 'net45' "> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> - <ItemGroup Condition=" '$(LibraryFxTarget)' == 'portable' "> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\portable-net403+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\portable-net403+win+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> diff --git a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj index 81d41bdd63cef..65fbe238501dd 100644 --- a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj +++ b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> + <AutoRestProjects>true</AutoRestProjects> <SDKTestProject>true</SDKTestProject> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <OutputType>Library</OutputType> @@ -124,18 +125,6 @@ <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <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"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> - <Private>True</Private> - </Reference> <Reference Include="xunit"> <HintPath>$(LibraryNugetPackageFolder)\xunit.1.9.2\lib\net20\xunit.dll</HintPath> </Reference> diff --git a/src/ResourceManagement/Network/Network.sln b/src/ResourceManagement/Network/Network.sln index 333154d9ee863..8e05ed875dc78 100644 --- a/src/ResourceManagement/Network/Network.sln +++ b/src/ResourceManagement/Network/Network.sln @@ -11,16 +11,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceManagement", "..\Re EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Net40-Debug|Any CPU = Net40-Debug|Any CPU - Net40-Release|Any CPU = Net40-Release|Any CPU Net45-Debug|Any CPU = Net45-Debug|Any CPU Net45-Release|Any CPU = Net45-Release|Any CPU Portable-Debug|Any CPU = Portable-Debug|Any CPU Portable-Release|Any CPU = Portable-Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU @@ -29,16 +25,12 @@ Global {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU {4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU - {7BC81D11-FB6A-411B-B5CA-3A3EC263B258}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {7BC81D11-FB6A-411B-B5CA-3A3EC263B258}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {7BC81D11-FB6A-411B-B5CA-3A3EC263B258}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {7BC81D11-FB6A-411B-B5CA-3A3EC263B258}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {7BC81D11-FB6A-411B-B5CA-3A3EC263B258}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {7BC81D11-FB6A-411B-B5CA-3A3EC263B258}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {7BC81D11-FB6A-411B-B5CA-3A3EC263B258}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {7BC81D11-FB6A-411B-B5CA-3A3EC263B258}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj index 93dd27f210939..3c5a8f8215ffc 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj @@ -2,6 +2,7 @@ <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <PropertyGroup> + <AutoRestProjects>true</AutoRestProjects> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{4500A2D3-C087-4FBC-BEBD-E630CD728788}</ProjectGuid> <AppDesignerFolder>Properties</AppDesignerFolder> @@ -22,22 +23,6 @@ <None Include="Microsoft.Azure.Management.Network.nuget.proj" /> <None Include="packages.config" /> </ItemGroup> - <ItemGroup Condition=" '$(LibraryFxTarget)' == 'net45' "> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> - <ItemGroup Condition=" '$(LibraryFxTarget)' == 'portable' "> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\portable-net403+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\portable-net403+win+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> diff --git a/src/ResourceManagement/Resource/Resource.sln b/src/ResourceManagement/Resource/Resource.sln index 957716bbc3cb5..0631e08016d49 100644 --- a/src/ResourceManagement/Resource/Resource.sln +++ b/src/ResourceManagement/Resource/Resource.sln @@ -9,16 +9,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Resources.Tests", "Resource EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Net40-Debug|Any CPU = Net40-Debug|Any CPU - Net40-Release|Any CPU = Net40-Release|Any CPU Net45-Debug|Any CPU = Net45-Debug|Any CPU Net45-Release|Any CPU = Net45-Release|Any CPU Portable-Debug|Any CPU = Portable-Debug|Any CPU Portable-Release|Any CPU = Portable-Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU @@ -27,8 +23,6 @@ Global {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU - {BE9D7270-27CB-45EB-BD26-FEA68087E835}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {BE9D7270-27CB-45EB-BD26-FEA68087E835}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {BE9D7270-27CB-45EB-BD26-FEA68087E835}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {BE9D7270-27CB-45EB-BD26-FEA68087E835}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {BE9D7270-27CB-45EB-BD26-FEA68087E835}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index cdb0c8af0db6b..125ef7f3a60f9 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -4,7 +4,7 @@ <PropertyGroup> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{165EF660-235B-45AF-83CB-0D32BEF4C1A2}</ProjectGuid> - <LibraryGeneratedByAutoRest>true</LibraryGeneratedByAutoRest> + <AutoRestProjects>true</AutoRestProjects> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>Microsoft.Azure.Management.Resources</RootNamespace> <AssemblyName>Microsoft.Azure.ResourceManager</AssemblyName> @@ -18,26 +18,12 @@ <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> - <None Include="Microsoft.Azure.Management.Resources.nuspec" /> + <None Include="Microsoft.Azure.Management.Resources.nuspec"> + <SubType>Designer</SubType> + </None> <None Include="Microsoft.Azure.Management.Resources.nuget.proj" /> <None Include="packages.config" /> </ItemGroup> - <ItemGroup Condition=" '$(LibraryFxTarget)' == 'net45' "> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> - <ItemGroup Condition=" '$(LibraryFxTarget)' == 'portable' "> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\portable-net403+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\portable-net403+win+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> diff --git a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj index 939905bf13d2a..6bc02ec8fe9c8 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj +++ b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj @@ -2,6 +2,7 @@ <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <SDKTestProject>true</SDKTestProject> + <AutoRestProjects>true</AutoRestProjects> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> @@ -168,14 +169,6 @@ <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <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"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - <Private>True</Private> - </Reference> <Reference Include="xunit"> <HintPath>$(LibraryNugetPackageFolder)\xunit.1.9.2\lib\net20\xunit.dll</HintPath> </Reference> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj index 94ba83e973c50..682104d02e7a5 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj +++ b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> + <AutoRestProjects>true</AutoRestProjects> <SDKTestProject>true</SDKTestProject> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <OutputType>Library</OutputType> @@ -88,14 +89,6 @@ <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <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"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - <Private>True</Private> - </Reference> <Reference Include="Microsoft.WindowsAzure.Configuration, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.WindowsAzure.ConfigurationManager.1.8.0.0\lib\net35-full\Microsoft.WindowsAzure.Configuration.dll</HintPath> diff --git a/src/ResourceManagement/Storage/Storage.sln b/src/ResourceManagement/Storage/Storage.sln index 41c41495b33ba..176c412b6fdfb 100644 --- a/src/ResourceManagement/Storage/Storage.sln +++ b/src/ResourceManagement/Storage/Storage.sln @@ -11,16 +11,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceManagement", "..\Re EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Net40-Debug|Any CPU = Net40-Debug|Any CPU - Net40-Release|Any CPU = Net40-Release|Any CPU Net45-Debug|Any CPU = Net45-Debug|Any CPU Net45-Release|Any CPU = Net45-Release|Any CPU Portable-Debug|Any CPU = Portable-Debug|Any CPU Portable-Release|Any CPU = Portable-Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU @@ -29,16 +25,12 @@ Global {A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU {A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU - {D36D8F3A-574A-466F-B365-6397E6276BA9}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {D36D8F3A-574A-466F-B365-6397E6276BA9}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {D36D8F3A-574A-466F-B365-6397E6276BA9}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {D36D8F3A-574A-466F-B365-6397E6276BA9}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {D36D8F3A-574A-466F-B365-6397E6276BA9}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {D36D8F3A-574A-466F-B365-6397E6276BA9}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {D36D8F3A-574A-466F-B365-6397E6276BA9}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {D36D8F3A-574A-466F-B365-6397E6276BA9}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU - {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj index bc4069d60f66e..a847ec7295863 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj @@ -2,6 +2,7 @@ <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <PropertyGroup> + <AutoRestProjects>true</AutoRestProjects> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{A7F47B7F-319B-411F-BF33-F57899A430CB}</ProjectGuid> <AppDesignerFolder>Properties</AppDesignerFolder> @@ -23,22 +24,6 @@ <SubType>Designer</SubType> </None> </ItemGroup> - <ItemGroup Condition=" '$(LibraryFxTarget)' == 'net45' "> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> - <ItemGroup Condition=" '$(LibraryFxTarget)' == 'portable' "> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\portable-net403+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\portable-net403+win+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs new file mode 100644 index 0000000000000..a7a9371db1218 --- /dev/null +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/FilterOutAutoRestLibraries.cs @@ -0,0 +1,73 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Collections.Generic; +using System.IO; +using Microsoft.Build.Framework; +using Microsoft.Build.Utilities; + +namespace Microsoft.WindowsAzure.Build.Tasks +{ + public class FilterOutAutoRestLibraries : Task + { + [Required] + public ITaskItem[] AllLibraries { get; set; } + + [Required] + public string AutoRestMark { get; set; } + + [Output] + public ITaskItem[] AutoRestLibraries { get; private set; } + + [Output] + public ITaskItem[] NonAutoRestLibraries { get; private set; } + + public override bool Execute() + { + var autoRestOnes = new List<ITaskItem>(); + var others = new List<ITaskItem>(); + foreach (ITaskItem solution in AllLibraries) + { + bool isAutoRestLibrary = false; + string solutionFile = solution.GetMetadata("FullPath"); + string libFolder = Path.GetDirectoryName(solutionFile); + string[] projects = Directory.GetFiles(libFolder, "*.csproj", SearchOption.AllDirectories); + foreach (string project in projects) + { + string text = File.ReadAllText(project); + if (text.Contains(AutoRestMark)) + { + isAutoRestLibrary = true; + break; + } + } + if (isAutoRestLibrary) + { + autoRestOnes.Add(solution); + } + else + { + others.Add(solution); + } + } + + Log.LogMessage(MessageImportance.High, "We have found {0} autorest libraries.", autoRestOnes.Count); + Log.LogMessage(MessageImportance.High, "we have found {0} Non autorest libraries.", others.Count); + AutoRestLibraries = autoRestOnes.ToArray(); + NonAutoRestLibraries = others.ToArray(); + return true; + } + } +} diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/Microsoft.WindowsAzure.Build.Tasks.csproj b/tools/Microsoft.WindowsAzure.Build.Tasks/Microsoft.WindowsAzure.Build.Tasks.csproj index 39d62cdc10f6e..94746004f5346 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/Microsoft.WindowsAzure.Build.Tasks.csproj +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/Microsoft.WindowsAzure.Build.Tasks.csproj @@ -43,6 +43,7 @@ </ItemGroup> <ItemGroup> <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="FilterOutAutoRestLibraries.cs" /> <Compile Include="RegexReplacementTask.cs" /> <Compile Include="StrongNameUtility.cs" /> <Compile Include="ValidateStrongNameSignatureTask.cs" /> diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/StrongNameUtility.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/StrongNameUtility.cs index 1c5984b9ee53e..e21d78401bdd0 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/StrongNameUtility.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/StrongNameUtility.cs @@ -12,13 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. // -using System; -using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Microsoft.WindowsAzure.Build.Tasks { diff --git a/tools/Microsoft.WindowsAzure.Build.Tasks/ValidateStrongNameSignatureTask.cs b/tools/Microsoft.WindowsAzure.Build.Tasks/ValidateStrongNameSignatureTask.cs index ac837ecf88230..d75bdc9d92694 100644 --- a/tools/Microsoft.WindowsAzure.Build.Tasks/ValidateStrongNameSignatureTask.cs +++ b/tools/Microsoft.WindowsAzure.Build.Tasks/ValidateStrongNameSignatureTask.cs @@ -13,15 +13,9 @@ // limitations under the License. // +using System; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.Globalization; -using System.IO; -using System.Linq; -using System.Text; namespace Microsoft.WindowsAzure.Build.Tasks { diff --git a/tools/nuget.targets b/tools/nuget.targets index 5a323e924f182..fbd332b7faacb 100644 --- a/tools/nuget.targets +++ b/tools/nuget.targets @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> <BaselineReleaseNotes>PREVIEW RELEASE</BaselineReleaseNotes> </PropertyGroup> @@ -33,6 +32,7 @@ <MakeDir Directories="binaries\packages\specs" Condition="!Exists('binaries\packages\specs')" /> </Target> + <UsingTask TaskName="RegexReplacementTask" AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" /> <!-- Replacing version token dependency. --> <Target Name="BuildDynamicNuSpecs" DependsOnTargets="EnsureBinariesFolderExists"> diff --git a/tools/references.net45.props b/tools/references.net45.props index a4ada656e213d..db9a22f43aa15 100644 --- a/tools/references.net45.props +++ b/tools/references.net45.props @@ -5,33 +5,53 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="System" /> - <Reference Include="System.Configuration" /> - <Reference Include="System.Core" /> - <Reference Include="System.IO" /> - <Reference Include="System.Net" /> <Reference Include="System.Net.Http" /> - <Reference Include="System.Net.Http.WebRequest" /> <Reference Include="System.Runtime.Serialization" /> - <Reference Include="System.Web" /> - <Reference Include="System.Xml.Linq" /> - <Reference Include="Microsoft.CSharp" /> - <Reference Include="System.Xml" /> </ItemGroup> - <ItemGroup Condition=" '$(LibraryGeneratedByAutoRest)' != 'true' "> - <Reference Include="Microsoft.Threading.Tasks"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Threading.Tasks.Extensions"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath> - </Reference> - <Reference Include="System.Net.Http.Extensions"> - <SpecificVersion>False</SpecificVersion> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Extensions.dll</HintPath> - </Reference> - <Reference Include="System.Net.Http.Primitives"> - <SpecificVersion>False</SpecificVersion> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Primitives.dll</HintPath> - </Reference> - </ItemGroup> + <!--Use the <Choose> so that VS project system can display correctly + in the solution explorer based on the condition--> + <Choose> + <When Condition=" '$(AutoRestProjects)' != 'true' "> + <ItemGroup> + <Reference Include="System.Core" /> + <Reference Include="System.Configuration" /> + <Reference Include="System.IO" /> + <Reference Include="System.Net" /> + <Reference Include="System.Net.Http.WebRequest" /> + <Reference Include="System.Web" /> + <Reference Include="System.Xml" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="Microsoft.Threading.Tasks"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Threading.Tasks.Extensions"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath> + </Reference> + <Reference Include="System.Net.Http.Extensions"> + <SpecificVersion>False</SpecificVersion> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Extensions.dll</HintPath> + </Reference> + <Reference Include="System.Net.Http.Primitives"> + <SpecificVersion>False</SpecificVersion> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Primitives.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + + <Choose> + <When Condition=" '$(AutoRestProjects)' == 'true' "> + <ItemGroup> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + </Project> \ No newline at end of file diff --git a/tools/references.portable.props b/tools/references.portable.props index 3efa4897e8c89..40d3c145652de 100644 --- a/tools/references.portable.props +++ b/tools/references.portable.props @@ -29,4 +29,20 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.1.1.9\lib\portable-net40+sl5+win8+wp8+wpa81\System.Threading.Tasks.dll</HintPath> </Reference> </ItemGroup> + + <!--Use the <Choose> so that VS project system can display correctly + in the solution explorer based on the condition--> + <Choose> + <When Condition=" '$(AutoRestProjects)' == 'true' "> + <ItemGroup> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\portable-net403+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\portable-net403+win+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + </Project> \ 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 04/34] 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); From b5491d86ccbecbe2c706dd313816191d665526d0 Mon Sep 17 00:00:00 2001 From: Yugang Wang <walterwyg@hotmail.com> Date: Mon, 20 Jul 2015 21:05:42 -0700 Subject: [PATCH 05/34] migrate to using profile 111 and regenerate library code --- .../Compute.Tests/Compute.Tests.csproj | 12 + .../ScenarioTests/AvailabilitySetTests.cs | 10 +- .../ScenarioTests/ListVMTests.cs | 11 +- .../ScenarioTests/VMScenarioTests.cs | 6 +- .../Compute.Tests/ScenarioTests/VMTestBase.cs | 16 +- .../ComputeManagement.csproj | 33 ++ .../Generated/AvailabilitySetsOperations.cs | 98 ++++- .../AvailabilitySetsOperationsExtensions.cs | 20 +- .../Generated/ComputeManagementClient.cs | 26 +- .../Generated/IAvailabilitySetsOperations.cs | 23 +- .../Generated/IComputeManagementClient.cs | 44 +- .../Generated/IUsageOperations.cs | 7 +- ...VirtualMachineExtensionImagesOperations.cs | 15 +- .../IVirtualMachineExtensionsOperations.cs | 23 +- .../IVirtualMachineImagesOperations.cs | 23 +- .../IVirtualMachineSizesOperations.cs | 7 +- .../Generated/IVirtualMachinesOperations.cs | 99 ++--- .../Generated/Models/CachingTypes.cs | 2 +- .../Generated/Models/ComponentNames.cs | 2 +- .../Models/ComputeOperationStatus.cs | 2 +- .../Generated/Models/DiskCreateOptionTypes.cs | 2 +- .../Generated/Models/OperatingSystemTypes.cs | 2 +- .../Generated/Models/OperationStatus.cs | 2 +- .../Generated/Models/PassNames.cs | 2 +- .../Generated/Models/ProtocolTypes.cs | 2 +- .../Generated/Models/SettingNames.cs | 2 +- .../Generated/Models/StatusLevelTypes.cs | 2 +- .../Generated/Models/UsageUnit.cs | 2 +- .../Models/VirtualMachineSizeTypes.cs | 2 +- .../Generated/UsageOperations.cs | 22 +- .../Generated/UsageOperationsExtensions.cs | 4 +- ...VirtualMachineExtensionImagesOperations.cs | 60 ++- ...hineExtensionImagesOperationsExtensions.cs | 12 +- .../VirtualMachineExtensionsOperations.cs | 68 +++- ...alMachineExtensionsOperationsExtensions.cs | 20 +- .../VirtualMachineImagesOperations.cs | 98 ++++- ...irtualMachineImagesOperationsExtensions.cs | 20 +- .../VirtualMachineSizesOperations.cs | 22 +- ...VirtualMachineSizesOperationsExtensions.cs | 4 +- .../Generated/VirtualMachinesOperations.cs | 341 +++++++++++++--- .../VirtualMachinesOperationsExtensions.cs | 120 +++--- .../Network.Tests/Network.Tests.csproj | 12 + .../Tests/ApplicationGatewayTests.cs | 48 ++- .../Tests/GatewayOperationsTests.cs | 39 +- .../Network.Tests/Tests/LoadBalancerTests.cs | 112 +++--- .../Tests/NetworkInterfaceTests.cs | 21 +- .../Tests/NetworkSecurityGroupTests.cs | 85 ++-- .../Tests/PublicIpAddressTests.cs | 21 +- .../Network.Tests/Tests/SecurityRuleTests.cs | 11 +- .../Network.Tests/Tests/SubnetTests.cs | 6 +- .../Tests/VirtualNetworkTests.cs | 21 +- .../ApplicationGatewaysOperations.cs | 232 +++++++++-- ...ApplicationGatewaysOperationsExtensions.cs | 88 ++-- .../IApplicationGatewaysOperations.cs | 65 +-- .../Generated/ILoadBalancersOperations.cs | 49 +-- .../ILocalNetworkGatewaysOperations.cs | 35 +- .../Generated/INetworkInterfacesOperations.cs | 49 +-- .../INetworkResourceProviderClient.cs | 44 +- .../INetworkSecurityGroupsOperations.cs | 49 +-- .../Generated/IPublicIpAddressesOperations.cs | 49 +-- .../Generated/ISecurityRulesOperations.cs | 35 +- .../Generated/ISubnetsOperations.cs | 35 +- .../Generated/IUsagesOperations.cs | 5 +- ...tualNetworkGatewayConnectionsOperations.cs | 55 +-- .../IVirtualNetworkGatewaysOperations.cs | 43 +- .../Generated/IVirtualNetworksOperations.cs | 49 +-- .../Generated/LoadBalancersOperations.cs | 186 +++++++-- .../LoadBalancersOperationsExtensions.cs | 72 ++-- .../LocalNetworkGatewaysOperations.cs | 126 +++++- ...ocalNetworkGatewaysOperationsExtensions.cs | 46 +-- .../ApplicationGatewayCookieBasedAffinity.cs | 2 +- .../ApplicationGatewayOperationalState.cs | 2 +- .../Models/ApplicationGatewayProtocol.cs | 2 +- ...pplicationGatewayRequestRoutingRuleType.cs | 2 +- .../Models/ApplicationGatewaySkuName.cs | 2 +- .../Models/ApplicationGatewayTier.cs | 2 +- .../Generated/Models/IpAllocationMethod.cs | 2 +- .../Generated/Models/LoadDistribution.cs | 2 +- .../Generated/Models/OperationStatus.cs | 2 +- .../Generated/Models/ProbeProtocol.cs | 2 +- .../Generated/Models/SecurityRuleAccess.cs | 2 +- .../Generated/Models/SecurityRuleDirection.cs | 2 +- .../Generated/Models/SecurityRuleProtocol.cs | 2 +- .../Generated/Models/TransportProtocol.cs | 2 +- .../Generated/Models/UsageUnit.cs | 2 +- .../VirtualNetworkGatewayConnectionType.cs | 2 +- .../Models/VirtualNetworkGatewayType.cs | 2 +- .../Generated/Models/VpnType.cs | 2 +- .../Generated/NetworkInterfacesOperations.cs | 186 +++++++-- .../NetworkInterfacesOperationsExtensions.cs | 72 ++-- .../NetworkResourceProviderClient.cs | 43 +- ...NetworkResourceProviderClientExtensions.cs | 4 +- .../NetworkSecurityGroupsOperations.cs | 186 +++++++-- ...tworkSecurityGroupsOperationsExtensions.cs | 72 ++-- .../Generated/PublicIpAddressesOperations.cs | 186 +++++++-- .../PublicIpAddressesOperationsExtensions.cs | 72 ++-- .../Generated/SecurityRulesOperations.cs | 126 +++++- .../SecurityRulesOperationsExtensions.cs | 46 +-- .../Generated/SubnetsOperations.cs | 126 +++++- .../Generated/SubnetsOperationsExtensions.cs | 46 +-- .../Generated/UsagesOperations.cs | 20 +- .../Generated/UsagesOperationsExtensions.cs | 4 +- ...tualNetworkGatewayConnectionsOperations.cs | 191 +++++++-- ...kGatewayConnectionsOperationsExtensions.cs | 66 +-- .../VirtualNetworkGatewaysOperations.cs | 149 +++++-- ...tualNetworkGatewaysOperationsExtensions.cs | 54 +-- .../Generated/VirtualNetworksOperations.cs | 186 +++++++-- .../VirtualNetworksOperationsExtensions.cs | 72 ++-- .../NetworkManagement.csproj | 33 ++ .../Generated/AuthorizationClient.cs | 26 +- .../DeploymentOperationsOperations.cs | 82 +++- ...eploymentOperationsOperationsExtensions.cs | 30 +- .../Generated/DeploymentsOperations.cs | 139 ++++++- .../DeploymentsOperationsExtensions.cs | 42 +- .../Generated/FeatureClient.cs | 24 +- .../Generated/FeaturesOperations.cs | 159 ++++++-- .../Generated/FeaturesOperationsExtensions.cs | 60 +-- .../Generated/IAuthorizationClient.cs | 44 +- .../IDeploymentOperationsOperations.cs | 21 +- .../Generated/IDeploymentsOperations.cs | 33 +- .../Generated/IFeatureClient.cs | 42 +- .../Generated/IFeaturesOperations.cs | 37 +- .../Generated/IManagementLocksOperations.cs | 87 ++-- .../Generated/IProvidersOperations.cs | 29 +- .../Generated/IResourceGroupsOperations.cs | 55 +-- .../Generated/IResourceManagementClient.cs | 44 +- ...ourceProviderOperationDetailsOperations.cs | 7 +- .../Generated/IResourcesOperations.cs | 37 +- .../Generated/ISubscriptionClient.cs | 42 +- .../Generated/ISubscriptionsOperations.cs | 19 +- .../Generated/ITagsOperations.cs | 33 +- .../Generated/ITenantsOperations.cs | 15 +- .../Generated/ManagementLocksOperations.cs | 376 +++++++++++++++--- .../ManagementLocksOperationsExtensions.cs | 132 +++--- .../Generated/Models/DeploymentMode.cs | 2 +- .../Generated/Models/LockLevel.cs | 2 +- .../Generated/ProvidersOperations.cs | 120 +++++- .../ProvidersOperationsExtensions.cs | 38 +- .../Generated/ResourceGroupsOperations.cs | 222 +++++++++-- .../ResourceGroupsOperationsExtensions.cs | 76 ++-- .../Generated/ResourceManagementClient.cs | 26 +- ...ourceProviderOperationDetailsOperations.cs | 22 +- ...derOperationDetailsOperationsExtensions.cs | 4 +- .../Generated/ResourcesOperations.cs | 158 +++++++- .../ResourcesOperationsExtensions.cs | 46 +-- .../Generated/SubscriptionClient.cs | 24 +- .../Generated/SubscriptionsOperations.cs | 80 +++- .../SubscriptionsOperationsExtensions.cs | 30 +- .../Generated/TagsOperations.cs | 139 ++++++- .../Generated/TagsOperationsExtensions.cs | 42 +- .../Generated/TenantsOperations.cs | 61 ++- .../Generated/TenantsOperationsExtensions.cs | 26 +- ...icrosoft.Azure.Management.Resources.nuspec | 2 +- .../ResourceManagement.csproj | 35 ++ .../ResourceManagement/packages.config | 4 +- .../InMemoryTests/DeploymentTests.InMemory.cs | 101 +++-- .../InMemoryTests/FeatureTests.InMemory.cs | 18 +- .../InMemoryTests/ProviderTests.InMemory.cs | 24 +- .../ResourceGroupTests.InMemory.cs | 33 +- .../InMemoryTests/ResourceTests.InMemory.cs | 48 +-- .../Resources.Tests/Resources.Tests.csproj | 20 +- .../DeploymentTests.ScenarioTests.cs | 46 +-- .../ProviderTests.ScenarioTests.cs | 15 +- .../ResourceGroupTests.ScenarioTests.cs | 8 +- .../ResourceTests.ScenarioTests.cs | 39 +- .../SubscriptionTests.ScenarioTests.cs | 17 +- .../ScenarioTests/TagTests.ScenarioTests.cs | 7 +- .../TenantTests.ScenarioTests.cs | 11 +- .../Helpers/StorageManagementTestUtilities.cs | 5 +- .../Storage.Tests/Storage.Tests.csproj | 12 + .../Tests/StorageAccountTests.cs | 20 +- .../Generated/IStorageAccountsOperations.cs | 61 +-- .../Generated/IStorageManagementClient.cs | 42 +- .../Generated/Models/AccountStatus.cs | 2 +- .../Generated/Models/AccountType.cs | 2 +- .../Generated/Models/KeyName.cs | 2 +- .../Generated/Models/ProvisioningState.cs | 2 +- .../Generated/Models/Reason.cs | 2 +- .../Generated/StorageAccountsOperations.cs | 258 ++++++++++-- .../StorageAccountsOperationsExtensions.cs | 84 ++-- .../Generated/StorageManagementClient.cs | 24 +- .../StorageManagement.csproj | 33 ++ tools/Library.Settings.targets | 11 +- tools/references.net45.props | 69 ++-- tools/references.portable.props | 16 - 185 files changed, 6169 insertions(+), 2589 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index b5760d5d2c14d..2914802061498 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -117,6 +117,18 @@ </None> </ItemGroup> <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> <Reference Include="Microsoft.Azure.Test.Framework"> <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> <Private>True</Private> diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs index 5ac8551419844..9394d761b61ae 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs @@ -13,16 +13,16 @@ // limitations under the License. // +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; using Microsoft.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; using Xunit; namespace Compute.Tests @@ -91,7 +91,7 @@ private void Initialize() resourcesClient = ComputeManagementTestUtilities.GetResourceManagementClient(handler); computeClient = ComputeManagementTestUtilities.GetComputeManagementClient(handler); - subId = computeClient.Credentials.SubscriptionId; + subId = computeClient.SubscriptionId; location = ComputeManagementTestUtilities.DefaultLocation; resourceGroupName = TestUtilities.GenerateName(testPrefix); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs index 3716da386e716..db0358f1e69f8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs @@ -13,12 +13,11 @@ // limitations under the License. // +using System.Linq; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; -using Microsoft.Azure.Test; -using System.Net; using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Management.Storage.Models; +using Microsoft.Azure.Test; using Xunit; namespace Compute.Tests @@ -51,12 +50,12 @@ public void TestListVMInSubscription() var vm2 = CreateVM_NoAsyncTracking(rg2Name, asName, storageAccountOutput, imageRef, out inputVM2); var listResponse = m_CrpClient.VirtualMachines.ListAll(); - Assert.True(listResponse.Value.Count >= 2); - Assert.Null(listResponse.NextLink); + Assert.True(listResponse.Count() >= 2); + Assert.Null(listResponse.NextPageLink); int vmsValidatedCount = 0; - foreach (var vm in listResponse.Value ) + foreach (var vm in listResponse) { if (vm.Name == vm1.Name) { diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs index 86567d970b08b..164ee31e391cf 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs @@ -13,13 +13,13 @@ // limitations under the License. // +using System.Linq; +using System.Net; using Microsoft.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test; -using System.Linq; -using System.Net; using Xunit; namespace Compute.Tests @@ -71,7 +71,7 @@ public void TestVMScenarioOperations() ValidateVMInstanceView(inputVM, getVMWithInstanceViewResponse); var listResponse = m_CrpClient.VirtualMachines.List(rgName); - ValidateVM(inputVM, listResponse.Value.FirstOrDefault(x => x.Name == inputVM.Name), + ValidateVM(inputVM, listResponse.FirstOrDefault(x => x.Name == inputVM.Name), Helpers.GetVMReferenceId(m_subId, rgName, inputVM.Name)); var listVMSizesResponse = m_CrpClient.VirtualMachines.ListAvailableSizes(rgName, inputVM.Name); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs index badbf7cb3129e..89c36e75e0eb8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs @@ -13,7 +13,11 @@ // limitations under the License. // -using Compute.Tests; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net; using Microsoft.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; @@ -24,12 +28,8 @@ using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; using Microsoft.Azure.Test; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; + using Xunit; -using System.Diagnostics; namespace Compute.Tests { @@ -63,7 +63,7 @@ protected void EnsureClientsInitialized() m_SrpClient = ComputeManagementTestUtilities.GetStorageManagementClient(handler); m_NrpClient = ComputeManagementTestUtilities.GetNetworkResourceProviderClient(handler); - m_subId = m_CrpClient.Credentials.SubscriptionId; + m_subId = m_CrpClient.SubscriptionId; m_location = ComputeManagementTestUtilities.DefaultLocation; } } @@ -130,7 +130,7 @@ protected StorageAccount CreateStorageAccount(string rgName, string storageAccou ComputeManagementTestUtilities.WaitSeconds(10); var stos = m_SrpClient.StorageAccounts.ListByResourceGroup(rgName); created = - stos.Value.Any( + stos.Any( t => StringComparer.OrdinalIgnoreCase.Equals(t.Name, storageAccountName)); } diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj index 8868d19ee2034..56e86002fe2a6 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj @@ -28,6 +28,39 @@ <SubType>Designer</SubType> </None> </ItemGroup> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'portable' "> + <ItemGroup> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'net45' "> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs index c970a7b35f763..8ae5710ed37eb 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -101,11 +102,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); } } @@ -140,6 +154,10 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -214,11 +232,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); } } @@ -260,6 +291,10 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) var result = new AzureOperationResponse<AvailabilitySet>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -331,11 +366,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); } } @@ -377,6 +425,10 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) var result = new AzureOperationResponse<AvailabilitySetListResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -457,11 +509,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); } } @@ -503,6 +568,10 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachineSizeListResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -595,11 +664,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); } } @@ -645,6 +727,10 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) var result = new AzureOperationResponse<AvailabilitySet>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperationsExtensions.cs index 63637d2305fb8..e75b7239604da 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class AvailabilitySetsOperationsExtensions /// The operation to delete the availability set. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -33,7 +33,7 @@ public static void Delete(this IAvailabilitySetsOperations operations, string re /// The operation to delete the availability set. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -53,7 +53,7 @@ public static void Delete(this IAvailabilitySetsOperations operations, string re /// The operation to get the availability set. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -70,7 +70,7 @@ public static AvailabilitySet Get(this IAvailabilitySetsOperations operations, s /// The operation to get the availability set. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -91,7 +91,7 @@ public static AvailabilitySet Get(this IAvailabilitySetsOperations operations, s /// The operation to list the availability sets. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -105,7 +105,7 @@ public static AvailabilitySetListResult List(this IAvailabilitySetsOperations op /// The operation to list the availability sets. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -123,7 +123,7 @@ public static AvailabilitySetListResult List(this IAvailabilitySetsOperations op /// Lists virtual-machine-sizes available to be used for an availability set. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -140,7 +140,7 @@ public static VirtualMachineSizeListResult ListAvailableSizes(this IAvailability /// Lists virtual-machine-sizes available to be used for an availability set. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -161,7 +161,7 @@ public static VirtualMachineSizeListResult ListAvailableSizes(this IAvailability /// The operation to create or update the availability set. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -181,7 +181,7 @@ public static AvailabilitySet CreateOrUpdate(this IAvailabilitySetsOperations op /// The operation to create or update the availability set. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs index ab443978f5e71..5ff8570b94694 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs @@ -13,8 +13,9 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -38,10 +39,9 @@ public partial class ComputeManagementClient : ServiceClient<ComputeManagementCl public JsonSerializerSettings DeserializationSettings { get; private set; } /// <summary> - /// Subscription credentials which uniquely identify Microsoft Azure - /// subscription. + /// Management credentials for Azure. /// </summary> - public SubscriptionCloudCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// <summary> /// Gets subscription credentials which uniquely identify Microsoft @@ -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> @@ -132,13 +137,13 @@ public ComputeManagementClient(Uri baseUri, params DelegatingHandler[] handlers) /// Initializes a new instance of the ComputeManagementClient class. /// </summary> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public ComputeManagementClient(SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public ComputeManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -154,13 +159,13 @@ public ComputeManagementClient(SubscriptionCloudCredentials credentials, params /// Optional. The base URI of the service. /// </param> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public ComputeManagementClient(Uri baseUri, SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public ComputeManagementClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -188,10 +193,7 @@ private void Initialize() this.VirtualMachines = new VirtualMachinesOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-06-15"; - if (this.Credentials != null) - { - this.Credentials.InitializeServiceClient(this); - } + this.AcceptLanguage = "en-US"; SerializationSettings = new JsonSerializerSettings { Formatting = Formatting.Indented, diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IAvailabilitySetsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IAvailabilitySetsOperations.cs index 857d3e316719a..ded1117c2d08d 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IAvailabilitySetsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IAvailabilitySetsOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -25,10 +26,10 @@ public partial interface IAvailabilitySetsOperations /// The name of the availability set. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,10 +42,10 @@ public partial interface IAvailabilitySetsOperations /// The name of the availability set. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<AvailabilitySet>> GetWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -54,10 +55,10 @@ public partial interface IAvailabilitySetsOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<AvailabilitySetListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -71,10 +72,10 @@ public partial interface IAvailabilitySetsOperations /// The name of the availability set. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachineSizeListResult>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string availabilitySetName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -90,10 +91,10 @@ public partial interface IAvailabilitySetsOperations /// Parameters supplied to the Create Availability Set operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<AvailabilitySet>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, AvailabilitySet parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs index 30bccc0df3271..c2cd3b6010cd3 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs @@ -5,9 +5,11 @@ 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; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -20,6 +22,44 @@ 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> + /// Management credentials for Azure. + /// </summary> + ServiceClientCredentials 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/IUsageOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IUsageOperations.cs index 2cfe2d4aae339..54b7e6ab02ac0 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IUsageOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IUsageOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -22,10 +23,10 @@ public partial interface IUsageOperations /// The location upon which resource usage is queried. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ListUsagesResult>> ListWithHttpMessagesAsync(string location, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionImagesOperations.cs index 54369f522c7d3..206eca9803ea6 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionImagesOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -27,10 +28,10 @@ public partial interface IVirtualMachineExtensionImagesOperations /// <param name='version'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachineExtensionImage>> GetWithHttpMessagesAsync(string location, string publisherName, string type, string version, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -50,10 +51,10 @@ public partial interface IVirtualMachineExtensionImagesOperations /// <param name='orderby'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<IList<VirtualMachineImageResource>>> ListVersionsWithHttpMessagesAsync(string location, string publisherName, string type, Expression<Func<VirtualMachineImageResource, bool>> filter = default(Expression<Func<VirtualMachineImageResource, bool>>), int? top = default(int?), string orderby = default(string), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -64,10 +65,10 @@ public partial interface IVirtualMachineExtensionImagesOperations /// <param name='publisherName'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<IList<VirtualMachineImageResource>>> ListTypesWithHttpMessagesAsync(string location, string publisherName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionsOperations.cs index 969a37bfdfa2e..f387633f1c0a8 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionsOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -33,10 +34,10 @@ public partial interface IVirtualMachineExtensionsOperations /// operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachineExtension>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -57,10 +58,10 @@ public partial interface IVirtualMachineExtensionsOperations /// operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachineExtension>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -77,10 +78,10 @@ public partial interface IVirtualMachineExtensionsOperations /// The name of the virtual machine extension. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -97,10 +98,10 @@ public partial interface IVirtualMachineExtensionsOperations /// The name of the virtual machine extension. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -120,10 +121,10 @@ public partial interface IVirtualMachineExtensionsOperations /// 'instanceView'. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachineExtension>> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, string expand = default(string), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineImagesOperations.cs index c0c1bf2cfb3f0..ac55fcb9e49fb 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineImagesOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -29,10 +30,10 @@ public partial interface IVirtualMachineImagesOperations /// <param name='version'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachineImage>> GetWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, string version, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -43,10 +44,10 @@ public partial interface IVirtualMachineImagesOperations /// <param name='publisherName'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<IList<VirtualMachineImageResource>>> ListOffersWithHttpMessagesAsync(string location, string publisherName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -55,10 +56,10 @@ public partial interface IVirtualMachineImagesOperations /// <param name='location'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<IList<VirtualMachineImageResource>>> ListPublishersWithHttpMessagesAsync(string location, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -71,10 +72,10 @@ public partial interface IVirtualMachineImagesOperations /// <param name='offer'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<IList<VirtualMachineImageResource>>> ListSkusWithHttpMessagesAsync(string location, string publisherName, string offer, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -96,10 +97,10 @@ public partial interface IVirtualMachineImagesOperations /// <param name='orderby'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<IList<VirtualMachineImageResource>>> ListWithHttpMessagesAsync(string location, string publisherName, string offer, string skus, Expression<Func<VirtualMachineImageResource, bool>> filter = default(Expression<Func<VirtualMachineImageResource, bool>>), int? top = default(int?), string orderby = default(string), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineSizesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineSizesOperations.cs index 95c108948eb52..54608e814d7e5 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineSizesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineSizesOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -23,10 +24,10 @@ public partial interface IVirtualMachineSizesOperations /// The location upon which virtual-machine-sizes is queried. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachineSizeListResult>> ListWithHttpMessagesAsync(string location, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachinesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachinesOperations.cs index 7113379b005c7..f92d9af095faa 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachinesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachinesOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -29,10 +30,10 @@ public partial interface IVirtualMachinesOperations /// Parameters supplied to the Capture Virtual Machine operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ComputeLongRunningOperationResult>> CaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -49,10 +50,10 @@ public partial interface IVirtualMachinesOperations /// Parameters supplied to the Capture Virtual Machine operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ComputeLongRunningOperationResult>> BeginCaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -68,10 +69,10 @@ public partial interface IVirtualMachinesOperations /// Parameters supplied to the Create Virtual Machine operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachine>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -87,10 +88,10 @@ public partial interface IVirtualMachinesOperations /// Parameters supplied to the Create Virtual Machine operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachine>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -103,10 +104,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -119,10 +120,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -139,10 +140,10 @@ public partial interface IVirtualMachinesOperations /// 'instanceView'. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachine>> GetWithHttpMessagesAsync(string resourceGroupName, string vmName, string expand = default(string), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -157,10 +158,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -175,10 +176,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -191,10 +192,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> GeneralizeWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -204,12 +205,12 @@ public partial interface IVirtualMachinesOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualMachineListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualMachine>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets the list of Virtual Machines in the subscription. Use /// nextLink property in the response to get the next page of Virtual @@ -217,12 +218,12 @@ public partial interface IVirtualMachinesOperations /// Virtual Machines. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualMachineListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualMachine>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Lists virtual-machine-sizes available to be used for a virtual /// machine. @@ -234,10 +235,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualMachineSizeListResult>> ListAvailableSizesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -250,10 +251,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -266,10 +267,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -282,10 +283,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> RestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -298,10 +299,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginRestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -314,10 +315,10 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> StartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -330,40 +331,40 @@ public partial interface IVirtualMachinesOperations /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginStartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The operation to list virtual machines under a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualMachineListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualMachine>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets the list of Virtual Machines in the subscription. Use /// nextLink property in the response to get the next page of Virtual /// Machines. Do this till nextLink is not null to fetch all the /// Virtual Machines. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualMachineListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualMachine>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/CachingTypes.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/CachingTypes.cs index 4b85315714462..1a0ffe079ef0d 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/CachingTypes.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/CachingTypes.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for CachingTypes + /// Defines values for CachingTypes. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum CachingTypes diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComponentNames.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComponentNames.cs index 3460fb0b8f9d4..2dcc4874ef5d3 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComponentNames.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComponentNames.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ComponentNames + /// Defines values for ComponentNames. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ComponentNames diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeOperationStatus.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeOperationStatus.cs index c34c10cb3bb45..34d9619641f93 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeOperationStatus.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeOperationStatus.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ComputeOperationStatus + /// Defines values for ComputeOperationStatus. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ComputeOperationStatus diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DiskCreateOptionTypes.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DiskCreateOptionTypes.cs index 9842fc7c45a78..84d9ec14f266c 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DiskCreateOptionTypes.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DiskCreateOptionTypes.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for DiskCreateOptionTypes + /// Defines values for DiskCreateOptionTypes. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum DiskCreateOptionTypes diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OperatingSystemTypes.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OperatingSystemTypes.cs index dc2a2f60d7c36..ded33d5cc3fcd 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OperatingSystemTypes.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OperatingSystemTypes.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for OperatingSystemTypes + /// Defines values for OperatingSystemTypes. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum OperatingSystemTypes diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OperationStatus.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OperationStatus.cs index eace81d08944c..afa9e78a42f4a 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OperationStatus.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OperationStatus.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for OperationStatus + /// Defines values for OperationStatus. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum OperationStatus diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/PassNames.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/PassNames.cs index b2195dbbf0b15..05ac9a51c4eb4 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/PassNames.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/PassNames.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for PassNames + /// Defines values for PassNames. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum PassNames diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ProtocolTypes.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ProtocolTypes.cs index 4dcdac0fbeb94..189916d03ac88 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ProtocolTypes.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ProtocolTypes.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ProtocolTypes + /// Defines values for ProtocolTypes. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ProtocolTypes diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SettingNames.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SettingNames.cs index f121929f8b9d3..ec77b1112f7ae 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SettingNames.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SettingNames.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for SettingNames + /// Defines values for SettingNames. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum SettingNames diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/StatusLevelTypes.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/StatusLevelTypes.cs index 80f0c651e46ff..8ef6c425faa9f 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/StatusLevelTypes.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/StatusLevelTypes.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for StatusLevelTypes + /// Defines values for StatusLevelTypes. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum StatusLevelTypes diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/UsageUnit.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/UsageUnit.cs index 240324054e00b..e9bce6a926a6b 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/UsageUnit.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/UsageUnit.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for UsageUnit + /// Defines values for UsageUnit. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum UsageUnit diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSizeTypes.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSizeTypes.cs index 2832c9b94c88b..cf891ef4e499d 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSizeTypes.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSizeTypes.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for VirtualMachineSizeTypes + /// Defines values for VirtualMachineSizeTypes. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum VirtualMachineSizeTypes diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs index 8492ab6b4fa3d..be438ab0947fe 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -92,11 +93,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); } } @@ -138,6 +152,10 @@ internal UsageOperations(ComputeManagementClient client) var result = new AzureOperationResponse<ListUsagesResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperationsExtensions.cs index 53c21c82abb1c..8163812020a0e 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class UsageOperationsExtensions /// Lists compute usages for a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// The location upon which resource usage is queried. @@ -30,7 +30,7 @@ public static ListUsagesResult List(this IUsageOperations operations, string loc /// Lists compute usages for a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// The location upon which resource usage is queried. diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs index 5eb7f9384046a..7d4e78cc04cca 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -115,11 +116,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); } } @@ -161,6 +175,10 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachineExtensionImage>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -269,11 +287,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); } } @@ -315,6 +346,10 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<IList<VirtualMachineImageResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -393,11 +428,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); } } @@ -439,6 +487,10 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<IList<VirtualMachineImageResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs index 91d2ec97d3a2f..050b5a765485f 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class VirtualMachineExtensionImagesOperationsExtensions /// Gets a virtual machine extension image. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -35,7 +35,7 @@ public static VirtualMachineExtensionImage Get(this IVirtualMachineExtensionImag /// Gets a virtual machine extension image. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -58,7 +58,7 @@ public static VirtualMachineExtensionImage Get(this IVirtualMachineExtensionImag /// Gets a list of virtual machine extension image versions. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -82,7 +82,7 @@ public static VirtualMachineExtensionImage Get(this IVirtualMachineExtensionImag /// Gets a list of virtual machine extension image versions. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -110,7 +110,7 @@ public static VirtualMachineExtensionImage Get(this IVirtualMachineExtensionImag /// Gets a list of virtual machine extension image types. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -125,7 +125,7 @@ public static IList<VirtualMachineImageResource> ListTypes(this IVirtualMachineE /// Gets a list of virtual machine extension image types. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs index 5cef449150fdd..2942ceec4d922 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -51,10 +52,10 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// Parameters supplied to the Create Virtual Machine Extension operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<VirtualMachineExtension>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, VirtualMachineExtension extensionParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -155,11 +156,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); } } @@ -205,6 +219,10 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachineExtension>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -237,10 +255,10 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) /// The name of the virtual machine extension. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, string vmExtensionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -326,11 +344,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); } } @@ -365,6 +396,10 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -456,11 +491,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); } } @@ -502,6 +550,10 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachineExtension>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperationsExtensions.cs index a795a97aa57cc..6b83444159e4c 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class VirtualMachineExtensionsOperationsExtensions /// The operation to create or update the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -40,7 +40,7 @@ public static VirtualMachineExtension CreateOrUpdate(this IVirtualMachineExtensi /// The operation to create or update the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -68,7 +68,7 @@ public static VirtualMachineExtension CreateOrUpdate(this IVirtualMachineExtensi /// The operation to create or update the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -92,7 +92,7 @@ public static VirtualMachineExtension BeginCreateOrUpdate(this IVirtualMachineEx /// The operation to create or update the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -120,7 +120,7 @@ public static VirtualMachineExtension BeginCreateOrUpdate(this IVirtualMachineEx /// The operation to delete the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -140,7 +140,7 @@ public static void Delete(this IVirtualMachineExtensionsOperations operations, s /// The operation to delete the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -163,7 +163,7 @@ public static void Delete(this IVirtualMachineExtensionsOperations operations, s /// The operation to delete the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -183,7 +183,7 @@ public static void BeginDelete(this IVirtualMachineExtensionsOperations operatio /// The operation to delete the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -206,7 +206,7 @@ public static void BeginDelete(this IVirtualMachineExtensionsOperations operatio /// The operation to get the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -229,7 +229,7 @@ public static void BeginDelete(this IVirtualMachineExtensionsOperations operatio /// The operation to get the extension. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs index 19d786e8e8af1..29fa218473606 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -123,11 +124,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); } } @@ -169,6 +183,10 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachineImage>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -247,11 +265,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); } } @@ -293,6 +324,10 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<IList<VirtualMachineImageResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -363,11 +398,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); } } @@ -409,6 +457,10 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<IList<VirtualMachineImageResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -495,11 +547,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); } } @@ -541,6 +606,10 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<IList<VirtualMachineImageResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -657,11 +726,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); } } @@ -703,6 +785,10 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<IList<VirtualMachineImageResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperationsExtensions.cs index d44d6a98f5bab..b78fb8bf231c7 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class VirtualMachineImagesOperationsExtensions /// Gets a virtual machine image. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -37,7 +37,7 @@ public static VirtualMachineImage Get(this IVirtualMachineImagesOperations opera /// Gets a virtual machine image. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -62,7 +62,7 @@ public static VirtualMachineImage Get(this IVirtualMachineImagesOperations opera /// Gets a list of virtual machine image offers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -77,7 +77,7 @@ public static IList<VirtualMachineImageResource> ListOffers(this IVirtualMachine /// Gets a list of virtual machine image offers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -96,7 +96,7 @@ public static IList<VirtualMachineImageResource> ListOffers(this IVirtualMachine /// Gets a list of virtual machine image publishers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -109,7 +109,7 @@ public static IList<VirtualMachineImageResource> ListPublishers(this IVirtualMac /// Gets a list of virtual machine image publishers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -126,7 +126,7 @@ public static IList<VirtualMachineImageResource> ListPublishers(this IVirtualMac /// Gets a list of virtual machine image skus. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -143,7 +143,7 @@ public static IList<VirtualMachineImageResource> ListSkus(this IVirtualMachineIm /// Gets a list of virtual machine image skus. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -164,7 +164,7 @@ public static IList<VirtualMachineImageResource> ListSkus(this IVirtualMachineIm /// Gets a list of virtual machine images. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> @@ -190,7 +190,7 @@ public static IList<VirtualMachineImageResource> ListSkus(this IVirtualMachineIm /// Gets a list of virtual machine images. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// </param> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs index 735a7b2cc3b5a..e4c2b58d55d5e 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -92,11 +93,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); } } @@ -138,6 +152,10 @@ internal VirtualMachineSizesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachineSizeListResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperationsExtensions.cs index 89ec7fef353e0..5555959be4c2e 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class VirtualMachineSizesOperationsExtensions /// Lists virtual-machine-sizes available in a location for a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// The location upon which virtual-machine-sizes is queried. @@ -30,7 +30,7 @@ public static VirtualMachineSizeListResult List(this IVirtualMachineSizesOperati /// Lists virtual-machine-sizes available in a location for a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// The location upon which virtual-machine-sizes is queried. diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs index e3974ef2dd248..b49cbb5f14012 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -48,10 +49,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// Parameters supplied to the Capture Virtual Machine operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<ComputeLongRunningOperationResult>> CaptureWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineCaptureParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -137,11 +138,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); } } @@ -187,6 +201,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<ComputeLongRunningOperationResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -213,10 +231,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// Parameters supplied to the Create Virtual Machine operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<VirtualMachine>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachine parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -307,11 +325,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); } } @@ -357,6 +388,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachine>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -386,10 +421,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -466,11 +501,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); } } @@ -505,6 +553,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -587,11 +639,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); } } @@ -633,6 +698,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachine>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -657,10 +726,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeallocateWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -738,11 +807,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); } } @@ -777,6 +859,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -851,11 +937,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); } } @@ -890,6 +989,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -909,7 +1012,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualMachineListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualMachine>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -955,11 +1058,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); } } @@ -998,14 +1114,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualMachineListResult>(); + var result = new AzureOperationResponse<Page<VirtualMachine>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualMachineListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualMachine>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1025,7 +1145,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualMachineListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualMachine>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -1065,11 +1185,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); } } @@ -1108,14 +1241,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualMachineListResult>(); + var result = new AzureOperationResponse<Page<VirtualMachine>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualMachineListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualMachine>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1191,11 +1328,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); } } @@ -1237,6 +1387,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse<VirtualMachineSizeListResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -1260,10 +1414,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> PowerOffWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -1340,11 +1494,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); } } @@ -1379,6 +1546,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -1396,10 +1567,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> RestartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -1476,11 +1647,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); } } @@ -1515,6 +1699,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -1532,10 +1720,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// The name of the virtual machine. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> StartWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -1612,11 +1800,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); } } @@ -1651,6 +1852,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -1661,7 +1866,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// <summary> /// The operation to list virtual machines under a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1670,11 +1875,11 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualMachineListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualMachine>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1683,13 +1888,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1702,11 +1907,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); } } @@ -1745,14 +1963,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualMachineListResult>(); + var result = new AzureOperationResponse<Page<VirtualMachine>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualMachineListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualMachine>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1766,7 +1988,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// property in the response to get the next page of Virtual Machines. Do /// this till nextLink is not null to fetch all the Virtual Machines. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1775,11 +1997,11 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualMachineListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualMachine>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1788,13 +2010,13 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1807,11 +2029,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); } } @@ -1850,14 +2085,18 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualMachineListResult>(); + var result = new AzureOperationResponse<Page<VirtualMachine>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualMachineListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualMachine>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperationsExtensions.cs index 57a4f322b6251..ae80e89cf87e0 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperationsExtensions.cs @@ -17,7 +17,7 @@ public static partial class VirtualMachinesOperationsExtensions /// template that can be used to create similar VMs. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -38,7 +38,7 @@ public static ComputeLongRunningOperationResult Capture(this IVirtualMachinesOpe /// template that can be used to create similar VMs. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -63,7 +63,7 @@ public static ComputeLongRunningOperationResult Capture(this IVirtualMachinesOpe /// template that can be used to create similar VMs. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -84,7 +84,7 @@ public static ComputeLongRunningOperationResult BeginCapture(this IVirtualMachin /// template that can be used to create similar VMs. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -108,7 +108,7 @@ public static ComputeLongRunningOperationResult BeginCapture(this IVirtualMachin /// The operation to create or update a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -128,7 +128,7 @@ public static VirtualMachine CreateOrUpdate(this IVirtualMachinesOperations oper /// The operation to create or update a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -152,7 +152,7 @@ public static VirtualMachine CreateOrUpdate(this IVirtualMachinesOperations oper /// The operation to create or update a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -172,7 +172,7 @@ public static VirtualMachine BeginCreateOrUpdate(this IVirtualMachinesOperations /// The operation to create or update a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -196,7 +196,7 @@ public static VirtualMachine BeginCreateOrUpdate(this IVirtualMachinesOperations /// The operation to delete a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -213,7 +213,7 @@ public static void Delete(this IVirtualMachinesOperations operations, string res /// The operation to delete a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -233,7 +233,7 @@ public static void Delete(this IVirtualMachinesOperations operations, string res /// The operation to delete a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -250,7 +250,7 @@ public static void BeginDelete(this IVirtualMachinesOperations operations, strin /// The operation to delete a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -270,7 +270,7 @@ public static void BeginDelete(this IVirtualMachinesOperations operations, strin /// The operation to get a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -290,7 +290,7 @@ public static void BeginDelete(this IVirtualMachinesOperations operations, strin /// The operation to get a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -315,7 +315,7 @@ public static void BeginDelete(this IVirtualMachinesOperations operations, strin /// not billed for the compute resources that this Virtual Machine uses. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -333,7 +333,7 @@ public static void Deallocate(this IVirtualMachinesOperations operations, string /// not billed for the compute resources that this Virtual Machine uses. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -354,7 +354,7 @@ public static void Deallocate(this IVirtualMachinesOperations operations, string /// not billed for the compute resources that this Virtual Machine uses. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -372,7 +372,7 @@ public static void BeginDeallocate(this IVirtualMachinesOperations operations, s /// not billed for the compute resources that this Virtual Machine uses. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -392,7 +392,7 @@ public static void BeginDeallocate(this IVirtualMachinesOperations operations, s /// Sets the state of the VM as Generalized. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -409,7 +409,7 @@ public static void Generalize(this IVirtualMachinesOperations operations, string /// Sets the state of the VM as Generalized. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -429,12 +429,12 @@ public static void Generalize(this IVirtualMachinesOperations operations, string /// The operation to list virtual machines under a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static VirtualMachineListResult List(this IVirtualMachinesOperations operations, string resourceGroupName) + public static Page<VirtualMachine> List(this IVirtualMachinesOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((IVirtualMachinesOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -443,7 +443,7 @@ public static VirtualMachineListResult List(this IVirtualMachinesOperations oper /// The operation to list virtual machines under a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -451,9 +451,9 @@ public static VirtualMachineListResult List(this IVirtualMachinesOperations oper /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualMachineListResult> ListAsync( this IVirtualMachinesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualMachine>> ListAsync( this IVirtualMachinesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualMachineListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualMachine>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -463,9 +463,9 @@ public static VirtualMachineListResult List(this IVirtualMachinesOperations oper /// this till nextLink is not null to fetch all the Virtual Machines. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static VirtualMachineListResult ListAll(this IVirtualMachinesOperations operations) + public static Page<VirtualMachine> ListAll(this IVirtualMachinesOperations operations) { return Task.Factory.StartNew(s => ((IVirtualMachinesOperations)s).ListAllAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -476,14 +476,14 @@ public static VirtualMachineListResult ListAll(this IVirtualMachinesOperations o /// this till nextLink is not null to fetch all the Virtual Machines. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualMachineListResult> ListAllAsync( this IVirtualMachinesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualMachine>> ListAllAsync( this IVirtualMachinesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualMachineListResult> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualMachine>> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -491,7 +491,7 @@ public static VirtualMachineListResult ListAll(this IVirtualMachinesOperations o /// Lists virtual-machine-sizes available to be used for a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -508,7 +508,7 @@ public static VirtualMachineSizeListResult ListAvailableSizes(this IVirtualMachi /// Lists virtual-machine-sizes available to be used for a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -529,7 +529,7 @@ public static VirtualMachineSizeListResult ListAvailableSizes(this IVirtualMachi /// The operation to power off (stop) a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -546,7 +546,7 @@ public static void PowerOff(this IVirtualMachinesOperations operations, string r /// The operation to power off (stop) a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -566,7 +566,7 @@ public static void PowerOff(this IVirtualMachinesOperations operations, string r /// The operation to power off (stop) a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -583,7 +583,7 @@ public static void BeginPowerOff(this IVirtualMachinesOperations operations, str /// The operation to power off (stop) a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -603,7 +603,7 @@ public static void BeginPowerOff(this IVirtualMachinesOperations operations, str /// The operation to restart a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -620,7 +620,7 @@ public static void Restart(this IVirtualMachinesOperations operations, string re /// The operation to restart a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -640,7 +640,7 @@ public static void Restart(this IVirtualMachinesOperations operations, string re /// The operation to restart a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -657,7 +657,7 @@ public static void BeginRestart(this IVirtualMachinesOperations operations, stri /// The operation to restart a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -677,7 +677,7 @@ public static void BeginRestart(this IVirtualMachinesOperations operations, stri /// The operation to start a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -694,7 +694,7 @@ public static void Start(this IVirtualMachinesOperations operations, string reso /// The operation to start a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -714,7 +714,7 @@ public static void Start(this IVirtualMachinesOperations operations, string reso /// The operation to start a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -731,7 +731,7 @@ public static void BeginStart(this IVirtualMachinesOperations operations, string /// The operation to start a virtual machine. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -751,31 +751,31 @@ public static void BeginStart(this IVirtualMachinesOperations operations, string /// The operation to list virtual machines under a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static VirtualMachineListResult ListNext(this IVirtualMachinesOperations operations, string nextLink) + public static Page<VirtualMachine> ListNext(this IVirtualMachinesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IVirtualMachinesOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IVirtualMachinesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// The operation to list virtual machines under a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualMachineListResult> ListNextAsync( this IVirtualMachinesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualMachine>> ListNextAsync( this IVirtualMachinesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualMachineListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualMachine>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -785,14 +785,14 @@ public static VirtualMachineListResult ListNext(this IVirtualMachinesOperations /// this till nextLink is not null to fetch all the Virtual Machines. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static VirtualMachineListResult ListAllNext(this IVirtualMachinesOperations operations, string nextLink) + public static Page<VirtualMachine> ListAllNext(this IVirtualMachinesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IVirtualMachinesOperations)s).ListAllNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IVirtualMachinesOperations)s).ListAllNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -801,17 +801,17 @@ public static VirtualMachineListResult ListAllNext(this IVirtualMachinesOperatio /// this till nextLink is not null to fetch all the Virtual Machines. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualMachineListResult> ListAllNextAsync( this IVirtualMachinesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualMachine>> ListAllNextAsync( this IVirtualMachinesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualMachineListResult> result = await operations.ListAllNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualMachine>> result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj index 65fbe238501dd..ad0c26c67c0af 100644 --- a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj +++ b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj @@ -109,6 +109,18 @@ </None> </ItemGroup> <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> <Reference Include="Microsoft.Azure.Test.Framework"> <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> <Private>True</Private> diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 526acdaaa59b8..467a086ba788e 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -1,19 +1,17 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; +using System.Linq; using System.Net; +using System.Security.Cryptography.X509Certificates; +using Microsoft.Azure; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; -using Microsoft.Azure; -using System; -using Microsoft.Azure.Management.Network; -using System.Security.Cryptography.X509Certificates; -using Microsoft.Azure.Management.Network.Models; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Text; namespace Networks.Tests { @@ -154,12 +152,12 @@ private ApplicationGateway CreateApplicationGateway() Name = httpListenerName, FrontendPort = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "frontendPorts", frontendPortName) }, FrontendIpConfiguration = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "frontendIPConfigurations", frontendIpConfigName) }, SslCertificate = null, @@ -174,17 +172,17 @@ private ApplicationGateway CreateApplicationGateway() RuleType = ApplicationGatewayRequestRoutingRuleType.Basic, HttpListener = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "httpListeners", httpListenerName) }, BackendAddressPool = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "backendAddressPools", backendAddressPoolName) }, BackendHttpSettings = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "backendHttpSettingsCollection", backendHttpSettingsName) } } @@ -286,17 +284,17 @@ private ApplicationGateway CreateApplicationGatewayWithSsl() Name = httpListenerName, FrontendPort = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "frontendPorts", frontendPortName) }, FrontendIpConfiguration = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "frontendIPConfigurations", frontendIpConfigName) }, SslCertificate = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "sslCertificates", sslCertName) }, Protocol = ApplicationGatewayProtocol.Http @@ -310,17 +308,17 @@ private ApplicationGateway CreateApplicationGatewayWithSsl() RuleType = ApplicationGatewayRequestRoutingRuleType.Basic, HttpListener = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "httpListeners", httpListenerName) }, BackendAddressPool = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "backendAddressPools", backendAddressPoolName) }, BackendHttpSettings = new SubResource() { - Id = GetChildAppGwResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildAppGwResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, appGwName, "backendHttpSettingsCollection", backendHttpSettingsName) } } @@ -382,11 +380,11 @@ public void ApplicationGatewayApiTest() // List AppGw var listAppGw = networkResourceProviderClient.ApplicationGateways.List(resourceGroupName); - Assert.Equal(1, listAppGw.Value.Count); + Assert.Equal(1, listAppGw.Count()); // List all AppGw var listAllAppGw = networkResourceProviderClient.ApplicationGateways.ListAll(); - Assert.Equal(1, listAllAppGw.Value.Count); + Assert.Equal(1, listAllAppGw.Count()); //Add one more gateway // Put AppGw @@ -402,11 +400,11 @@ public void ApplicationGatewayApiTest() // List AppGw listAppGw = networkResourceProviderClient.ApplicationGateways.List(resourceGroupName); - Assert.Equal(2, listAppGw.Value.Count); + Assert.Equal(2, listAppGw.Count()); // List all AppGw listAllAppGw = networkResourceProviderClient.ApplicationGateways.ListAll(); - Assert.Equal(2, listAllAppGw.Value.Count); + Assert.Equal(2, listAllAppGw.Count()); //Start AppGw networkResourceProviderClient.ApplicationGateways.Start(resourceGroupName, appGwName); @@ -425,7 +423,7 @@ public void ApplicationGatewayApiTest() // Verify Delete listAppGw = networkResourceProviderClient.ApplicationGateways.List(resourceGroupName); - Assert.Null(listAppGw.Value); + Assert.Null(listAppGw); } } } diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs index 2b5fa6cbe0196..a3d4255167e07 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs @@ -1,19 +1,16 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; +using System.Linq; using System.Net; +using Microsoft.Azure; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; -using Microsoft.Azure; -using System; -using Microsoft.Azure.Management.Network; -using System.Security.Cryptography.X509Certificates; -using Microsoft.Azure.Management.Network.Models; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Text; namespace Networks.Tests { @@ -118,16 +115,16 @@ public void VirtualNetworkGatewayOperationsApisTest() // 4. ListVitualNetworkGateways API var listVirtualNetworkGatewayResponse = networkResourceProviderClient.VirtualNetworkGateways.List(resourceGroupName); - Console.WriteLine("ListVirtualNetworkGateways count ={0} ", listVirtualNetworkGatewayResponse.Value.Count); - Assert.Equal(1, listVirtualNetworkGatewayResponse.Value.Count); + Console.WriteLine("ListVirtualNetworkGateways count ={0} ", listVirtualNetworkGatewayResponse.Count()); + Assert.Equal(1, listVirtualNetworkGatewayResponse.Count()); // 5A. DeleteVirtualNetworkGateway API networkResourceProviderClient.VirtualNetworkGateways.Delete(resourceGroupName, virtualNetworkGatewayName); // 5B. ListVitualNetworkGateways API after deleting VirtualNetworkGateway listVirtualNetworkGatewayResponse = networkResourceProviderClient.VirtualNetworkGateways.List(resourceGroupName); - Console.WriteLine("ListVirtualNetworkGateways count ={0} ", listVirtualNetworkGatewayResponse.Value.Count); - Assert.Equal(0, listVirtualNetworkGatewayResponse.Value.Count); + Console.WriteLine("ListVirtualNetworkGateways count ={0} ", listVirtualNetworkGatewayResponse.Count()); + Assert.Equal(0, listVirtualNetworkGatewayResponse.Count()); } } @@ -212,16 +209,16 @@ public void LocalNettworkGatewayOperationsApisTest() // 4. ListLocalNetworkGateways API var listLocalNetworkGatewayResponse = networkResourceProviderClient.LocalNetworkGateways.List(resourceGroupName); - Console.WriteLine("ListLocalNetworkGateways count ={0} ", listLocalNetworkGatewayResponse.Value.Count); - Assert.Equal(1, listLocalNetworkGatewayResponse.Value.Count); + Console.WriteLine("ListLocalNetworkGateways count ={0} ", listLocalNetworkGatewayResponse.Count()); + Assert.Equal(1, listLocalNetworkGatewayResponse.Count()); // 5A. DeleteLocalNetworkGateway API networkResourceProviderClient.LocalNetworkGateways.Delete(resourceGroupName, localNetworkGatewayName); // 5B. ListLocalNetworkGateways API after DeleteLocalNetworkGateway API was called listLocalNetworkGatewayResponse = networkResourceProviderClient.LocalNetworkGateways.List(resourceGroupName); - Console.WriteLine("ListLocalNetworkGateways count ={0} ", listLocalNetworkGatewayResponse.Value.Count); - Assert.Equal(0, listLocalNetworkGatewayResponse.Value.Count); + Console.WriteLine("ListLocalNetworkGateways count ={0} ", listLocalNetworkGatewayResponse.Count()); + Assert.Equal(0, listLocalNetworkGatewayResponse.Count()); } } @@ -377,16 +374,16 @@ public void VirtualNetworkGatewayConnectionOperationsApisTest() // 4. ListVitualNetworkGatewayConnections API var listVirtualNetworkGatewayConectionResponse = networkResourceProviderClient.VirtualNetworkGatewayConnections.List(resourceGroupName); - Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Value.Count); - Assert.Equal(1, listVirtualNetworkGatewayConectionResponse.Value.Count); + Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Count()); + Assert.Equal(1, listVirtualNetworkGatewayConectionResponse.Count()); // 5A. DeleteVirtualNetworkGatewayConnection API networkResourceProviderClient.VirtualNetworkGatewayConnections.Delete(resourceGroupName, VirtualNetworkGatewayConnectionName); // 5B. ListVitualNetworkGatewayConnections API after DeleteVirtualNetworkGatewayConnection API called listVirtualNetworkGatewayConectionResponse = networkResourceProviderClient.VirtualNetworkGatewayConnections.List(resourceGroupName); - Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Value.Count); - Assert.Equal(0, listVirtualNetworkGatewayConectionResponse.Value.Count); + Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Count()); + Assert.Equal(0, listVirtualNetworkGatewayConectionResponse.Count()); } } diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs index 331c15a188d93..483874375155d 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs @@ -86,7 +86,7 @@ public void LoadBalancerApiTest() Name = loadBalancingRuleName, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -96,12 +96,12 @@ public void LoadBalancerApiTest() IdleTimeoutInMinutes = 15, BackendAddressPool = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "backendAddressPools", backEndAddressPoolName) }, Probe = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "probes", probeName) } } @@ -125,7 +125,7 @@ public void LoadBalancerApiTest() Name = inboundNatRule1Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -139,7 +139,7 @@ public void LoadBalancerApiTest() Name = inboundNatRule2Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -184,22 +184,22 @@ public void LoadBalancerApiTest() // Verify List LoadBalancer var listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(1, listLoadBalancer.Value.Count); - Assert.Equal(lbName, listLoadBalancer.Value[0].Name); - Assert.Equal(getLoadBalancer.Etag, listLoadBalancer.Value[0].Etag); + Assert.Equal(1, listLoadBalancer.Count()); + Assert.Equal(lbName, listLoadBalancer.First().Name); + Assert.Equal(getLoadBalancer.Etag, listLoadBalancer.First().Etag); // Verify List LoadBalancer subscription var listLoadBalancerSubscription = networkResourceProviderClient.LoadBalancers.ListAll(); - Assert.Equal(1, listLoadBalancerSubscription.Value.Count); - Assert.Equal(lbName, listLoadBalancerSubscription.Value[0].Name); - Assert.Equal(listLoadBalancerSubscription.Value[0].Etag, listLoadBalancer.Value[0].Etag); + Assert.Equal(1, listLoadBalancerSubscription.Count()); + Assert.Equal(lbName, listLoadBalancerSubscription.First().Name); + Assert.Equal(listLoadBalancerSubscription.First().Etag, listLoadBalancer.First().Etag); // Delete LoadBalancer networkResourceProviderClient.LoadBalancers.Delete(resourceGroupName, lbName); // Verify Delete listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(0, listLoadBalancer.Value.Count); + Assert.Equal(0, listLoadBalancer.Count()); // Delete all PublicIpAddresses networkResourceProviderClient.PublicIpAddresses.Delete(resourceGroupName, lbPublicIpName); @@ -269,7 +269,7 @@ public void LoadBalancerApiTestWithDynamicIp() Name = loadBalancingRuleName, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -279,12 +279,12 @@ public void LoadBalancerApiTestWithDynamicIp() IdleTimeoutInMinutes = 15, BackendAddressPool = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "backendAddressPools", backEndAddressPoolName) }, Probe = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "probes", probeName) } } @@ -308,7 +308,7 @@ public void LoadBalancerApiTestWithDynamicIp() Name = inboundNatRule1Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -322,7 +322,7 @@ public void LoadBalancerApiTestWithDynamicIp() Name = inboundNatRule2Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -365,22 +365,22 @@ public void LoadBalancerApiTestWithDynamicIp() // Verify List LoadBalancer var listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(1, listLoadBalancer.Value.Count); - Assert.Equal(lbName, listLoadBalancer.Value[0].Name); - Assert.Equal(getLoadBalancer.Etag, listLoadBalancer.Value[0].Etag); + Assert.Equal(1, listLoadBalancer.Count()); + Assert.Equal(lbName, listLoadBalancer.First().Name); + Assert.Equal(getLoadBalancer.Etag, listLoadBalancer.First().Etag); // Verify List LoadBalancer subscription var listLoadBalancerSubscription = networkResourceProviderClient.LoadBalancers.ListAll(); - Assert.Equal(1, listLoadBalancerSubscription.Value.Count); - Assert.Equal(lbName, listLoadBalancerSubscription.Value[0].Name); - Assert.Equal(listLoadBalancerSubscription.Value[0].Etag, listLoadBalancer.Value[0].Etag); + Assert.Equal(1, listLoadBalancerSubscription.Count()); + Assert.Equal(lbName, listLoadBalancerSubscription.First().Name); + Assert.Equal(listLoadBalancerSubscription.First().Etag, listLoadBalancer.First().Etag); // Delete LoadBalancer networkResourceProviderClient.LoadBalancers.Delete(resourceGroupName, lbName); // Verify Delete listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(0, listLoadBalancer.Value.Count); + Assert.Equal(0, listLoadBalancer.Count()); // Delete VirtualNetwork networkResourceProviderClient.VirtualNetworks.Delete(resourceGroupName, vnetName); @@ -451,7 +451,7 @@ public void LoadBalancerApiTestWithStaticIp() Name = loadBalancingRuleName, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -460,12 +460,12 @@ public void LoadBalancerApiTestWithStaticIp() EnableFloatingIP = false, BackendAddressPool = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "backendAddressPools", backEndAddressPoolName) }, Probe = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "probes", probeName) } } @@ -489,7 +489,7 @@ public void LoadBalancerApiTestWithStaticIp() Name = inboundNatRule1Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -502,7 +502,7 @@ public void LoadBalancerApiTestWithStaticIp() Name = inboundNatRule2Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -548,22 +548,22 @@ public void LoadBalancerApiTestWithStaticIp() // Verify List LoadBalancer var listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(1, listLoadBalancer.Value.Count); - Assert.Equal(lbName, listLoadBalancer.Value[0].Name); - Assert.Equal(getLoadBalancer.Etag, listLoadBalancer.Value[0].Etag); + Assert.Equal(1, listLoadBalancer.Count()); + Assert.Equal(lbName, listLoadBalancer.First().Name); + Assert.Equal(getLoadBalancer.Etag, listLoadBalancer.First().Etag); // Verify List LoadBalancer subscription var listLoadBalancerSubscription = networkResourceProviderClient.LoadBalancers.ListAll(); - Assert.Equal(1, listLoadBalancerSubscription.Value.Count); - Assert.Equal(lbName, listLoadBalancerSubscription.Value[0].Name); - Assert.Equal(listLoadBalancerSubscription.Value[0].Etag, listLoadBalancer.Value[0].Etag); + Assert.Equal(1, listLoadBalancerSubscription.Count()); + Assert.Equal(lbName, listLoadBalancerSubscription.First().Name); + Assert.Equal(listLoadBalancerSubscription.First().Etag, listLoadBalancer.First().Etag); // Delete LoadBalancer networkResourceProviderClient.LoadBalancers.Delete(resourceGroupName, lbName); // Verify Delete listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(0, listLoadBalancer.Value.Count); + Assert.Equal(0, listLoadBalancer.Count()); // Delete VirtualNetwork networkResourceProviderClient.VirtualNetworks.Delete(resourceGroupName, vnetName); @@ -634,7 +634,7 @@ public void LoadBalancerApiTestWithDistributionPolicy() Name = loadBalancingRuleName, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -643,12 +643,12 @@ public void LoadBalancerApiTestWithDistributionPolicy() EnableFloatingIP = false, BackendAddressPool = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "backendAddressPools", backEndAddressPoolName) }, Probe = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "probes", probeName) } } @@ -673,7 +673,7 @@ public void LoadBalancerApiTestWithDistributionPolicy() Name = inboundNatRule1Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -686,7 +686,7 @@ public void LoadBalancerApiTestWithDistributionPolicy() Name = inboundNatRule2Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -732,9 +732,9 @@ public void LoadBalancerApiTestWithDistributionPolicy() // Verify List LoadBalancer var listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(1, listLoadBalancer.Value.Count); - Assert.Equal(lbName, listLoadBalancer.Value[0].Name); - Assert.Equal(getLoadBalancer.Etag, listLoadBalancer.Value[0].Etag); + Assert.Equal(1, listLoadBalancer.Count()); + Assert.Equal(lbName, listLoadBalancer.First().Name); + Assert.Equal(getLoadBalancer.Etag, listLoadBalancer.First().Etag); // Do another put after changing the distribution policy loadbalancerparamater.LoadBalancingRules[0].LoadDistribution = LoadDistribution.SourceIP; @@ -754,7 +754,7 @@ public void LoadBalancerApiTestWithDistributionPolicy() // Verify Delete listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(0, listLoadBalancer.Value.Count); + Assert.Equal(0, listLoadBalancer.Count()); // Delete VirtualNetwork networkResourceProviderClient.VirtualNetworks.Delete(resourceGroupName, vnetName); @@ -810,7 +810,7 @@ public void CreateEmptyLoadBalancer() // Verify Delete var listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Null(listLoadBalancer.Value); + Assert.Null(listLoadBalancer); } } @@ -881,7 +881,7 @@ public void UpdateLoadBalancerRule() Name = loadBalancingRuleName, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbname, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -890,7 +890,7 @@ public void UpdateLoadBalancerRule() EnableFloatingIP = false, BackendAddressPool = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbname, "backendAddressPools", backEndAddressPoolName) } } @@ -930,7 +930,7 @@ public void UpdateLoadBalancerRule() { Id = GetChildLbResourceId( - networkResourceProviderClient.Credentials.SubscriptionId, + networkResourceProviderClient.SubscriptionId, resourceGroupName, lbname, "probes", @@ -957,7 +957,7 @@ public void UpdateLoadBalancerRule() // Verify Delete var listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Equal(0, listLoadBalancer.Value.Count); + Assert.Equal(0, listLoadBalancer.Count()); // Delete VirtualNetwork networkResourceProviderClient.VirtualNetworks.Delete(resourceGroupName, vnetName); @@ -1073,7 +1073,7 @@ public void LoadBalancerApiNicAssociationTest() Name = loadBalancingRuleName, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -1083,12 +1083,12 @@ public void LoadBalancerApiNicAssociationTest() IdleTimeoutInMinutes = 15, BackendAddressPool = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "backendAddressPools", backEndAddressPoolName) }, Probe = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "probes", probeName) } } @@ -1112,7 +1112,7 @@ public void LoadBalancerApiNicAssociationTest() Name = inboundNatRule1Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -1126,7 +1126,7 @@ public void LoadBalancerApiNicAssociationTest() Name = inboundNatRule2Name, FrontendIPConfiguration = new SubResource() { - Id = GetChildLbResourceId(networkResourceProviderClient.Credentials.SubscriptionId, + Id = GetChildLbResourceId(networkResourceProviderClient.SubscriptionId, resourceGroupName, lbName, "FrontendIPConfigurations", frontendIpConfigName) }, Protocol = TransportProtocol.Tcp, @@ -1187,7 +1187,7 @@ public void LoadBalancerApiNicAssociationTest() // Verify Delete var listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Null(listLoadBalancer.Value); + Assert.Null(listLoadBalancer); // Delete all NetworkInterfaces networkResourceProviderClient.NetworkInterfaces.Delete(resourceGroupName, nic1name); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs index f76ef412a551c..a51fab6054061 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Linq; using System.Net; using Microsoft.Azure; using Microsoft.Azure.Management.Network; @@ -139,23 +140,23 @@ public void NetworkInterfaceApiTest() // Get all Nics var getListNicResponse = networkResourceProviderClient.NetworkInterfaces.List(resourceGroupName); - Assert.Equal(1, getListNicResponse.Value.Count); - Assert.Equal(getNicResponse.Name, getListNicResponse.Value[0].Name); - Assert.Equal(getNicResponse.Etag, getListNicResponse.Value[0].Etag); - Assert.Equal(getNicResponse.IpConfigurations[0].Etag, getListNicResponse.Value[0].IpConfigurations[0].Etag); + Assert.Equal(1, getListNicResponse.Count()); + Assert.Equal(getNicResponse.Name, getListNicResponse.First().Name); + Assert.Equal(getNicResponse.Etag, getListNicResponse.First().Etag); + Assert.Equal(getNicResponse.IpConfigurations[0].Etag, getListNicResponse.First().IpConfigurations[0].Etag); // Get all Nics in subscription var listNicSubscription = networkResourceProviderClient.NetworkInterfaces.ListAll(); - Assert.Equal(1, getListNicResponse.Value.Count); - Assert.Equal(getNicResponse.Name, listNicSubscription.Value[0].Name); - Assert.Equal(getNicResponse.Etag, listNicSubscription.Value[0].Etag); - Assert.Equal(listNicSubscription.Value[0].IpConfigurations[0].Etag, getListNicResponse.Value[0].IpConfigurations[0].Etag); + Assert.Equal(1, getListNicResponse.Count()); + Assert.Equal(getNicResponse.Name, listNicSubscription.First().Name); + Assert.Equal(getNicResponse.Etag, listNicSubscription.First().Etag); + Assert.Equal(listNicSubscription.First().IpConfigurations[0].Etag, getListNicResponse.First().IpConfigurations[0].Etag); // Delete Nic networkResourceProviderClient.NetworkInterfaces.Delete(resourceGroupName, nicName); getListNicResponse = networkResourceProviderClient.NetworkInterfaces.List(resourceGroupName); - Assert.Equal(0, getListNicResponse.Value.Count); + Assert.Equal(0, getListNicResponse.Count()); // Delete PublicIPAddress networkResourceProviderClient.PublicIpAddresses.Delete(resourceGroupName, publicIpName); @@ -276,7 +277,7 @@ public void NetworkInterfaceDnsSettingsTest() networkResourceProviderClient.NetworkInterfaces.Delete(resourceGroupName, nicName); var getListNicResponse = networkResourceProviderClient.NetworkInterfaces.List(resourceGroupName); - Assert.Null(getListNicResponse.Value); + Assert.Null(getListNicResponse); // Delete VirtualNetwork networkResourceProviderClient.VirtualNetworks.Delete(resourceGroupName, vnetName); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs index c3fea010424c8..96b9b47f8a9b4 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Net; +using System.Linq; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; @@ -70,36 +71,36 @@ public void NetworkSecurityGroupApiTest() // List NSG var listNsgResponse = networkResourceProviderClient.NetworkSecurityGroups.List(resourceGroupName); - Assert.Equal(1, listNsgResponse.Value.Count); - Assert.Equal(networkSecurityGroupName, listNsgResponse.Value[0].Name); - Assert.Equal(6, listNsgResponse.Value[0].DefaultSecurityRules.Count); - Assert.Equal("AllowVnetInBound", listNsgResponse.Value[0].DefaultSecurityRules[0].Name); - Assert.Equal("AllowAzureLoadBalancerInBound", listNsgResponse.Value[0].DefaultSecurityRules[1].Name); - Assert.Equal("DenyAllInBound", listNsgResponse.Value[0].DefaultSecurityRules[2].Name); - Assert.Equal("AllowVnetOutBound", listNsgResponse.Value[0].DefaultSecurityRules[3].Name); - Assert.Equal("AllowInternetOutBound", listNsgResponse.Value[0].DefaultSecurityRules[4].Name); - Assert.Equal("DenyAllOutBound", listNsgResponse.Value[0].DefaultSecurityRules[5].Name); - Assert.Equal(getNsgResponse.Etag, listNsgResponse.Value[0].Etag); + Assert.Equal(1, listNsgResponse.Count()); + Assert.Equal(networkSecurityGroupName, listNsgResponse.First().Name); + Assert.Equal(6, listNsgResponse.First().DefaultSecurityRules.Count); + Assert.Equal("AllowVnetInBound", listNsgResponse.First().DefaultSecurityRules[0].Name); + Assert.Equal("AllowAzureLoadBalancerInBound", listNsgResponse.First().DefaultSecurityRules[1].Name); + Assert.Equal("DenyAllInBound", listNsgResponse.First().DefaultSecurityRules[2].Name); + Assert.Equal("AllowVnetOutBound", listNsgResponse.First().DefaultSecurityRules[3].Name); + Assert.Equal("AllowInternetOutBound", listNsgResponse.First().DefaultSecurityRules[4].Name); + Assert.Equal("DenyAllOutBound", listNsgResponse.First().DefaultSecurityRules[5].Name); + Assert.Equal(getNsgResponse.Etag, listNsgResponse.First().Etag); // List NSG in a subscription var listNsgSubsciptionResponse = networkResourceProviderClient.NetworkSecurityGroups.ListAll(); - Assert.Equal(1, listNsgSubsciptionResponse.Value.Count); - Assert.Equal(networkSecurityGroupName, listNsgSubsciptionResponse.Value[0].Name); - Assert.Equal(6, listNsgSubsciptionResponse.Value[0].DefaultSecurityRules.Count); - Assert.Equal("AllowVnetInBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[0].Name); - Assert.Equal("AllowAzureLoadBalancerInBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[1].Name); - Assert.Equal("DenyAllInBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[2].Name); - Assert.Equal("AllowVnetOutBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[3].Name); - Assert.Equal("AllowInternetOutBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[4].Name); - Assert.Equal("DenyAllOutBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[5].Name); - Assert.Equal(getNsgResponse.Etag, listNsgSubsciptionResponse.Value[0].Etag); + Assert.Equal(1, listNsgSubsciptionResponse.Count()); + Assert.Equal(networkSecurityGroupName, listNsgSubsciptionResponse.First().Name); + Assert.Equal(6, listNsgSubsciptionResponse.First().DefaultSecurityRules.Count); + Assert.Equal("AllowVnetInBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[0].Name); + Assert.Equal("AllowAzureLoadBalancerInBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[1].Name); + Assert.Equal("DenyAllInBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[2].Name); + Assert.Equal("AllowVnetOutBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[3].Name); + Assert.Equal("AllowInternetOutBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[4].Name); + Assert.Equal("DenyAllOutBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[5].Name); + Assert.Equal(getNsgResponse.Etag, listNsgSubsciptionResponse.First().Etag); // Delete NSG networkResourceProviderClient.NetworkSecurityGroups.Delete(resourceGroupName, networkSecurityGroupName); // List NSG listNsgResponse = networkResourceProviderClient.NetworkSecurityGroups.List(resourceGroupName); - Assert.Equal(0, listNsgResponse.Value.Count); + Assert.Equal(0, listNsgResponse.Count()); } } @@ -180,29 +181,29 @@ public void NetworkSecurityGroupWithRulesApiTest() // List NSG var listNsgResponse = networkResourceProviderClient.NetworkSecurityGroups.List(resourceGroupName); - Assert.Equal(1, listNsgResponse.Value.Count); - Assert.Equal(networkSecurityGroupName, listNsgResponse.Value[0].Name); - Assert.Equal(6, listNsgResponse.Value[0].DefaultSecurityRules.Count); - Assert.Equal("AllowVnetInBound", listNsgResponse.Value[0].DefaultSecurityRules[0].Name); - Assert.Equal("AllowAzureLoadBalancerInBound", listNsgResponse.Value[0].DefaultSecurityRules[1].Name); - Assert.Equal("DenyAllInBound", listNsgResponse.Value[0].DefaultSecurityRules[2].Name); - Assert.Equal("AllowVnetOutBound", listNsgResponse.Value[0].DefaultSecurityRules[3].Name); - Assert.Equal("AllowInternetOutBound", listNsgResponse.Value[0].DefaultSecurityRules[4].Name); - Assert.Equal("DenyAllOutBound", listNsgResponse.Value[0].DefaultSecurityRules[5].Name); - Assert.Equal(getNsgResponse.Etag, listNsgResponse.Value[0].Etag); + Assert.Equal(1, listNsgResponse.Count()); + Assert.Equal(networkSecurityGroupName, listNsgResponse.First().Name); + Assert.Equal(6, listNsgResponse.First().DefaultSecurityRules.Count); + Assert.Equal("AllowVnetInBound", listNsgResponse.First().DefaultSecurityRules[0].Name); + Assert.Equal("AllowAzureLoadBalancerInBound", listNsgResponse.First().DefaultSecurityRules[1].Name); + Assert.Equal("DenyAllInBound", listNsgResponse.First().DefaultSecurityRules[2].Name); + Assert.Equal("AllowVnetOutBound", listNsgResponse.First().DefaultSecurityRules[3].Name); + Assert.Equal("AllowInternetOutBound", listNsgResponse.First().DefaultSecurityRules[4].Name); + Assert.Equal("DenyAllOutBound", listNsgResponse.First().DefaultSecurityRules[5].Name); + Assert.Equal(getNsgResponse.Etag, listNsgResponse.First().Etag); // List NSG in a subscription var listNsgSubsciptionResponse = networkResourceProviderClient.NetworkSecurityGroups.ListAll(); - Assert.Equal(1, listNsgSubsciptionResponse.Value.Count); - Assert.Equal(networkSecurityGroupName, listNsgSubsciptionResponse.Value[0].Name); - Assert.Equal(6, listNsgSubsciptionResponse.Value[0].DefaultSecurityRules.Count); - Assert.Equal("AllowVnetInBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[0].Name); - Assert.Equal("AllowAzureLoadBalancerInBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[1].Name); - Assert.Equal("DenyAllInBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[2].Name); - Assert.Equal("AllowVnetOutBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[3].Name); - Assert.Equal("AllowInternetOutBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[4].Name); - Assert.Equal("DenyAllOutBound", listNsgSubsciptionResponse.Value[0].DefaultSecurityRules[5].Name); - Assert.Equal(getNsgResponse.Etag, listNsgSubsciptionResponse.Value[0].Etag); + Assert.Equal(1, listNsgSubsciptionResponse.Count()); + Assert.Equal(networkSecurityGroupName, listNsgSubsciptionResponse.First().Name); + Assert.Equal(6, listNsgSubsciptionResponse.First().DefaultSecurityRules.Count); + Assert.Equal("AllowVnetInBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[0].Name); + Assert.Equal("AllowAzureLoadBalancerInBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[1].Name); + Assert.Equal("DenyAllInBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[2].Name); + Assert.Equal("AllowVnetOutBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[3].Name); + Assert.Equal("AllowInternetOutBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[4].Name); + Assert.Equal("DenyAllOutBound", listNsgSubsciptionResponse.First().DefaultSecurityRules[5].Name); + Assert.Equal(getNsgResponse.Etag, listNsgSubsciptionResponse.First().Etag); // Add a new security rule var SecurityRule = new SecurityRule() @@ -244,7 +245,7 @@ public void NetworkSecurityGroupWithRulesApiTest() // List NSG listNsgResponse = networkResourceProviderClient.NetworkSecurityGroups.List(resourceGroupName); - Assert.Equal(0, listNsgResponse.Value.Count); + Assert.Equal(0, listNsgResponse.Count()); } } } diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/PublicIpAddressTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/PublicIpAddressTests.cs index a11286460442a..d9fb90cf979e0 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/PublicIpAddressTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/PublicIpAddressTests.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Net; +using System.Linq; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; @@ -62,20 +63,20 @@ public void PublicIpAddressApiTest() // Get List of PublicIpAddress var getPublicIpAddressListResponse = networkResourceProviderClient.PublicIpAddresses.List(resourceGroupName); - Assert.Equal(1, getPublicIpAddressListResponse.Value.Count); - ArePublicIpAddressesEqual(getPublicIpAddressResponse, getPublicIpAddressListResponse.Value[0]); + Assert.Equal(1, getPublicIpAddressListResponse.Count()); + ArePublicIpAddressesEqual(getPublicIpAddressResponse, getPublicIpAddressListResponse.First()); // Get List of PublicIpAddress in a subscription var getPublicIpAddressListSubscriptionResponse = networkResourceProviderClient.PublicIpAddresses.ListAll(); - Assert.Equal(1, getPublicIpAddressListSubscriptionResponse.Value.Count); - ArePublicIpAddressesEqual(getPublicIpAddressResponse, getPublicIpAddressListSubscriptionResponse.Value[0]); + Assert.Equal(1, getPublicIpAddressListSubscriptionResponse.Count()); + ArePublicIpAddressesEqual(getPublicIpAddressResponse, getPublicIpAddressListSubscriptionResponse.First()); // Delete PublicIpAddress networkResourceProviderClient.PublicIpAddresses.Delete(resourceGroupName, publicIpName); // Get PublicIpAddress getPublicIpAddressListResponse = networkResourceProviderClient.PublicIpAddresses.List(resourceGroupName); - Assert.Equal(0, getPublicIpAddressListResponse.Value.Count); + Assert.Equal(0, getPublicIpAddressListResponse.Count()); } } @@ -140,20 +141,20 @@ public void PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn() // Get List of PublicIpAddress var getPublicIpAddressListResponse = networkResourceProviderClient.PublicIpAddresses.List(resourceGroupName); - Assert.Equal(1, getPublicIpAddressListResponse.Value.Count); - ArePublicIpAddressesEqual(getPublicIpAddressResponse, getPublicIpAddressListResponse.Value[0]); + Assert.Equal(1, getPublicIpAddressListResponse.Count()); + ArePublicIpAddressesEqual(getPublicIpAddressResponse, getPublicIpAddressListResponse.First()); // Get List of PublicIpAddress in a subscription var getPublicIpAddressListSubscriptionResponse = networkResourceProviderClient.PublicIpAddresses.ListAll(); - Assert.Equal(1, getPublicIpAddressListSubscriptionResponse.Value.Count); - ArePublicIpAddressesEqual(getPublicIpAddressResponse, getPublicIpAddressListSubscriptionResponse.Value[0]); + Assert.Equal(1, getPublicIpAddressListSubscriptionResponse.Count()); + ArePublicIpAddressesEqual(getPublicIpAddressResponse, getPublicIpAddressListSubscriptionResponse.First()); // Delete PublicIpAddress networkResourceProviderClient.PublicIpAddresses.Delete(resourceGroupName, publicIpName); // Get PublicIpAddress getPublicIpAddressListResponse = networkResourceProviderClient.PublicIpAddresses.List(resourceGroupName); - Assert.Equal(0, getPublicIpAddressListResponse.Value.Count); + Assert.Equal(0, getPublicIpAddressListResponse.Count()); } } diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/SecurityRuleTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/SecurityRuleTests.cs index 91606e55809cd..b8f1d9b3337c2 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/SecurityRuleTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/SecurityRuleTests.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Net; +using System.Linq; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; @@ -117,23 +118,23 @@ public void SecurityRuleWithRulesApiTest() // List all SecurityRules var getsecurityRules = networkResourceProviderClient.SecurityRules.List(resourceGroupName, networkSecurityGroupName); - Assert.Equal(2, getsecurityRules.Value.Count); - this.CompareSecurityRule(getNsgResponse.SecurityRules[0], getsecurityRules.Value[0]); - this.CompareSecurityRule(getNsgResponse.SecurityRules[1], getsecurityRules.Value[1]); + Assert.Equal(2, getsecurityRules.Count()); + this.CompareSecurityRule(getNsgResponse.SecurityRules[0], getsecurityRules.First()); + this.CompareSecurityRule(getNsgResponse.SecurityRules[1], getsecurityRules.ToArray()[1]); // Delete a SecurityRule networkResourceProviderClient.SecurityRules.Delete(resourceGroupName, networkSecurityGroupName, securityRule2); getsecurityRules = networkResourceProviderClient.SecurityRules.List(resourceGroupName, networkSecurityGroupName); - Assert.Equal(1, getsecurityRules.Value.Count); + Assert.Equal(1, getsecurityRules.Count()); // Delete NSG networkResourceProviderClient.NetworkSecurityGroups.Delete(resourceGroupName, networkSecurityGroupName); // List NSG var listNsgResponse = networkResourceProviderClient.NetworkSecurityGroups.List(resourceGroupName); - Assert.Equal(0, listNsgResponse.Value.Count); + Assert.Equal(0, listNsgResponse.Count()); } } diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/SubnetTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/SubnetTests.cs index 7c79b1877a79d..294354a9d2763 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/SubnetTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/SubnetTests.cs @@ -94,7 +94,7 @@ public void SubnetApiTest() var getSubnetListResponse = networkResourceProviderClient.Subnets.List(resourceGroupName, vnetName); // Verify ListSubnets - Assert.True(AreSubnetsEqual(getVnetResponse.Subnets, getSubnetListResponse.Value)); + Assert.True(AreSubnetsEqual(getVnetResponse.Subnets, getSubnetListResponse)); // Delete the subnet "subnet1" networkResourceProviderClient.Subnets.Delete(resourceGroupName, vnetName, subnet2Name); @@ -102,8 +102,8 @@ public void SubnetApiTest() // Verify that the deletion was successful getSubnetListResponse = networkResourceProviderClient.Subnets.List(resourceGroupName, vnetName); - Assert.Equal(1, getSubnetListResponse.Value.Count); - Assert.Equal(subnet1Name, getSubnetListResponse.Value[0].Name); + Assert.Equal(1, getSubnetListResponse.Count()); + Assert.Equal(subnet1Name, getSubnetListResponse.First().Name); #endregion } diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/VirtualNetworkTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/VirtualNetworkTests.cs index ba6ce3c0fbb74..35e973dd4af68 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/VirtualNetworkTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/VirtualNetworkTests.cs @@ -13,6 +13,9 @@ // limitations under the License. // +using System.Collections.Generic; +using System.Linq; +using System.Net; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; @@ -20,9 +23,7 @@ using Microsoft.Azure.Test; using Networks.Tests.Helpers; using ResourceGroups.Tests; -using System.Collections.Generic; -using System.Linq; -using System.Net; + using Xunit; namespace Networks.Tests @@ -103,15 +104,15 @@ public void VirtualNetworkApiTest() // Get all Vnets var getAllVnets = networkResourceProviderClient.VirtualNetworks.List(resourceGroupName); - Assert.Equal(vnetName, getAllVnets.Value[0].Name); - Assert.Equal("Succeeded", getAllVnets.Value[0].ProvisioningState); - Assert.Equal("10.0.0.0/16", getAllVnets.Value[0].AddressSpace.AddressPrefixes[0]); - Assert.Equal(subnet1Name, getAllVnets.Value[0].Subnets[0].Name); - Assert.Equal(subnet2Name, getAllVnets.Value[0].Subnets[1].Name); + Assert.Equal(vnetName, getAllVnets.First().Name); + Assert.Equal("Succeeded", getAllVnets.First().ProvisioningState); + Assert.Equal("10.0.0.0/16", getAllVnets.First().AddressSpace.AddressPrefixes[0]); + Assert.Equal(subnet1Name, getAllVnets.First().Subnets[0].Name); + Assert.Equal(subnet2Name, getAllVnets.First().Subnets[1].Name); // Get all Vnets in a subscription var getAllVnetInSubscription = networkResourceProviderClient.VirtualNetworks.ListAll(); - var vnpgateway = getAllVnetInSubscription.Value.FirstOrDefault(n => n.Name == vnetName); + var vnpgateway = getAllVnetInSubscription.FirstOrDefault(n => n.Name == vnetName); Assert.NotNull(vnpgateway); Assert.Equal("Succeeded", vnpgateway.ProvisioningState); Assert.Equal("10.0.0.0/16", vnpgateway.AddressSpace.AddressPrefixes[0]); @@ -123,7 +124,7 @@ public void VirtualNetworkApiTest() // Get all Vnets getAllVnets = networkResourceProviderClient.VirtualNetworks.List(resourceGroupName); - Assert.Null(getAllVnets.Value); + Assert.Null(getAllVnets); } } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs index 381e05a6bea3a..629ba1e68a19d 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -43,10 +44,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// The name of the applicationgateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -124,11 +125,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); } } @@ -163,6 +177,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -238,11 +256,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); } } @@ -284,6 +315,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<ApplicationGateway>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -310,10 +345,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// Parameters supplied to the create/delete ApplicationGateway operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<ApplicationGateway>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, ApplicationGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -404,11 +439,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); } } @@ -454,6 +502,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<ApplicationGateway>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -486,7 +538,7 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ApplicationGatewayListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ApplicationGateway>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -532,11 +584,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); } } @@ -575,14 +640,18 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ApplicationGatewayListResult>(); + var result = new AzureOperationResponse<Page<ApplicationGateway>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ApplicationGatewayListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ApplicationGateway>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -601,7 +670,7 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ApplicationGatewayListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ApplicationGateway>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -641,11 +710,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); } } @@ -684,14 +766,18 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ApplicationGatewayListResult>(); + var result = new AzureOperationResponse<Page<ApplicationGateway>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ApplicationGatewayListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ApplicationGateway>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -711,10 +797,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// The name of the application gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> StartWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -792,11 +878,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); } } @@ -831,6 +930,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -849,10 +952,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// The name of the application gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> StopWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -930,11 +1033,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); } } @@ -969,6 +1085,10 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -980,7 +1100,7 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// The List ApplicationGateway opertion retrieves all the applicationgateways /// in a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -989,11 +1109,11 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ApplicationGatewayListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ApplicationGateway>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1002,13 +1122,13 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1021,11 +1141,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); } } @@ -1064,14 +1197,18 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ApplicationGatewayListResult>(); + var result = new AzureOperationResponse<Page<ApplicationGateway>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ApplicationGatewayListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ApplicationGateway>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1084,7 +1221,7 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// The List applicationgateway opertion retrieves all the applicationgateways /// in a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1093,11 +1230,11 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ApplicationGatewayListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ApplicationGateway>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1106,13 +1243,13 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1125,11 +1262,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); } } @@ -1168,14 +1318,18 @@ internal ApplicationGatewaysOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ApplicationGatewayListResult>(); + var result = new AzureOperationResponse<Page<ApplicationGateway>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ApplicationGatewayListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ApplicationGateway>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperationsExtensions.cs index 3a8fd191f8bc2..2066bba803e52 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class ApplicationGatewaysOperationsExtensions /// applicationgateway. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -34,7 +34,7 @@ public static void Delete(this IApplicationGatewaysOperations operations, string /// applicationgateway. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -55,7 +55,7 @@ public static void Delete(this IApplicationGatewaysOperations operations, string /// applicationgateway. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -73,7 +73,7 @@ public static void BeginDelete(this IApplicationGatewaysOperations operations, s /// applicationgateway. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -94,7 +94,7 @@ public static void BeginDelete(this IApplicationGatewaysOperations operations, s /// specified applicationgateway. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -112,7 +112,7 @@ public static ApplicationGateway Get(this IApplicationGatewaysOperations operati /// specified applicationgateway. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -133,7 +133,7 @@ public static ApplicationGateway Get(this IApplicationGatewaysOperations operati /// The Put ApplicationGateway operation creates/updates a ApplicationGateway /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -153,7 +153,7 @@ public static ApplicationGateway CreateOrUpdate(this IApplicationGatewaysOperati /// The Put ApplicationGateway operation creates/updates a ApplicationGateway /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -177,7 +177,7 @@ public static ApplicationGateway CreateOrUpdate(this IApplicationGatewaysOperati /// The Put ApplicationGateway operation creates/updates a ApplicationGateway /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -197,7 +197,7 @@ public static ApplicationGateway BeginCreateOrUpdate(this IApplicationGatewaysOp /// The Put ApplicationGateway operation creates/updates a ApplicationGateway /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -222,12 +222,12 @@ public static ApplicationGateway BeginCreateOrUpdate(this IApplicationGatewaysOp /// in a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static ApplicationGatewayListResult List(this IApplicationGatewaysOperations operations, string resourceGroupName) + public static Page<ApplicationGateway> List(this IApplicationGatewaysOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((IApplicationGatewaysOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -237,7 +237,7 @@ public static ApplicationGatewayListResult List(this IApplicationGatewaysOperati /// in a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -245,9 +245,9 @@ public static ApplicationGatewayListResult List(this IApplicationGatewaysOperati /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ApplicationGatewayListResult> ListAsync( this IApplicationGatewaysOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ApplicationGateway>> ListAsync( this IApplicationGatewaysOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ApplicationGatewayListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ApplicationGateway>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -256,9 +256,9 @@ public static ApplicationGatewayListResult List(this IApplicationGatewaysOperati /// in a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static ApplicationGatewayListResult ListAll(this IApplicationGatewaysOperations operations) + public static Page<ApplicationGateway> ListAll(this IApplicationGatewaysOperations operations) { return Task.Factory.StartNew(s => ((IApplicationGatewaysOperations)s).ListAllAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -268,14 +268,14 @@ public static ApplicationGatewayListResult ListAll(this IApplicationGatewaysOper /// in a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ApplicationGatewayListResult> ListAllAsync( this IApplicationGatewaysOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ApplicationGateway>> ListAllAsync( this IApplicationGatewaysOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ApplicationGatewayListResult> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ApplicationGateway>> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -284,7 +284,7 @@ public static ApplicationGatewayListResult ListAll(this IApplicationGatewaysOper /// specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -302,7 +302,7 @@ public static void Start(this IApplicationGatewaysOperations operations, string /// specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -323,7 +323,7 @@ public static void Start(this IApplicationGatewaysOperations operations, string /// specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -341,7 +341,7 @@ public static void BeginStart(this IApplicationGatewaysOperations operations, st /// specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -362,7 +362,7 @@ public static void BeginStart(this IApplicationGatewaysOperations operations, st /// specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -380,7 +380,7 @@ public static void Stop(this IApplicationGatewaysOperations operations, string r /// specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -401,7 +401,7 @@ public static void Stop(this IApplicationGatewaysOperations operations, string r /// specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -419,7 +419,7 @@ public static void BeginStop(this IApplicationGatewaysOperations operations, str /// specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -440,14 +440,14 @@ public static void BeginStop(this IApplicationGatewaysOperations operations, str /// in a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ApplicationGatewayListResult ListNext(this IApplicationGatewaysOperations operations, string nextLink) + public static Page<ApplicationGateway> ListNext(this IApplicationGatewaysOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IApplicationGatewaysOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IApplicationGatewaysOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -455,17 +455,17 @@ public static ApplicationGatewayListResult ListNext(this IApplicationGatewaysOpe /// in a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ApplicationGatewayListResult> ListNextAsync( this IApplicationGatewaysOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ApplicationGateway>> ListNextAsync( this IApplicationGatewaysOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ApplicationGatewayListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ApplicationGateway>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -474,14 +474,14 @@ public static ApplicationGatewayListResult ListNext(this IApplicationGatewaysOpe /// in a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ApplicationGatewayListResult ListAllNext(this IApplicationGatewaysOperations operations, string nextLink) + public static Page<ApplicationGateway> ListAllNext(this IApplicationGatewaysOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IApplicationGatewaysOperations)s).ListAllNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IApplicationGatewaysOperations)s).ListAllNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -489,17 +489,17 @@ public static ApplicationGatewayListResult ListAllNext(this IApplicationGateways /// in a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ApplicationGatewayListResult> ListAllNextAsync( this IApplicationGatewaysOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ApplicationGateway>> ListAllNextAsync( this IApplicationGatewaysOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ApplicationGatewayListResult> result = await operations.ListAllNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ApplicationGateway>> result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IApplicationGatewaysOperations.cs index 34e271c758d75..8c873ae158c9f 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IApplicationGatewaysOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -24,10 +25,10 @@ public partial interface IApplicationGatewaysOperations /// The name of the applicationgateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,10 +42,10 @@ public partial interface IApplicationGatewaysOperations /// The name of the applicationgateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -58,10 +59,10 @@ public partial interface IApplicationGatewaysOperations /// The name of the applicationgateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ApplicationGateway>> GetWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -79,10 +80,10 @@ public partial interface IApplicationGatewaysOperations /// operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ApplicationGateway>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, ApplicationGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -100,10 +101,10 @@ public partial interface IApplicationGatewaysOperations /// operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ApplicationGateway>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, ApplicationGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -114,23 +115,23 @@ public partial interface IApplicationGatewaysOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ApplicationGatewayListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ApplicationGateway>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List applicationgateway opertion retrieves all the /// applicationgateways in a subscription. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ApplicationGatewayListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ApplicationGateway>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The Start ApplicationGateway operation starts application /// gatewayin the specified resource group through Network resource @@ -143,10 +144,10 @@ public partial interface IApplicationGatewaysOperations /// The name of the application gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> StartWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -161,10 +162,10 @@ public partial interface IApplicationGatewaysOperations /// The name of the application gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginStartWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -178,10 +179,10 @@ public partial interface IApplicationGatewaysOperations /// The name of the application gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> StopWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -195,39 +196,39 @@ public partial interface IApplicationGatewaysOperations /// The name of the application gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginStopWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List ApplicationGateway opertion retrieves all the /// applicationgateways in a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ApplicationGatewayListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ApplicationGateway>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List applicationgateway opertion retrieves all the /// applicationgateways in a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ApplicationGatewayListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ApplicationGateway>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ILoadBalancersOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ILoadBalancersOperations.cs index 7dcdc51750158..5e5e0a08cb5d1 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ILoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ILoadBalancersOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -24,10 +25,10 @@ public partial interface ILoadBalancersOperations /// The name of the loadBalancer. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,10 +42,10 @@ public partial interface ILoadBalancersOperations /// The name of the loadBalancer. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -58,10 +59,10 @@ public partial interface ILoadBalancersOperations /// The name of the loadBalancer. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<LoadBalancer>> GetWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -77,10 +78,10 @@ public partial interface ILoadBalancersOperations /// Parameters supplied to the create/delete LoadBalancer operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<LoadBalancer>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, LoadBalancer parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -96,10 +97,10 @@ public partial interface ILoadBalancersOperations /// Parameters supplied to the create/delete LoadBalancer operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<LoadBalancer>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, LoadBalancer parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -107,12 +108,12 @@ public partial interface ILoadBalancersOperations /// a subscription. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<LoadBalancerListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<LoadBalancer>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List loadBalancer opertion retrieves all the loadbalancers in /// a resource group. @@ -121,39 +122,39 @@ public partial interface ILoadBalancersOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<LoadBalancerListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<LoadBalancer>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List loadBalancer opertion retrieves all the loadbalancers in /// a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<LoadBalancerListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<LoadBalancer>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List loadBalancer opertion retrieves all the loadbalancers in /// a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<LoadBalancerListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<LoadBalancer>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ILocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ILocalNetworkGatewaysOperations.cs index 7f7f8cbe18d3a..a192998a85687 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ILocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ILocalNetworkGatewaysOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -29,10 +30,10 @@ public partial interface ILocalNetworkGatewaysOperations /// Gateway operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<LocalNetworkGateway>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string localNetworkGatewayName, LocalNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -51,10 +52,10 @@ public partial interface ILocalNetworkGatewaysOperations /// Gateway operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<LocalNetworkGateway>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string localNetworkGatewayName, LocalNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -69,10 +70,10 @@ public partial interface ILocalNetworkGatewaysOperations /// The name of the local network gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<LocalNetworkGateway>> GetWithHttpMessagesAsync(string resourceGroupName, string localNetworkGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -86,10 +87,10 @@ public partial interface ILocalNetworkGatewaysOperations /// The name of the local network gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string localNetworkGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -103,10 +104,10 @@ public partial interface ILocalNetworkGatewaysOperations /// The name of the local network gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string localNetworkGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -117,25 +118,25 @@ public partial interface ILocalNetworkGatewaysOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<LocalNetworkGatewayListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<LocalNetworkGateway>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List LocalNetworkGateways opertion retrieves all the local /// network gateways stored. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<LocalNetworkGatewayListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<LocalNetworkGateway>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkInterfacesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkInterfacesOperations.cs index 7a8608c82a0e5..4236074dbeab4 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkInterfacesOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -24,10 +25,10 @@ public partial interface INetworkInterfacesOperations /// The name of the network interface. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,10 +42,10 @@ public partial interface INetworkInterfacesOperations /// The name of the network interface. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -58,10 +59,10 @@ public partial interface INetworkInterfacesOperations /// The name of the network interface. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<NetworkInterface>> GetWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -78,10 +79,10 @@ public partial interface INetworkInterfacesOperations /// Parameters supplied to the create/update NetworkInterface operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<NetworkInterface>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, NetworkInterface parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -98,10 +99,10 @@ public partial interface INetworkInterfacesOperations /// Parameters supplied to the create/update NetworkInterface operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<NetworkInterface>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, NetworkInterface parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -109,12 +110,12 @@ public partial interface INetworkInterfacesOperations /// networkInterfaces in a subscription. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<NetworkInterfaceListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<NetworkInterface>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List networkInterfaces opertion retrieves all the /// networkInterfaces in a resource group. @@ -123,39 +124,39 @@ public partial interface INetworkInterfacesOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<NetworkInterfaceListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<NetworkInterface>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List networkInterfaces opertion retrieves all the /// networkInterfaces in a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<NetworkInterfaceListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<NetworkInterface>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List networkInterfaces opertion retrieves all the /// networkInterfaces in a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<NetworkInterfaceListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<NetworkInterface>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs index d5a784eb47dbf..b85015d1051a1 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs @@ -5,7 +5,9 @@ namespace Microsoft.Azure.Management.Network using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -18,6 +20,44 @@ 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> + /// Management credentials for Azure. + /// </summary> + ServiceClientCredentials 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; } @@ -54,10 +94,10 @@ public partial interface INetworkResourceProviderClient /// regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<DnsNameAvailabilityResult>> CheckDnsNameAvailabilityWithHttpMessagesAsync(string location, string domainNameLabel = default(string), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkSecurityGroupsOperations.cs index 481db3b74c963..8a141a15a79ae 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkSecurityGroupsOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -24,10 +25,10 @@ public partial interface INetworkSecurityGroupsOperations /// The name of the network security group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,10 +42,10 @@ public partial interface INetworkSecurityGroupsOperations /// The name of the network security group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -58,10 +59,10 @@ public partial interface INetworkSecurityGroupsOperations /// The name of the network security group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<NetworkSecurityGroup>> GetWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -79,10 +80,10 @@ public partial interface INetworkSecurityGroupsOperations /// operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<NetworkSecurityGroup>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, NetworkSecurityGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -100,10 +101,10 @@ public partial interface INetworkSecurityGroupsOperations /// operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<NetworkSecurityGroup>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, NetworkSecurityGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -111,12 +112,12 @@ public partial interface INetworkSecurityGroupsOperations /// in a subscription /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<NetworkSecurityGroupListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<NetworkSecurityGroup>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The list NetworkSecurityGroups returns all network security groups /// in a resource group @@ -125,39 +126,39 @@ public partial interface INetworkSecurityGroupsOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<NetworkSecurityGroupListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<NetworkSecurityGroup>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The list NetworkSecurityGroups returns all network security groups /// in a subscription /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<NetworkSecurityGroupListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<NetworkSecurityGroup>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The list NetworkSecurityGroups returns all network security groups /// in a resource group /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<NetworkSecurityGroupListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<NetworkSecurityGroup>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IPublicIpAddressesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IPublicIpAddressesOperations.cs index e1a4c96d401d6..bd73fb1434fe2 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IPublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IPublicIpAddressesOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -24,10 +25,10 @@ public partial interface IPublicIpAddressesOperations /// The name of the subnet. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string publicIpAddressName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,10 +42,10 @@ public partial interface IPublicIpAddressesOperations /// The name of the subnet. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string publicIpAddressName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -58,10 +59,10 @@ public partial interface IPublicIpAddressesOperations /// The name of the subnet. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<PublicIpAddress>> GetWithHttpMessagesAsync(string resourceGroupName, string publicIpAddressName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -78,10 +79,10 @@ public partial interface IPublicIpAddressesOperations /// Parameters supplied to the create/update PublicIPAddress operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<PublicIpAddress>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string publicIpAddressName, PublicIpAddress parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -98,10 +99,10 @@ public partial interface IPublicIpAddressesOperations /// Parameters supplied to the create/update PublicIPAddress operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<PublicIpAddress>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string publicIpAddressName, PublicIpAddress parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -109,12 +110,12 @@ public partial interface IPublicIpAddressesOperations /// publicIpAddresses in a subscription. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<PublicIpAddressListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<PublicIpAddress>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List publicIpAddress opertion retrieves all the /// publicIpAddresses in a resource group. @@ -123,39 +124,39 @@ public partial interface IPublicIpAddressesOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<PublicIpAddressListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<PublicIpAddress>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List publicIpAddress opertion retrieves all the /// publicIpAddresses in a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<PublicIpAddressListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<PublicIpAddress>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List publicIpAddress opertion retrieves all the /// publicIpAddresses in a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<PublicIpAddressListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<PublicIpAddress>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ISecurityRulesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ISecurityRulesOperations.cs index f8baba76a03bb..3362d775970a5 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ISecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ISecurityRulesOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -27,10 +28,10 @@ public partial interface ISecurityRulesOperations /// The name of the security rule. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string securityRuleName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -47,10 +48,10 @@ public partial interface ISecurityRulesOperations /// The name of the security rule. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string securityRuleName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -67,10 +68,10 @@ public partial interface ISecurityRulesOperations /// The name of the security rule. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<SecurityRule>> GetWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string securityRuleName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -91,10 +92,10 @@ public partial interface ISecurityRulesOperations /// operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<SecurityRule>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string securityRuleName, SecurityRule securityRuleParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -115,10 +116,10 @@ public partial interface ISecurityRulesOperations /// operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<SecurityRule>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string securityRuleName, SecurityRule securityRuleParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -132,25 +133,25 @@ public partial interface ISecurityRulesOperations /// The name of the network security group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<SecurityRuleListResult>> ListWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<SecurityRule>>> ListWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List network security rule opertion retrieves all the security /// rules in a network security group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<SecurityRuleListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<SecurityRule>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ISubnetsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ISubnetsOperations.cs index ab39c76c26b2e..a65c02dbcb1b6 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ISubnetsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ISubnetsOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -26,10 +27,10 @@ public partial interface ISubnetsOperations /// The name of the subnet. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, string subnetName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -45,10 +46,10 @@ public partial interface ISubnetsOperations /// The name of the subnet. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, string subnetName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -65,10 +66,10 @@ public partial interface ISubnetsOperations /// The name of the subnet. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<Subnet>> GetWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, string subnetName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -88,10 +89,10 @@ public partial interface ISubnetsOperations /// Parameters supplied to the create/update Subnet operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<Subnet>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, string subnetName, Subnet subnetParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -111,10 +112,10 @@ public partial interface ISubnetsOperations /// Parameters supplied to the create/update Subnet operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<Subnet>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, string subnetName, Subnet subnetParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -128,25 +129,25 @@ public partial interface ISubnetsOperations /// The name of the virtual network. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<SubnetListResult>> ListWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<Subnet>>> ListWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List subnets opertion retrieves all the subnets in a virtual /// network. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<SubnetListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<Subnet>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IUsagesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IUsagesOperations.cs index 1df4fe53d2610..24876d7aff51b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IUsagesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IUsagesOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -20,10 +21,10 @@ public partial interface IUsagesOperations /// The location upon which resource usage is queried. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<UsagesListResult>> ListWithHttpMessagesAsync(string location, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewayConnectionsOperations.cs index 35c356679c418..ad67acd8f8a59 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewayConnectionsOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -29,10 +30,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// Gateway connection operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetworkGatewayConnection>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, VirtualNetworkGatewayConnection parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -51,10 +52,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// Gateway connection operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetworkGatewayConnection>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, VirtualNetworkGatewayConnection parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -69,10 +70,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// The name of the virtual network gateway connection. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetworkGatewayConnection>> GetWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -87,10 +88,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// The name of the virtual network gateway connection. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -105,10 +106,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// The name of the virtual network gateway connection. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -123,10 +124,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// The virtual network gateway connection shared key name. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ConnectionSharedKey>> GetSharedKeyWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -146,10 +147,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// conection Shared key operation throughNetwork resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ConnectionSharedKey>> SetSharedKeyWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, ConnectionSharedKey parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -169,10 +170,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// conection Shared key operation throughNetwork resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ConnectionSharedKey>> BeginSetSharedKeyWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, ConnectionSharedKey parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -183,12 +184,12 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualNetworkGatewayConnectionListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualNetworkGatewayConnection>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The VirtualNetworkGatewayConnectionResetSharedKey operation resets /// the virtual network gateway connection shared key for passed @@ -206,10 +207,10 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// connection shared key operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ConnectionResetSharedKey>> ResetSharedKeyWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, ConnectionResetSharedKey parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -229,25 +230,25 @@ public partial interface IVirtualNetworkGatewayConnectionsOperations /// connection shared key operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ConnectionResetSharedKey>> BeginResetSharedKeyWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, ConnectionResetSharedKey parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List VirtualNetworkGatewayConnections operation retrieves all /// the virtual network gateways connections created. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualNetworkGatewayConnectionListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualNetworkGatewayConnection>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewaysOperations.cs index 05c5dc6a36c12..f80375018425c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewaysOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -29,10 +30,10 @@ public partial interface IVirtualNetworkGatewaysOperations /// Gateway operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetworkGateway>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, VirtualNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -51,10 +52,10 @@ public partial interface IVirtualNetworkGatewaysOperations /// Gateway operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetworkGateway>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, VirtualNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -69,10 +70,10 @@ public partial interface IVirtualNetworkGatewaysOperations /// The name of the virtual network gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetworkGateway>> GetWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -86,10 +87,10 @@ public partial interface IVirtualNetworkGatewaysOperations /// The name of the virtual network gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -103,10 +104,10 @@ public partial interface IVirtualNetworkGatewaysOperations /// The name of the virtual network gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -117,12 +118,12 @@ public partial interface IVirtualNetworkGatewaysOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualNetworkGatewayListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualNetworkGateway>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The Reset VirtualNetworkGateway operation resets the primary of /// the virtual network gatewayin the specified resource group @@ -139,10 +140,10 @@ public partial interface IVirtualNetworkGatewaysOperations /// operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetworkGateway>> ResetWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, VirtualNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -161,25 +162,25 @@ public partial interface IVirtualNetworkGatewaysOperations /// operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetworkGateway>> BeginResetWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, VirtualNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The List VirtualNetworkGateways opertion retrieves all the virtual /// network gateways stored. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualNetworkGatewayListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualNetworkGateway>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworksOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworksOperations.cs index 3197a759a0c8f..7d8903165f20f 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworksOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -24,10 +25,10 @@ public partial interface IVirtualNetworksOperations /// The name of the virtual network. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,10 +42,10 @@ public partial interface IVirtualNetworksOperations /// The name of the virtual network. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -58,10 +59,10 @@ public partial interface IVirtualNetworksOperations /// The name of the virtual network. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetwork>> GetWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -78,10 +79,10 @@ public partial interface IVirtualNetworksOperations /// Parameters supplied to the create/update Virtual Network operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetwork>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, VirtualNetwork parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -98,10 +99,10 @@ public partial interface IVirtualNetworksOperations /// Parameters supplied to the create/update Virtual Network operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<VirtualNetwork>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, VirtualNetwork parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -109,12 +110,12 @@ public partial interface IVirtualNetworksOperations /// subscription /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualNetworkListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualNetwork>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The list VirtualNetwork returns all Virtual Networks in a resource /// group @@ -123,39 +124,39 @@ public partial interface IVirtualNetworksOperations /// The name of the resource group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualNetworkListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualNetwork>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The list VirtualNetwork returns all Virtual Networks in a /// subscription /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualNetworkListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualNetwork>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// The list VirtualNetwork returns all Virtual Networks in a resource /// group /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<VirtualNetworkListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<VirtualNetwork>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs index 78d39ee752d76..8d0b110d4da32 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -42,10 +43,10 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) /// The name of the loadBalancer. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -122,11 +123,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); } } @@ -161,6 +175,10 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -236,11 +254,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); } } @@ -282,6 +313,10 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<LoadBalancer>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -308,10 +343,10 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) /// Parameters supplied to the create/delete LoadBalancer operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<LoadBalancer>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string loadBalancerName, LoadBalancer parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -402,11 +437,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); } } @@ -452,6 +500,10 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<LoadBalancer>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -481,7 +533,7 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<LoadBalancerListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<LoadBalancer>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -521,11 +573,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); } } @@ -564,14 +629,18 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<LoadBalancerListResult>(); + var result = new AzureOperationResponse<Page<LoadBalancer>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<LoadBalancerListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<LoadBalancer>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -593,7 +662,7 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<LoadBalancerListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<LoadBalancer>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -639,11 +708,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); } } @@ -682,14 +764,18 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<LoadBalancerListResult>(); + var result = new AzureOperationResponse<Page<LoadBalancer>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<LoadBalancerListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<LoadBalancer>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -702,7 +788,7 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) /// The List loadBalancer opertion retrieves all the loadbalancers in a /// subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -711,11 +797,11 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<LoadBalancerListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<LoadBalancer>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -724,13 +810,13 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -743,11 +829,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); } } @@ -786,14 +885,18 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<LoadBalancerListResult>(); + var result = new AzureOperationResponse<Page<LoadBalancer>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<LoadBalancerListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<LoadBalancer>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -806,7 +909,7 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) /// The List loadBalancer opertion retrieves all the loadbalancers in a /// resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -815,11 +918,11 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<LoadBalancerListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<LoadBalancer>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -828,13 +931,13 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -847,11 +950,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); } } @@ -890,14 +1006,18 @@ internal LoadBalancersOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<LoadBalancerListResult>(); + var result = new AzureOperationResponse<Page<LoadBalancer>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<LoadBalancerListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<LoadBalancer>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperationsExtensions.cs index 3ac87b98cf28b..1150d324519f5 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperationsExtensions.cs @@ -15,7 +15,7 @@ public static partial class LoadBalancersOperationsExtensions /// The delete loadbalancer operation deletes the specified loadbalancer. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -32,7 +32,7 @@ public static void Delete(this ILoadBalancersOperations operations, string resou /// The delete loadbalancer operation deletes the specified loadbalancer. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -52,7 +52,7 @@ public static void Delete(this ILoadBalancersOperations operations, string resou /// The delete loadbalancer operation deletes the specified loadbalancer. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -69,7 +69,7 @@ public static void BeginDelete(this ILoadBalancersOperations operations, string /// The delete loadbalancer operation deletes the specified loadbalancer. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -90,7 +90,7 @@ public static void BeginDelete(this ILoadBalancersOperations operations, string /// specified network interface. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -108,7 +108,7 @@ public static LoadBalancer Get(this ILoadBalancersOperations operations, string /// specified network interface. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -129,7 +129,7 @@ public static LoadBalancer Get(this ILoadBalancersOperations operations, string /// The Put LoadBalancer operation creates/updates a LoadBalancer /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -149,7 +149,7 @@ public static LoadBalancer CreateOrUpdate(this ILoadBalancersOperations operatio /// The Put LoadBalancer operation creates/updates a LoadBalancer /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -173,7 +173,7 @@ public static LoadBalancer CreateOrUpdate(this ILoadBalancersOperations operatio /// The Put LoadBalancer operation creates/updates a LoadBalancer /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -193,7 +193,7 @@ public static LoadBalancer BeginCreateOrUpdate(this ILoadBalancersOperations ope /// The Put LoadBalancer operation creates/updates a LoadBalancer /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -218,9 +218,9 @@ public static LoadBalancer BeginCreateOrUpdate(this ILoadBalancersOperations ope /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static LoadBalancerListResult ListAll(this ILoadBalancersOperations operations) + public static Page<LoadBalancer> ListAll(this ILoadBalancersOperations operations) { return Task.Factory.StartNew(s => ((ILoadBalancersOperations)s).ListAllAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -230,14 +230,14 @@ public static LoadBalancerListResult ListAll(this ILoadBalancersOperations opera /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<LoadBalancerListResult> ListAllAsync( this ILoadBalancersOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<LoadBalancer>> ListAllAsync( this ILoadBalancersOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<LoadBalancerListResult> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<LoadBalancer>> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -246,12 +246,12 @@ public static LoadBalancerListResult ListAll(this ILoadBalancersOperations opera /// resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static LoadBalancerListResult List(this ILoadBalancersOperations operations, string resourceGroupName) + public static Page<LoadBalancer> List(this ILoadBalancersOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((ILoadBalancersOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -261,7 +261,7 @@ public static LoadBalancerListResult List(this ILoadBalancersOperations operatio /// resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -269,9 +269,9 @@ public static LoadBalancerListResult List(this ILoadBalancersOperations operatio /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<LoadBalancerListResult> ListAsync( this ILoadBalancersOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<LoadBalancer>> ListAsync( this ILoadBalancersOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<LoadBalancerListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<LoadBalancer>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -280,14 +280,14 @@ public static LoadBalancerListResult List(this ILoadBalancersOperations operatio /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static LoadBalancerListResult ListAllNext(this ILoadBalancersOperations operations, string nextLink) + public static Page<LoadBalancer> ListAllNext(this ILoadBalancersOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ILoadBalancersOperations)s).ListAllNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ILoadBalancersOperations)s).ListAllNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -295,17 +295,17 @@ public static LoadBalancerListResult ListAllNext(this ILoadBalancersOperations o /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<LoadBalancerListResult> ListAllNextAsync( this ILoadBalancersOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<LoadBalancer>> ListAllNextAsync( this ILoadBalancersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<LoadBalancerListResult> result = await operations.ListAllNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<LoadBalancer>> result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -314,14 +314,14 @@ public static LoadBalancerListResult ListAllNext(this ILoadBalancersOperations o /// resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static LoadBalancerListResult ListNext(this ILoadBalancersOperations operations, string nextLink) + public static Page<LoadBalancer> ListNext(this ILoadBalancersOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ILoadBalancersOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ILoadBalancersOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -329,17 +329,17 @@ public static LoadBalancerListResult ListNext(this ILoadBalancersOperations oper /// resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<LoadBalancerListResult> ListNextAsync( this ILoadBalancersOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<LoadBalancer>> ListNextAsync( this ILoadBalancersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<LoadBalancerListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<LoadBalancer>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs index a30db96e89f92..01b17b7e1adf7 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -47,10 +48,10 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) /// operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<LocalNetworkGateway>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string localNetworkGatewayName, LocalNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -143,11 +144,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); } } @@ -193,6 +207,10 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<LocalNetworkGateway>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -280,11 +298,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); } } @@ -326,6 +357,10 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<LocalNetworkGateway>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -350,10 +385,10 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) /// The name of the local network gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string localNetworkGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -431,11 +466,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); } } @@ -470,6 +518,10 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -490,7 +542,7 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<LocalNetworkGatewayListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<LocalNetworkGateway>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -536,11 +588,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); } } @@ -579,14 +644,18 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<LocalNetworkGatewayListResult>(); + var result = new AzureOperationResponse<Page<LocalNetworkGateway>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<LocalNetworkGatewayListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<LocalNetworkGateway>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -599,7 +668,7 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) /// The List LocalNetworkGateways opertion retrieves all the local network /// gateways stored. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -608,11 +677,11 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<LocalNetworkGatewayListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<LocalNetworkGateway>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -621,13 +690,13 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -640,11 +709,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); } } @@ -683,14 +765,18 @@ internal LocalNetworkGatewaysOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<LocalNetworkGatewayListResult>(); + var result = new AzureOperationResponse<Page<LocalNetworkGateway>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<LocalNetworkGatewayListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<LocalNetworkGateway>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperationsExtensions.cs index 26e9631ea3f91..d698a0acd2ec2 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class LocalNetworkGatewaysOperationsExtensions /// gateway in the specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -38,7 +38,7 @@ public static LocalNetworkGateway CreateOrUpdate(this ILocalNetworkGatewaysOpera /// gateway in the specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -64,7 +64,7 @@ public static LocalNetworkGateway CreateOrUpdate(this ILocalNetworkGatewaysOpera /// gateway in the specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -86,7 +86,7 @@ public static LocalNetworkGateway BeginCreateOrUpdate(this ILocalNetworkGateways /// gateway in the specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -112,7 +112,7 @@ public static LocalNetworkGateway BeginCreateOrUpdate(this ILocalNetworkGateways /// specified local network gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -130,7 +130,7 @@ public static LocalNetworkGateway Get(this ILocalNetworkGatewaysOperations opera /// specified local network gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -152,7 +152,7 @@ public static LocalNetworkGateway Get(this ILocalNetworkGatewaysOperations opera /// network Gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -170,7 +170,7 @@ public static void Delete(this ILocalNetworkGatewaysOperations operations, strin /// network Gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -191,7 +191,7 @@ public static void Delete(this ILocalNetworkGatewaysOperations operations, strin /// network Gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -209,7 +209,7 @@ public static void BeginDelete(this ILocalNetworkGatewaysOperations operations, /// network Gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -230,12 +230,12 @@ public static void BeginDelete(this ILocalNetworkGatewaysOperations operations, /// gateways stored. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static LocalNetworkGatewayListResult List(this ILocalNetworkGatewaysOperations operations, string resourceGroupName) + public static Page<LocalNetworkGateway> List(this ILocalNetworkGatewaysOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((ILocalNetworkGatewaysOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -245,7 +245,7 @@ public static LocalNetworkGatewayListResult List(this ILocalNetworkGatewaysOpera /// gateways stored. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -253,9 +253,9 @@ public static LocalNetworkGatewayListResult List(this ILocalNetworkGatewaysOpera /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<LocalNetworkGatewayListResult> ListAsync( this ILocalNetworkGatewaysOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<LocalNetworkGateway>> ListAsync( this ILocalNetworkGatewaysOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<LocalNetworkGatewayListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<LocalNetworkGateway>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -264,14 +264,14 @@ public static LocalNetworkGatewayListResult List(this ILocalNetworkGatewaysOpera /// gateways stored. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static LocalNetworkGatewayListResult ListNext(this ILocalNetworkGatewaysOperations operations, string nextLink) + public static Page<LocalNetworkGateway> ListNext(this ILocalNetworkGatewaysOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ILocalNetworkGatewaysOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ILocalNetworkGatewaysOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -279,17 +279,17 @@ public static LocalNetworkGatewayListResult ListNext(this ILocalNetworkGatewaysO /// gateways stored. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<LocalNetworkGatewayListResult> ListNextAsync( this ILocalNetworkGatewaysOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<LocalNetworkGateway>> ListNextAsync( this ILocalNetworkGatewaysOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<LocalNetworkGatewayListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<LocalNetworkGateway>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayCookieBasedAffinity.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayCookieBasedAffinity.cs index a0114db32adde..40caf491fc35c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayCookieBasedAffinity.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayCookieBasedAffinity.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ApplicationGatewayCookieBasedAffinity + /// Defines values for ApplicationGatewayCookieBasedAffinity. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ApplicationGatewayCookieBasedAffinity diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayOperationalState.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayOperationalState.cs index b94a659269e63..7d8d059da7513 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayOperationalState.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayOperationalState.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ApplicationGatewayOperationalState + /// Defines values for ApplicationGatewayOperationalState. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ApplicationGatewayOperationalState diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayProtocol.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayProtocol.cs index 808fa91064aa9..4ac0b3cbe2e84 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayProtocol.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayProtocol.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ApplicationGatewayProtocol + /// Defines values for ApplicationGatewayProtocol. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ApplicationGatewayProtocol diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayRequestRoutingRuleType.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayRequestRoutingRuleType.cs index d9b2846479143..ab4ebae49f319 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayRequestRoutingRuleType.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayRequestRoutingRuleType.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ApplicationGatewayRequestRoutingRuleType + /// Defines values for ApplicationGatewayRequestRoutingRuleType. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ApplicationGatewayRequestRoutingRuleType diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySkuName.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySkuName.cs index f15b51a1aff83..4d81cb4b2c64b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySkuName.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySkuName.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ApplicationGatewaySkuName + /// Defines values for ApplicationGatewaySkuName. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ApplicationGatewaySkuName diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayTier.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayTier.cs index 65ae1ce2f6642..e9b1e6a0631f1 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayTier.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayTier.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ApplicationGatewayTier + /// Defines values for ApplicationGatewayTier. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ApplicationGatewayTier diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/IpAllocationMethod.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/IpAllocationMethod.cs index 73d7ad08e2849..d345d39470d24 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/IpAllocationMethod.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/IpAllocationMethod.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for IpAllocationMethod + /// Defines values for IpAllocationMethod. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum IpAllocationMethod diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadDistribution.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadDistribution.cs index 489b700fe4095..597b883dc88ac 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadDistribution.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadDistribution.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for LoadDistribution + /// Defines values for LoadDistribution. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum LoadDistribution diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/OperationStatus.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/OperationStatus.cs index ecc47fa8197a4..94ec03fd956ef 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/OperationStatus.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/OperationStatus.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for OperationStatus + /// Defines values for OperationStatus. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum OperationStatus diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ProbeProtocol.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ProbeProtocol.cs index e1adff3cee771..43cbeb706f032 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ProbeProtocol.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ProbeProtocol.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ProbeProtocol + /// Defines values for ProbeProtocol. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ProbeProtocol diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleAccess.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleAccess.cs index fc3bcbed6fe00..d0a0b23cc8213 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleAccess.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleAccess.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for SecurityRuleAccess + /// Defines values for SecurityRuleAccess. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum SecurityRuleAccess diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleDirection.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleDirection.cs index 46eac9c1127d9..1eb733f36e6a3 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleDirection.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleDirection.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for SecurityRuleDirection + /// Defines values for SecurityRuleDirection. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum SecurityRuleDirection diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleProtocol.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleProtocol.cs index d0d51988ab78b..81b260d17db39 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleProtocol.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleProtocol.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for SecurityRuleProtocol + /// Defines values for SecurityRuleProtocol. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum SecurityRuleProtocol diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/TransportProtocol.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/TransportProtocol.cs index b4ad862c7694c..20d0bbc03b391 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/TransportProtocol.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/TransportProtocol.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for TransportProtocol + /// Defines values for TransportProtocol. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum TransportProtocol diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsageUnit.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsageUnit.cs index 030485314a0df..e7181960f17bd 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsageUnit.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsageUnit.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for UsageUnit + /// Defines values for UsageUnit. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum UsageUnit diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnectionType.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnectionType.cs index 0a3e471a0486b..c276d4e2c10d7 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnectionType.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnectionType.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for VirtualNetworkGatewayConnectionType + /// Defines values for VirtualNetworkGatewayConnectionType. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum VirtualNetworkGatewayConnectionType diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayType.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayType.cs index 0ad73889cc9b4..8e07f0a45ddbf 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayType.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayType.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for VirtualNetworkGatewayType + /// Defines values for VirtualNetworkGatewayType. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum VirtualNetworkGatewayType diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VpnType.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VpnType.cs index 011a81c13ce37..268bc3f3e7584 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VpnType.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VpnType.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for VpnType + /// Defines values for VpnType. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum VpnType diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs index b118bed50fac1..372bf90930c19 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -42,10 +43,10 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) /// The name of the network interface. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -122,11 +123,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); } } @@ -161,6 +175,10 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -236,11 +254,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); } } @@ -282,6 +313,10 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<NetworkInterface>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -308,10 +343,10 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) /// Parameters supplied to the create/update NetworkInterface operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<NetworkInterface>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkInterfaceName, NetworkInterface parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -402,11 +437,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); } } @@ -452,6 +500,10 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<NetworkInterface>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -481,7 +533,7 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<NetworkInterfaceListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<NetworkInterface>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -521,11 +573,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); } } @@ -564,14 +629,18 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<NetworkInterfaceListResult>(); + var result = new AzureOperationResponse<Page<NetworkInterface>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<NetworkInterfaceListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<NetworkInterface>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -593,7 +662,7 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<NetworkInterfaceListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<NetworkInterface>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -639,11 +708,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); } } @@ -682,14 +764,18 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<NetworkInterfaceListResult>(); + var result = new AzureOperationResponse<Page<NetworkInterface>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<NetworkInterfaceListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<NetworkInterface>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -702,7 +788,7 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) /// The List networkInterfaces opertion retrieves all the networkInterfaces in /// a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -711,11 +797,11 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<NetworkInterfaceListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<NetworkInterface>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -724,13 +810,13 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -743,11 +829,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); } } @@ -786,14 +885,18 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<NetworkInterfaceListResult>(); + var result = new AzureOperationResponse<Page<NetworkInterface>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<NetworkInterfaceListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<NetworkInterface>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -806,7 +909,7 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) /// The List networkInterfaces opertion retrieves all the networkInterfaces in /// a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -815,11 +918,11 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<NetworkInterfaceListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<NetworkInterface>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -828,13 +931,13 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -847,11 +950,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); } } @@ -890,14 +1006,18 @@ internal NetworkInterfacesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<NetworkInterfaceListResult>(); + var result = new AzureOperationResponse<Page<NetworkInterface>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<NetworkInterfaceListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<NetworkInterface>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperationsExtensions.cs index 91765b59ed06b..a105ea030423b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperationsExtensions.cs @@ -15,7 +15,7 @@ public static partial class NetworkInterfacesOperationsExtensions /// The delete netwokInterface operation deletes the specified netwokInterface. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -32,7 +32,7 @@ public static void Delete(this INetworkInterfacesOperations operations, string r /// The delete netwokInterface operation deletes the specified netwokInterface. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -52,7 +52,7 @@ public static void Delete(this INetworkInterfacesOperations operations, string r /// The delete netwokInterface operation deletes the specified netwokInterface. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -69,7 +69,7 @@ public static void BeginDelete(this INetworkInterfacesOperations operations, str /// The delete netwokInterface operation deletes the specified netwokInterface. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -90,7 +90,7 @@ public static void BeginDelete(this INetworkInterfacesOperations operations, str /// specified network interface. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -108,7 +108,7 @@ public static NetworkInterface Get(this INetworkInterfacesOperations operations, /// specified network interface. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -129,7 +129,7 @@ public static NetworkInterface Get(this INetworkInterfacesOperations operations, /// The Put NetworkInterface operation creates/updates a networkInterface /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -149,7 +149,7 @@ public static NetworkInterface CreateOrUpdate(this INetworkInterfacesOperations /// The Put NetworkInterface operation creates/updates a networkInterface /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -173,7 +173,7 @@ public static NetworkInterface CreateOrUpdate(this INetworkInterfacesOperations /// The Put NetworkInterface operation creates/updates a networkInterface /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -193,7 +193,7 @@ public static NetworkInterface BeginCreateOrUpdate(this INetworkInterfacesOperat /// The Put NetworkInterface operation creates/updates a networkInterface /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -218,9 +218,9 @@ public static NetworkInterface BeginCreateOrUpdate(this INetworkInterfacesOperat /// a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static NetworkInterfaceListResult ListAll(this INetworkInterfacesOperations operations) + public static Page<NetworkInterface> ListAll(this INetworkInterfacesOperations operations) { return Task.Factory.StartNew(s => ((INetworkInterfacesOperations)s).ListAllAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -230,14 +230,14 @@ public static NetworkInterfaceListResult ListAll(this INetworkInterfacesOperatio /// a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<NetworkInterfaceListResult> ListAllAsync( this INetworkInterfacesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<NetworkInterface>> ListAllAsync( this INetworkInterfacesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<NetworkInterfaceListResult> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<NetworkInterface>> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -246,12 +246,12 @@ public static NetworkInterfaceListResult ListAll(this INetworkInterfacesOperatio /// a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static NetworkInterfaceListResult List(this INetworkInterfacesOperations operations, string resourceGroupName) + public static Page<NetworkInterface> List(this INetworkInterfacesOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((INetworkInterfacesOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -261,7 +261,7 @@ public static NetworkInterfaceListResult List(this INetworkInterfacesOperations /// a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -269,9 +269,9 @@ public static NetworkInterfaceListResult List(this INetworkInterfacesOperations /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<NetworkInterfaceListResult> ListAsync( this INetworkInterfacesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<NetworkInterface>> ListAsync( this INetworkInterfacesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<NetworkInterfaceListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<NetworkInterface>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -280,14 +280,14 @@ public static NetworkInterfaceListResult List(this INetworkInterfacesOperations /// a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static NetworkInterfaceListResult ListAllNext(this INetworkInterfacesOperations operations, string nextLink) + public static Page<NetworkInterface> ListAllNext(this INetworkInterfacesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((INetworkInterfacesOperations)s).ListAllNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((INetworkInterfacesOperations)s).ListAllNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -295,17 +295,17 @@ public static NetworkInterfaceListResult ListAllNext(this INetworkInterfacesOper /// a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<NetworkInterfaceListResult> ListAllNextAsync( this INetworkInterfacesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<NetworkInterface>> ListAllNextAsync( this INetworkInterfacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<NetworkInterfaceListResult> result = await operations.ListAllNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<NetworkInterface>> result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -314,14 +314,14 @@ public static NetworkInterfaceListResult ListAllNext(this INetworkInterfacesOper /// a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static NetworkInterfaceListResult ListNext(this INetworkInterfacesOperations operations, string nextLink) + public static Page<NetworkInterface> ListNext(this INetworkInterfacesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((INetworkInterfacesOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((INetworkInterfacesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -329,17 +329,17 @@ public static NetworkInterfaceListResult ListNext(this INetworkInterfacesOperati /// a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<NetworkInterfaceListResult> ListNextAsync( this INetworkInterfacesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<NetworkInterface>> ListNextAsync( this INetworkInterfacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<NetworkInterfaceListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<NetworkInterface>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs index 941c045ac7476..3fd7430c357be 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs @@ -13,6 +13,7 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -36,10 +37,9 @@ public partial class NetworkResourceProviderClient : ServiceClient<NetworkResour public JsonSerializerSettings DeserializationSettings { get; private set; } /// <summary> - /// Subscription credentials which uniquely identify Microsoft Azure - /// subscription. + /// Management credentials for Azure. /// </summary> - public SubscriptionCloudCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// <summary> /// Gets subscription credentials which uniquely identify Microsoft @@ -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> @@ -140,13 +145,13 @@ public NetworkResourceProviderClient(Uri baseUri, params DelegatingHandler[] han /// Initializes a new instance of the NetworkResourceProviderClient class. /// </summary> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public NetworkResourceProviderClient(SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public NetworkResourceProviderClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -162,13 +167,13 @@ public NetworkResourceProviderClient(SubscriptionCloudCredentials credentials, p /// Optional. The base URI of the service. /// </param> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public NetworkResourceProviderClient(Uri baseUri, SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public NetworkResourceProviderClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -201,10 +206,7 @@ private void Initialize() this.VirtualNetworks = new VirtualNetworksOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-05-01-preview"; - if (this.Credentials != null) - { - this.Credentials.InitializeServiceClient(this); - } + this.AcceptLanguage = "en-US"; SerializationSettings = new JsonSerializerSettings { Formatting = Formatting.Indented, @@ -292,11 +294,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); } } @@ -338,6 +353,10 @@ private void Initialize() var result = new AzureOperationResponse<DnsNameAvailabilityResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClientExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClientExtensions.cs index 0481b9ef9b870..39f73e25fe2af 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClientExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClientExtensions.cs @@ -15,7 +15,7 @@ public static partial class NetworkResourceProviderClientExtensions /// Checks whether a domain name in the cloudapp.net zone is available for use. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// The location of the domain name @@ -33,7 +33,7 @@ public static partial class NetworkResourceProviderClientExtensions /// Checks whether a domain name in the cloudapp.net zone is available for use. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// The location of the domain name diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs index e029e5c8a33b6..6ba76ba5b9ea6 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -43,10 +44,10 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) /// The name of the network security group. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -124,11 +125,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); } } @@ -163,6 +177,10 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -238,11 +256,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); } } @@ -284,6 +315,10 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<NetworkSecurityGroup>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -311,10 +346,10 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) /// Parameters supplied to the create/update Network Security Group operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<NetworkSecurityGroup>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, NetworkSecurityGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -406,11 +441,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); } } @@ -456,6 +504,10 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<NetworkSecurityGroup>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -485,7 +537,7 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<NetworkSecurityGroupListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<NetworkSecurityGroup>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -525,11 +577,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); } } @@ -568,14 +633,18 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<NetworkSecurityGroupListResult>(); + var result = new AzureOperationResponse<Page<NetworkSecurityGroup>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<NetworkSecurityGroupListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<NetworkSecurityGroup>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -597,7 +666,7 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<NetworkSecurityGroupListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<NetworkSecurityGroup>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -643,11 +712,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); } } @@ -686,14 +768,18 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<NetworkSecurityGroupListResult>(); + var result = new AzureOperationResponse<Page<NetworkSecurityGroup>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<NetworkSecurityGroupListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<NetworkSecurityGroup>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -706,7 +792,7 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) /// The list NetworkSecurityGroups returns all network security groups in a /// subscription /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -715,11 +801,11 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<NetworkSecurityGroupListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<NetworkSecurityGroup>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -728,13 +814,13 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -747,11 +833,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); } } @@ -790,14 +889,18 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<NetworkSecurityGroupListResult>(); + var result = new AzureOperationResponse<Page<NetworkSecurityGroup>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<NetworkSecurityGroupListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<NetworkSecurityGroup>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -810,7 +913,7 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) /// The list NetworkSecurityGroups returns all network security groups in a /// resource group /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -819,11 +922,11 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<NetworkSecurityGroupListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<NetworkSecurityGroup>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -832,13 +935,13 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -851,11 +954,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); } } @@ -894,14 +1010,18 @@ internal NetworkSecurityGroupsOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<NetworkSecurityGroupListResult>(); + var result = new AzureOperationResponse<Page<NetworkSecurityGroup>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<NetworkSecurityGroupListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<NetworkSecurityGroup>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperationsExtensions.cs index e9dc96bd17c52..d42b4853cd93b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class NetworkSecurityGroupsOperationsExtensions /// security group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -34,7 +34,7 @@ public static void Delete(this INetworkSecurityGroupsOperations operations, stri /// security group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -55,7 +55,7 @@ public static void Delete(this INetworkSecurityGroupsOperations operations, stri /// security group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -73,7 +73,7 @@ public static void BeginDelete(this INetworkSecurityGroupsOperations operations, /// security group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -94,7 +94,7 @@ public static void BeginDelete(this INetworkSecurityGroupsOperations operations, /// specified network security group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -112,7 +112,7 @@ public static NetworkSecurityGroup Get(this INetworkSecurityGroupsOperations ope /// specified network security group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -134,7 +134,7 @@ public static NetworkSecurityGroup Get(this INetworkSecurityGroupsOperations ope /// groupin the specified resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -155,7 +155,7 @@ public static NetworkSecurityGroup CreateOrUpdate(this INetworkSecurityGroupsOpe /// groupin the specified resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -180,7 +180,7 @@ public static NetworkSecurityGroup CreateOrUpdate(this INetworkSecurityGroupsOpe /// groupin the specified resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -201,7 +201,7 @@ public static NetworkSecurityGroup BeginCreateOrUpdate(this INetworkSecurityGrou /// groupin the specified resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -226,9 +226,9 @@ public static NetworkSecurityGroup BeginCreateOrUpdate(this INetworkSecurityGrou /// subscription /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static NetworkSecurityGroupListResult ListAll(this INetworkSecurityGroupsOperations operations) + public static Page<NetworkSecurityGroup> ListAll(this INetworkSecurityGroupsOperations operations) { return Task.Factory.StartNew(s => ((INetworkSecurityGroupsOperations)s).ListAllAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -238,14 +238,14 @@ public static NetworkSecurityGroupListResult ListAll(this INetworkSecurityGroups /// subscription /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<NetworkSecurityGroupListResult> ListAllAsync( this INetworkSecurityGroupsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<NetworkSecurityGroup>> ListAllAsync( this INetworkSecurityGroupsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<NetworkSecurityGroupListResult> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<NetworkSecurityGroup>> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -254,12 +254,12 @@ public static NetworkSecurityGroupListResult ListAll(this INetworkSecurityGroups /// resource group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static NetworkSecurityGroupListResult List(this INetworkSecurityGroupsOperations operations, string resourceGroupName) + public static Page<NetworkSecurityGroup> List(this INetworkSecurityGroupsOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((INetworkSecurityGroupsOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -269,7 +269,7 @@ public static NetworkSecurityGroupListResult List(this INetworkSecurityGroupsOpe /// resource group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -277,9 +277,9 @@ public static NetworkSecurityGroupListResult List(this INetworkSecurityGroupsOpe /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<NetworkSecurityGroupListResult> ListAsync( this INetworkSecurityGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<NetworkSecurityGroup>> ListAsync( this INetworkSecurityGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<NetworkSecurityGroupListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<NetworkSecurityGroup>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -288,14 +288,14 @@ public static NetworkSecurityGroupListResult List(this INetworkSecurityGroupsOpe /// subscription /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static NetworkSecurityGroupListResult ListAllNext(this INetworkSecurityGroupsOperations operations, string nextLink) + public static Page<NetworkSecurityGroup> ListAllNext(this INetworkSecurityGroupsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((INetworkSecurityGroupsOperations)s).ListAllNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((INetworkSecurityGroupsOperations)s).ListAllNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -303,17 +303,17 @@ public static NetworkSecurityGroupListResult ListAllNext(this INetworkSecurityGr /// subscription /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<NetworkSecurityGroupListResult> ListAllNextAsync( this INetworkSecurityGroupsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<NetworkSecurityGroup>> ListAllNextAsync( this INetworkSecurityGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<NetworkSecurityGroupListResult> result = await operations.ListAllNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<NetworkSecurityGroup>> result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -322,14 +322,14 @@ public static NetworkSecurityGroupListResult ListAllNext(this INetworkSecurityGr /// resource group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static NetworkSecurityGroupListResult ListNext(this INetworkSecurityGroupsOperations operations, string nextLink) + public static Page<NetworkSecurityGroup> ListNext(this INetworkSecurityGroupsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((INetworkSecurityGroupsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((INetworkSecurityGroupsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -337,17 +337,17 @@ public static NetworkSecurityGroupListResult ListNext(this INetworkSecurityGroup /// resource group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<NetworkSecurityGroupListResult> ListNextAsync( this INetworkSecurityGroupsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<NetworkSecurityGroup>> ListNextAsync( this INetworkSecurityGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<NetworkSecurityGroupListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<NetworkSecurityGroup>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs index 96bdf9c7ec8fc..9fe5678a99b96 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -42,10 +43,10 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) /// The name of the subnet. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string publicIpAddressName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -122,11 +123,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); } } @@ -161,6 +175,10 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -236,11 +254,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); } } @@ -282,6 +313,10 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<PublicIpAddress>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -309,10 +344,10 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) /// Parameters supplied to the create/update PublicIPAddress operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<PublicIpAddress>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string publicIpAddressName, PublicIpAddress parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -404,11 +439,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); } } @@ -454,6 +502,10 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<PublicIpAddress>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -483,7 +535,7 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<PublicIpAddressListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<PublicIpAddress>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -523,11 +575,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); } } @@ -566,14 +631,18 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<PublicIpAddressListResult>(); + var result = new AzureOperationResponse<Page<PublicIpAddress>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<PublicIpAddressListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<PublicIpAddress>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -595,7 +664,7 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<PublicIpAddressListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<PublicIpAddress>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -641,11 +710,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); } } @@ -684,14 +766,18 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<PublicIpAddressListResult>(); + var result = new AzureOperationResponse<Page<PublicIpAddress>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<PublicIpAddressListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<PublicIpAddress>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -704,7 +790,7 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) /// The List publicIpAddress opertion retrieves all the publicIpAddresses in a /// subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -713,11 +799,11 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<PublicIpAddressListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<PublicIpAddress>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -726,13 +812,13 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -745,11 +831,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); } } @@ -788,14 +887,18 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<PublicIpAddressListResult>(); + var result = new AzureOperationResponse<Page<PublicIpAddress>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<PublicIpAddressListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<PublicIpAddress>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -808,7 +911,7 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) /// The List publicIpAddress opertion retrieves all the publicIpAddresses in a /// resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -817,11 +920,11 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<PublicIpAddressListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<PublicIpAddress>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -830,13 +933,13 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -849,11 +952,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); } } @@ -892,14 +1008,18 @@ internal PublicIpAddressesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<PublicIpAddressListResult>(); + var result = new AzureOperationResponse<Page<PublicIpAddress>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<PublicIpAddressListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<PublicIpAddress>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperationsExtensions.cs index 6ebfa8b807926..ab0201d3706b8 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperationsExtensions.cs @@ -15,7 +15,7 @@ public static partial class PublicIpAddressesOperationsExtensions /// The delete publicIpAddress operation deletes the specified publicIpAddress. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -32,7 +32,7 @@ public static void Delete(this IPublicIpAddressesOperations operations, string r /// The delete publicIpAddress operation deletes the specified publicIpAddress. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -52,7 +52,7 @@ public static void Delete(this IPublicIpAddressesOperations operations, string r /// The delete publicIpAddress operation deletes the specified publicIpAddress. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -69,7 +69,7 @@ public static void BeginDelete(this IPublicIpAddressesOperations operations, str /// The delete publicIpAddress operation deletes the specified publicIpAddress. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -90,7 +90,7 @@ public static void BeginDelete(this IPublicIpAddressesOperations operations, str /// specified pubicIpAddress /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -108,7 +108,7 @@ public static PublicIpAddress Get(this IPublicIpAddressesOperations operations, /// specified pubicIpAddress /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -130,7 +130,7 @@ public static PublicIpAddress Get(this IPublicIpAddressesOperations operations, /// PublicIP address /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -151,7 +151,7 @@ public static PublicIpAddress CreateOrUpdate(this IPublicIpAddressesOperations o /// PublicIP address /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -176,7 +176,7 @@ public static PublicIpAddress CreateOrUpdate(this IPublicIpAddressesOperations o /// PublicIP address /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -197,7 +197,7 @@ public static PublicIpAddress BeginCreateOrUpdate(this IPublicIpAddressesOperati /// PublicIP address /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -222,9 +222,9 @@ public static PublicIpAddress BeginCreateOrUpdate(this IPublicIpAddressesOperati /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static PublicIpAddressListResult ListAll(this IPublicIpAddressesOperations operations) + public static Page<PublicIpAddress> ListAll(this IPublicIpAddressesOperations operations) { return Task.Factory.StartNew(s => ((IPublicIpAddressesOperations)s).ListAllAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -234,14 +234,14 @@ public static PublicIpAddressListResult ListAll(this IPublicIpAddressesOperation /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<PublicIpAddressListResult> ListAllAsync( this IPublicIpAddressesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<PublicIpAddress>> ListAllAsync( this IPublicIpAddressesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<PublicIpAddressListResult> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<PublicIpAddress>> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -250,12 +250,12 @@ public static PublicIpAddressListResult ListAll(this IPublicIpAddressesOperation /// resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static PublicIpAddressListResult List(this IPublicIpAddressesOperations operations, string resourceGroupName) + public static Page<PublicIpAddress> List(this IPublicIpAddressesOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((IPublicIpAddressesOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -265,7 +265,7 @@ public static PublicIpAddressListResult List(this IPublicIpAddressesOperations o /// resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -273,9 +273,9 @@ public static PublicIpAddressListResult List(this IPublicIpAddressesOperations o /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<PublicIpAddressListResult> ListAsync( this IPublicIpAddressesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<PublicIpAddress>> ListAsync( this IPublicIpAddressesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<PublicIpAddressListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<PublicIpAddress>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -284,14 +284,14 @@ public static PublicIpAddressListResult List(this IPublicIpAddressesOperations o /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static PublicIpAddressListResult ListAllNext(this IPublicIpAddressesOperations operations, string nextLink) + public static Page<PublicIpAddress> ListAllNext(this IPublicIpAddressesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IPublicIpAddressesOperations)s).ListAllNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IPublicIpAddressesOperations)s).ListAllNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -299,17 +299,17 @@ public static PublicIpAddressListResult ListAllNext(this IPublicIpAddressesOpera /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<PublicIpAddressListResult> ListAllNextAsync( this IPublicIpAddressesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<PublicIpAddress>> ListAllNextAsync( this IPublicIpAddressesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<PublicIpAddressListResult> result = await operations.ListAllNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<PublicIpAddress>> result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -318,14 +318,14 @@ public static PublicIpAddressListResult ListAllNext(this IPublicIpAddressesOpera /// resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static PublicIpAddressListResult ListNext(this IPublicIpAddressesOperations operations, string nextLink) + public static Page<PublicIpAddress> ListNext(this IPublicIpAddressesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IPublicIpAddressesOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IPublicIpAddressesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -333,17 +333,17 @@ public static PublicIpAddressListResult ListNext(this IPublicIpAddressesOperatio /// resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<PublicIpAddressListResult> ListNextAsync( this IPublicIpAddressesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<PublicIpAddress>> ListNextAsync( this IPublicIpAddressesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<PublicIpAddressListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<PublicIpAddress>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs index e84eb81f60469..e578de4bf2890 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -46,10 +47,10 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) /// The name of the security rule. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string securityRuleName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -136,11 +137,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); } } @@ -175,6 +189,10 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -259,11 +277,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); } } @@ -305,6 +336,10 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<SecurityRule>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -335,10 +370,10 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) /// Parameters supplied to the create/update network security rule operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<SecurityRule>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, string securityRuleName, SecurityRule securityRuleParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -435,11 +470,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); } } @@ -485,6 +533,10 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<SecurityRule>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -520,7 +572,7 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<SecurityRuleListResult>> ListWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<SecurityRule>>> ListWithHttpMessagesAsync(string resourceGroupName, string networkSecurityGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -572,11 +624,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); } } @@ -615,14 +680,18 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<SecurityRuleListResult>(); + var result = new AzureOperationResponse<Page<SecurityRule>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<SecurityRuleListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<SecurityRule>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -635,7 +704,7 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) /// The List network security rule opertion retrieves all the security rules /// in a network security group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -644,11 +713,11 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<SecurityRuleListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<SecurityRule>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -657,13 +726,13 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -676,11 +745,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); } } @@ -719,14 +801,18 @@ internal SecurityRulesOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<SecurityRuleListResult>(); + var result = new AzureOperationResponse<Page<SecurityRule>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<SecurityRuleListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<SecurityRule>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperationsExtensions.cs index 8b6b9f63ac6ae..37a639cb31738 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class SecurityRulesOperationsExtensions /// security rule. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -37,7 +37,7 @@ public static void Delete(this ISecurityRulesOperations operations, string resou /// security rule. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -61,7 +61,7 @@ public static void Delete(this ISecurityRulesOperations operations, string resou /// security rule. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -82,7 +82,7 @@ public static void BeginDelete(this ISecurityRulesOperations operations, string /// security rule. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -106,7 +106,7 @@ public static void BeginDelete(this ISecurityRulesOperations operations, string /// specified network security rule. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -127,7 +127,7 @@ public static SecurityRule Get(this ISecurityRulesOperations operations, string /// specified network security rule. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -152,7 +152,7 @@ public static SecurityRule Get(this ISecurityRulesOperations operations, string /// the specified network security group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -176,7 +176,7 @@ public static SecurityRule CreateOrUpdate(this ISecurityRulesOperations operatio /// the specified network security group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -204,7 +204,7 @@ public static SecurityRule CreateOrUpdate(this ISecurityRulesOperations operatio /// the specified network security group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -228,7 +228,7 @@ public static SecurityRule BeginCreateOrUpdate(this ISecurityRulesOperations ope /// the specified network security group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -256,7 +256,7 @@ public static SecurityRule BeginCreateOrUpdate(this ISecurityRulesOperations ope /// in a network security group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -264,7 +264,7 @@ public static SecurityRule BeginCreateOrUpdate(this ISecurityRulesOperations ope /// <param name='networkSecurityGroupName'> /// The name of the network security group. /// </param> - public static SecurityRuleListResult List(this ISecurityRulesOperations operations, string resourceGroupName, string networkSecurityGroupName) + public static Page<SecurityRule> List(this ISecurityRulesOperations operations, string resourceGroupName, string networkSecurityGroupName) { return Task.Factory.StartNew(s => ((ISecurityRulesOperations)s).ListAsync(resourceGroupName, networkSecurityGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -274,7 +274,7 @@ public static SecurityRuleListResult List(this ISecurityRulesOperations operatio /// in a network security group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -285,9 +285,9 @@ public static SecurityRuleListResult List(this ISecurityRulesOperations operatio /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<SecurityRuleListResult> ListAsync( this ISecurityRulesOperations operations, string resourceGroupName, string networkSecurityGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<SecurityRule>> ListAsync( this ISecurityRulesOperations operations, string resourceGroupName, string networkSecurityGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<SecurityRuleListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, networkSecurityGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<SecurityRule>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, networkSecurityGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -296,14 +296,14 @@ public static SecurityRuleListResult List(this ISecurityRulesOperations operatio /// in a network security group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static SecurityRuleListResult ListNext(this ISecurityRulesOperations operations, string nextLink) + public static Page<SecurityRule> ListNext(this ISecurityRulesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ISecurityRulesOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ISecurityRulesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -311,17 +311,17 @@ public static SecurityRuleListResult ListNext(this ISecurityRulesOperations oper /// in a network security group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<SecurityRuleListResult> ListNextAsync( this ISecurityRulesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<SecurityRule>> ListNextAsync( this ISecurityRulesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<SecurityRuleListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<SecurityRule>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs index acfcd9bded58e..4df1d2a6a5b48 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -45,10 +46,10 @@ internal SubnetsOperations(NetworkResourceProviderClient client) /// The name of the subnet. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, string subnetName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -134,11 +135,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); } } @@ -173,6 +187,10 @@ internal SubnetsOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -256,11 +274,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); } } @@ -302,6 +333,10 @@ internal SubnetsOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<Subnet>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -332,10 +367,10 @@ internal SubnetsOperations(NetworkResourceProviderClient client) /// Parameters supplied to the create/update Subnet operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<Subnet>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, string subnetName, Subnet subnetParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -432,11 +467,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); } } @@ -482,6 +530,10 @@ internal SubnetsOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<Subnet>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -516,7 +568,7 @@ internal SubnetsOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<SubnetListResult>> ListWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<Subnet>>> ListWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -568,11 +620,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); } } @@ -611,14 +676,18 @@ internal SubnetsOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<SubnetListResult>(); + var result = new AzureOperationResponse<Page<Subnet>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<SubnetListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<Subnet>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -630,7 +699,7 @@ internal SubnetsOperations(NetworkResourceProviderClient client) /// <summary> /// The List subnets opertion retrieves all the subnets in a virtual network. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -639,11 +708,11 @@ internal SubnetsOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<SubnetListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<Subnet>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -652,13 +721,13 @@ internal SubnetsOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -671,11 +740,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); } } @@ -714,14 +796,18 @@ internal SubnetsOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<SubnetListResult>(); + var result = new AzureOperationResponse<Page<Subnet>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<SubnetListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<Subnet>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperationsExtensions.cs index 60557336f1b11..80643cb760c18 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperationsExtensions.cs @@ -15,7 +15,7 @@ public static partial class SubnetsOperationsExtensions /// The delete subnet operation deletes the specified subnet. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -35,7 +35,7 @@ public static void Delete(this ISubnetsOperations operations, string resourceGro /// The delete subnet operation deletes the specified subnet. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -58,7 +58,7 @@ public static void Delete(this ISubnetsOperations operations, string resourceGro /// The delete subnet operation deletes the specified subnet. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -78,7 +78,7 @@ public static void BeginDelete(this ISubnetsOperations operations, string resour /// The delete subnet operation deletes the specified subnet. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -101,7 +101,7 @@ public static void BeginDelete(this ISubnetsOperations operations, string resour /// The Get subnet operation retreives information about the specified subnet. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -121,7 +121,7 @@ public static Subnet Get(this ISubnetsOperations operations, string resourceGrou /// The Get subnet operation retreives information about the specified subnet. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -146,7 +146,7 @@ public static Subnet Get(this ISubnetsOperations operations, string resourceGrou /// network /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -170,7 +170,7 @@ public static Subnet CreateOrUpdate(this ISubnetsOperations operations, string r /// network /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -198,7 +198,7 @@ public static Subnet CreateOrUpdate(this ISubnetsOperations operations, string r /// network /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -222,7 +222,7 @@ public static Subnet BeginCreateOrUpdate(this ISubnetsOperations operations, str /// network /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -249,7 +249,7 @@ public static Subnet BeginCreateOrUpdate(this ISubnetsOperations operations, str /// The List subnets opertion retrieves all the subnets in a virtual network. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -257,7 +257,7 @@ public static Subnet BeginCreateOrUpdate(this ISubnetsOperations operations, str /// <param name='virtualNetworkName'> /// The name of the virtual network. /// </param> - public static SubnetListResult List(this ISubnetsOperations operations, string resourceGroupName, string virtualNetworkName) + public static Page<Subnet> List(this ISubnetsOperations operations, string resourceGroupName, string virtualNetworkName) { return Task.Factory.StartNew(s => ((ISubnetsOperations)s).ListAsync(resourceGroupName, virtualNetworkName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -266,7 +266,7 @@ public static SubnetListResult List(this ISubnetsOperations operations, string r /// The List subnets opertion retrieves all the subnets in a virtual network. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -277,9 +277,9 @@ public static SubnetListResult List(this ISubnetsOperations operations, string r /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<SubnetListResult> ListAsync( this ISubnetsOperations operations, string resourceGroupName, string virtualNetworkName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<Subnet>> ListAsync( this ISubnetsOperations operations, string resourceGroupName, string virtualNetworkName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<SubnetListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, virtualNetworkName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<Subnet>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, virtualNetworkName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -287,31 +287,31 @@ public static SubnetListResult List(this ISubnetsOperations operations, string r /// The List subnets opertion retrieves all the subnets in a virtual network. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static SubnetListResult ListNext(this ISubnetsOperations operations, string nextLink) + public static Page<Subnet> ListNext(this ISubnetsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ISubnetsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ISubnetsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// The List subnets opertion retrieves all the subnets in a virtual network. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<SubnetListResult> ListNextAsync( this ISubnetsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<Subnet>> ListNextAsync( this ISubnetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<SubnetListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<Subnet>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs index df64abc9e64d7..1c90903386a64 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -90,11 +91,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); } } @@ -136,6 +150,10 @@ internal UsagesOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<UsagesListResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperationsExtensions.cs index 5fc5353480fda..4f9f5de789105 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperationsExtensions.cs @@ -15,7 +15,7 @@ public static partial class UsagesOperationsExtensions /// Lists compute usages for a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// The location upon which resource usage is queried. @@ -29,7 +29,7 @@ public static UsagesListResult List(this IUsagesOperations operations, string lo /// Lists compute usages for a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='location'> /// The location upon which resource usage is queried. diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs index 27890900ea8d8..8565e14f9da12 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -48,10 +49,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien /// connection operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<VirtualNetworkGatewayConnection>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, VirtualNetworkGatewayConnection parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -145,11 +146,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); } } @@ -195,6 +209,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien var result = new AzureOperationResponse<VirtualNetworkGatewayConnection>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -283,11 +301,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); } } @@ -329,6 +360,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien var result = new AzureOperationResponse<VirtualNetworkGatewayConnection>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -353,10 +388,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien /// The name of the virtual network gateway connection. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -434,11 +469,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); } } @@ -473,6 +521,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -549,11 +601,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); } } @@ -595,6 +660,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien var result = new AzureOperationResponse<ConnectionSharedKey>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -625,10 +694,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien /// Shared key operation throughNetwork resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<ConnectionSharedKey>> SetSharedKeyWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, ConnectionSharedKey parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -719,11 +788,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); } } @@ -769,6 +851,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien var result = new AzureOperationResponse<ConnectionSharedKey>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -801,7 +887,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualNetworkGatewayConnectionListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualNetworkGatewayConnection>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -847,11 +933,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); } } @@ -890,14 +989,18 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualNetworkGatewayConnectionListResult>(); + var result = new AzureOperationResponse<Page<VirtualNetworkGatewayConnection>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualNetworkGatewayConnectionListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualNetworkGatewayConnection>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -923,10 +1026,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien /// shared key operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<ConnectionResetSharedKey>> ResetSharedKeyWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayConnectionName, ConnectionResetSharedKey parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -1015,11 +1118,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); } } @@ -1065,6 +1181,10 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien var result = new AzureOperationResponse<ConnectionResetSharedKey>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -1082,7 +1202,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien /// The List VirtualNetworkGatewayConnections operation retrieves all the /// virtual network gateways connections created. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1091,11 +1211,11 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualNetworkGatewayConnectionListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualNetworkGatewayConnection>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1104,13 +1224,13 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1123,11 +1243,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); } } @@ -1166,14 +1299,18 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkResourceProviderClien throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualNetworkGatewayConnectionListResult>(); + var result = new AzureOperationResponse<Page<VirtualNetworkGatewayConnection>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualNetworkGatewayConnectionListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualNetworkGatewayConnection>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs index c64480fc1ebef..a78557bfe3f20 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs @@ -17,7 +17,7 @@ public static partial class VirtualNetworkGatewayConnectionsOperationsExtensions /// through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -40,7 +40,7 @@ public static VirtualNetworkGatewayConnection CreateOrUpdate(this IVirtualNetwor /// through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -67,7 +67,7 @@ public static VirtualNetworkGatewayConnection CreateOrUpdate(this IVirtualNetwor /// through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -90,7 +90,7 @@ public static VirtualNetworkGatewayConnection BeginCreateOrUpdate(this IVirtualN /// through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -117,7 +117,7 @@ public static VirtualNetworkGatewayConnection BeginCreateOrUpdate(this IVirtualN /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -136,7 +136,7 @@ public static VirtualNetworkGatewayConnection Get(this IVirtualNetworkGatewayCon /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -158,7 +158,7 @@ public static VirtualNetworkGatewayConnection Get(this IVirtualNetworkGatewayCon /// virtual network Gateway connection through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -176,7 +176,7 @@ public static void Delete(this IVirtualNetworkGatewayConnectionsOperations opera /// virtual network Gateway connection through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -197,7 +197,7 @@ public static void Delete(this IVirtualNetworkGatewayConnectionsOperations opera /// virtual network Gateway connection through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -215,7 +215,7 @@ public static void BeginDelete(this IVirtualNetworkGatewayConnectionsOperations /// virtual network Gateway connection through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -237,7 +237,7 @@ public static void BeginDelete(this IVirtualNetworkGatewayConnectionsOperations /// key through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -256,7 +256,7 @@ public static ConnectionSharedKey GetSharedKey(this IVirtualNetworkGatewayConnec /// key through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -280,7 +280,7 @@ public static ConnectionSharedKey GetSharedKey(this IVirtualNetworkGatewayConnec /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -304,7 +304,7 @@ public static ConnectionSharedKey SetSharedKey(this IVirtualNetworkGatewayConnec /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -332,7 +332,7 @@ public static ConnectionSharedKey SetSharedKey(this IVirtualNetworkGatewayConnec /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -356,7 +356,7 @@ public static ConnectionSharedKey BeginSetSharedKey(this IVirtualNetworkGatewayC /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -382,12 +382,12 @@ public static ConnectionSharedKey BeginSetSharedKey(this IVirtualNetworkGatewayC /// virtual network gateways connections created. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static VirtualNetworkGatewayConnectionListResult List(this IVirtualNetworkGatewayConnectionsOperations operations, string resourceGroupName) + public static Page<VirtualNetworkGatewayConnection> List(this IVirtualNetworkGatewayConnectionsOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((IVirtualNetworkGatewayConnectionsOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -397,7 +397,7 @@ public static VirtualNetworkGatewayConnectionListResult List(this IVirtualNetwor /// virtual network gateways connections created. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -405,9 +405,9 @@ public static VirtualNetworkGatewayConnectionListResult List(this IVirtualNetwor /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualNetworkGatewayConnectionListResult> ListAsync( this IVirtualNetworkGatewayConnectionsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualNetworkGatewayConnection>> ListAsync( this IVirtualNetworkGatewayConnectionsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualNetworkGatewayConnectionListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualNetworkGatewayConnection>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -418,7 +418,7 @@ public static VirtualNetworkGatewayConnectionListResult List(this IVirtualNetwor /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -442,7 +442,7 @@ public static ConnectionResetSharedKey ResetSharedKey(this IVirtualNetworkGatewa /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -470,7 +470,7 @@ public static ConnectionResetSharedKey ResetSharedKey(this IVirtualNetworkGatewa /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -494,7 +494,7 @@ public static ConnectionResetSharedKey BeginResetSharedKey(this IVirtualNetworkG /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -520,14 +520,14 @@ public static ConnectionResetSharedKey BeginResetSharedKey(this IVirtualNetworkG /// virtual network gateways connections created. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static VirtualNetworkGatewayConnectionListResult ListNext(this IVirtualNetworkGatewayConnectionsOperations operations, string nextLink) + public static Page<VirtualNetworkGatewayConnection> ListNext(this IVirtualNetworkGatewayConnectionsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IVirtualNetworkGatewayConnectionsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IVirtualNetworkGatewayConnectionsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -535,17 +535,17 @@ public static VirtualNetworkGatewayConnectionListResult ListNext(this IVirtualNe /// virtual network gateways connections created. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualNetworkGatewayConnectionListResult> ListNextAsync( this IVirtualNetworkGatewayConnectionsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualNetworkGatewayConnection>> ListNextAsync( this IVirtualNetworkGatewayConnectionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualNetworkGatewayConnectionListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualNetworkGatewayConnection>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs index fdfc84671b605..a8e23dcee09f2 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -47,10 +48,10 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) /// operation through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<VirtualNetworkGateway>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, VirtualNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -143,11 +144,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); } } @@ -193,6 +207,10 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<VirtualNetworkGateway>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -280,11 +298,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); } } @@ -326,6 +357,10 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<VirtualNetworkGateway>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -350,10 +385,10 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) /// The name of the virtual network gateway. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -431,11 +466,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); } } @@ -470,6 +518,10 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -490,7 +542,7 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualNetworkGatewayListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualNetworkGateway>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -536,11 +588,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); } } @@ -579,14 +644,18 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualNetworkGatewayListResult>(); + var result = new AzureOperationResponse<Page<VirtualNetworkGateway>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualNetworkGatewayListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualNetworkGateway>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -611,10 +680,10 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) /// through Network resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<VirtualNetworkGateway>> ResetWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkGatewayName, VirtualNetworkGateway parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -706,11 +775,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); } } @@ -756,6 +838,10 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<VirtualNetworkGateway>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -773,7 +859,7 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) /// The List VirtualNetworkGateways opertion retrieves all the virtual network /// gateways stored. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -782,11 +868,11 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualNetworkGatewayListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualNetworkGateway>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -795,13 +881,13 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -814,11 +900,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); } } @@ -857,14 +956,18 @@ internal VirtualNetworkGatewaysOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualNetworkGatewayListResult>(); + var result = new AzureOperationResponse<Page<VirtualNetworkGateway>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualNetworkGatewayListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualNetworkGateway>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperationsExtensions.cs index 66499567258d4..b24d66a9d607c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class VirtualNetworkGatewaysOperationsExtensions /// gateway in the specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -38,7 +38,7 @@ public static VirtualNetworkGateway CreateOrUpdate(this IVirtualNetworkGatewaysO /// gateway in the specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -64,7 +64,7 @@ public static VirtualNetworkGateway CreateOrUpdate(this IVirtualNetworkGatewaysO /// gateway in the specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -86,7 +86,7 @@ public static VirtualNetworkGateway BeginCreateOrUpdate(this IVirtualNetworkGate /// gateway in the specified resource group through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -112,7 +112,7 @@ public static VirtualNetworkGateway BeginCreateOrUpdate(this IVirtualNetworkGate /// specified virtual network gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -130,7 +130,7 @@ public static VirtualNetworkGateway Get(this IVirtualNetworkGatewaysOperations o /// specified virtual network gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -152,7 +152,7 @@ public static VirtualNetworkGateway Get(this IVirtualNetworkGatewaysOperations o /// network Gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -170,7 +170,7 @@ public static void Delete(this IVirtualNetworkGatewaysOperations operations, str /// network Gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -191,7 +191,7 @@ public static void Delete(this IVirtualNetworkGatewaysOperations operations, str /// network Gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -209,7 +209,7 @@ public static void BeginDelete(this IVirtualNetworkGatewaysOperations operations /// network Gateway through Network resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -230,12 +230,12 @@ public static void BeginDelete(this IVirtualNetworkGatewaysOperations operations /// gateways stored. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static VirtualNetworkGatewayListResult List(this IVirtualNetworkGatewaysOperations operations, string resourceGroupName) + public static Page<VirtualNetworkGateway> List(this IVirtualNetworkGatewaysOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((IVirtualNetworkGatewaysOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -245,7 +245,7 @@ public static VirtualNetworkGatewayListResult List(this IVirtualNetworkGatewaysO /// gateways stored. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -253,9 +253,9 @@ public static VirtualNetworkGatewayListResult List(this IVirtualNetworkGatewaysO /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualNetworkGatewayListResult> ListAsync( this IVirtualNetworkGatewaysOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualNetworkGateway>> ListAsync( this IVirtualNetworkGatewaysOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualNetworkGatewayListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualNetworkGateway>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -265,7 +265,7 @@ public static VirtualNetworkGatewayListResult List(this IVirtualNetworkGatewaysO /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -288,7 +288,7 @@ public static VirtualNetworkGateway Reset(this IVirtualNetworkGatewaysOperations /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -315,7 +315,7 @@ public static VirtualNetworkGateway Reset(this IVirtualNetworkGatewaysOperations /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -338,7 +338,7 @@ public static VirtualNetworkGateway BeginReset(this IVirtualNetworkGatewaysOpera /// resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -364,14 +364,14 @@ public static VirtualNetworkGateway BeginReset(this IVirtualNetworkGatewaysOpera /// gateways stored. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static VirtualNetworkGatewayListResult ListNext(this IVirtualNetworkGatewaysOperations operations, string nextLink) + public static Page<VirtualNetworkGateway> ListNext(this IVirtualNetworkGatewaysOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IVirtualNetworkGatewaysOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IVirtualNetworkGatewaysOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -379,17 +379,17 @@ public static VirtualNetworkGatewayListResult ListNext(this IVirtualNetworkGatew /// gateways stored. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualNetworkGatewayListResult> ListNextAsync( this IVirtualNetworkGatewaysOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualNetworkGateway>> ListNextAsync( this IVirtualNetworkGatewaysOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualNetworkGatewayListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualNetworkGateway>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs index f7bbc3140b761..461bbaecc2490 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -42,10 +43,10 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) /// The name of the virtual network. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -122,11 +123,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); } } @@ -161,6 +175,10 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -236,11 +254,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); } } @@ -282,6 +313,10 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<VirtualNetwork>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -309,10 +344,10 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) /// Parameters supplied to the create/update Virtual Network operation /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<VirtualNetwork>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string virtualNetworkName, VirtualNetwork parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -404,11 +439,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); } } @@ -454,6 +502,10 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) var result = new AzureOperationResponse<VirtualNetwork>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -482,7 +534,7 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualNetworkListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualNetwork>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -522,11 +574,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); } } @@ -565,14 +630,18 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualNetworkListResult>(); + var result = new AzureOperationResponse<Page<VirtualNetwork>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualNetworkListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualNetwork>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -593,7 +662,7 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualNetworkListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualNetwork>>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -639,11 +708,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); } } @@ -682,14 +764,18 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualNetworkListResult>(); + var result = new AzureOperationResponse<Page<VirtualNetwork>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualNetworkListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualNetwork>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -701,7 +787,7 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) /// <summary> /// The list VirtualNetwork returns all Virtual Networks in a subscription /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -710,11 +796,11 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualNetworkListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualNetwork>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -723,13 +809,13 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -742,11 +828,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); } } @@ -785,14 +884,18 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualNetworkListResult>(); + var result = new AzureOperationResponse<Page<VirtualNetwork>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualNetworkListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualNetwork>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -804,7 +907,7 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) /// <summary> /// The list VirtualNetwork returns all Virtual Networks in a resource group /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -813,11 +916,11 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<VirtualNetworkListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<VirtualNetwork>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -826,13 +929,13 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -845,11 +948,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); } } @@ -888,14 +1004,18 @@ internal VirtualNetworksOperations(NetworkResourceProviderClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<VirtualNetworkListResult>(); + var result = new AzureOperationResponse<Page<VirtualNetwork>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<VirtualNetworkListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<VirtualNetwork>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperationsExtensions.cs index 8b6336fd51bc4..bd0968d9667d4 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperationsExtensions.cs @@ -15,7 +15,7 @@ public static partial class VirtualNetworksOperationsExtensions /// The Delete VirtualNetwork operation deletes the specifed virtual network /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -32,7 +32,7 @@ public static void Delete(this IVirtualNetworksOperations operations, string res /// The Delete VirtualNetwork operation deletes the specifed virtual network /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -52,7 +52,7 @@ public static void Delete(this IVirtualNetworksOperations operations, string res /// The Delete VirtualNetwork operation deletes the specifed virtual network /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -69,7 +69,7 @@ public static void BeginDelete(this IVirtualNetworksOperations operations, strin /// The Delete VirtualNetwork operation deletes the specifed virtual network /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -90,7 +90,7 @@ public static void BeginDelete(this IVirtualNetworksOperations operations, strin /// virtual network. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -108,7 +108,7 @@ public static VirtualNetwork Get(this IVirtualNetworksOperations operations, str /// virtual network. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -130,7 +130,7 @@ public static VirtualNetwork Get(this IVirtualNetworksOperations operations, str /// specified resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -151,7 +151,7 @@ public static VirtualNetwork CreateOrUpdate(this IVirtualNetworksOperations oper /// specified resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -176,7 +176,7 @@ public static VirtualNetwork CreateOrUpdate(this IVirtualNetworksOperations oper /// specified resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -197,7 +197,7 @@ public static VirtualNetwork BeginCreateOrUpdate(this IVirtualNetworksOperations /// specified resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -221,9 +221,9 @@ public static VirtualNetwork BeginCreateOrUpdate(this IVirtualNetworksOperations /// The list VirtualNetwork returns all Virtual Networks in a subscription /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static VirtualNetworkListResult ListAll(this IVirtualNetworksOperations operations) + public static Page<VirtualNetwork> ListAll(this IVirtualNetworksOperations operations) { return Task.Factory.StartNew(s => ((IVirtualNetworksOperations)s).ListAllAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -232,14 +232,14 @@ public static VirtualNetworkListResult ListAll(this IVirtualNetworksOperations o /// The list VirtualNetwork returns all Virtual Networks in a subscription /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualNetworkListResult> ListAllAsync( this IVirtualNetworksOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualNetwork>> ListAllAsync( this IVirtualNetworksOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualNetworkListResult> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualNetwork>> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -247,12 +247,12 @@ public static VirtualNetworkListResult ListAll(this IVirtualNetworksOperations o /// The list VirtualNetwork returns all Virtual Networks in a resource group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> - public static VirtualNetworkListResult List(this IVirtualNetworksOperations operations, string resourceGroupName) + public static Page<VirtualNetwork> List(this IVirtualNetworksOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((IVirtualNetworksOperations)s).ListAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -261,7 +261,7 @@ public static VirtualNetworkListResult List(this IVirtualNetworksOperations oper /// The list VirtualNetwork returns all Virtual Networks in a resource group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -269,9 +269,9 @@ public static VirtualNetworkListResult List(this IVirtualNetworksOperations oper /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualNetworkListResult> ListAsync( this IVirtualNetworksOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualNetwork>> ListAsync( this IVirtualNetworksOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualNetworkListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualNetwork>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -279,31 +279,31 @@ public static VirtualNetworkListResult List(this IVirtualNetworksOperations oper /// The list VirtualNetwork returns all Virtual Networks in a subscription /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static VirtualNetworkListResult ListAllNext(this IVirtualNetworksOperations operations, string nextLink) + public static Page<VirtualNetwork> ListAllNext(this IVirtualNetworksOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IVirtualNetworksOperations)s).ListAllNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IVirtualNetworksOperations)s).ListAllNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// The list VirtualNetwork returns all Virtual Networks in a subscription /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualNetworkListResult> ListAllNextAsync( this IVirtualNetworksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualNetwork>> ListAllNextAsync( this IVirtualNetworksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualNetworkListResult> result = await operations.ListAllNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualNetwork>> result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -311,31 +311,31 @@ public static VirtualNetworkListResult ListAllNext(this IVirtualNetworksOperatio /// The list VirtualNetwork returns all Virtual Networks in a resource group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static VirtualNetworkListResult ListNext(this IVirtualNetworksOperations operations, string nextLink) + public static Page<VirtualNetwork> ListNext(this IVirtualNetworksOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IVirtualNetworksOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IVirtualNetworksOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// The list VirtualNetwork returns all Virtual Networks in a resource group /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<VirtualNetworkListResult> ListNextAsync( this IVirtualNetworksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<VirtualNetwork>> ListNextAsync( this IVirtualNetworksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<VirtualNetworkListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<VirtualNetwork>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj index 3c5a8f8215ffc..1cd47135eae78 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj @@ -23,6 +23,39 @@ <None Include="Microsoft.Azure.Management.Network.nuget.proj" /> <None Include="packages.config" /> </ItemGroup> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'portable' "> + <ItemGroup> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'net45' "> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs index 826d8dd445f0b..b6e04b13e86d0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs @@ -13,8 +13,9 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -38,10 +39,9 @@ public partial class AuthorizationClient : ServiceClient<AuthorizationClient>, I public JsonSerializerSettings DeserializationSettings { get; private set; } /// <summary> - /// Subscription credentials which uniquely identify Microsoft Azure - /// subscription. + /// Management credentials for Azure. /// </summary> - public SubscriptionCloudCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// <summary> /// Gets subscription credentials which uniquely identify Microsoft @@ -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> @@ -120,13 +125,13 @@ public AuthorizationClient(Uri baseUri, params DelegatingHandler[] handlers) : t /// Initializes a new instance of the AuthorizationClient class. /// </summary> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public AuthorizationClient(SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public AuthorizationClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -142,13 +147,13 @@ public AuthorizationClient(SubscriptionCloudCredentials credentials, params Dele /// Optional. The base URI of the service. /// </param> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public AuthorizationClient(Uri baseUri, SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public AuthorizationClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -170,10 +175,7 @@ private void Initialize() this.ManagementLocks = new ManagementLocksOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-01-01"; - if (this.Credentials != null) - { - this.Credentials.InitializeServiceClient(this); - } + this.AcceptLanguage = "en-US"; SerializationSettings = new JsonSerializerSettings { Formatting = Formatting.Indented, diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs index d0a9652ab793b..edc18250f6599 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -110,11 +111,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); } } @@ -156,6 +170,10 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<DeploymentOperation>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -187,7 +205,7 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<DeploymentOperationsListResult>> ListWithHttpMessagesAsync(string resourceGroupName, string deploymentName, int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<DeploymentOperation>>> ListWithHttpMessagesAsync(string resourceGroupName, string deploymentName, int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -244,11 +262,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); } } @@ -287,14 +318,18 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<DeploymentOperationsListResult>(); + var result = new AzureOperationResponse<Page<DeploymentOperation>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<DeploymentOperationsListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<DeploymentOperation>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -306,7 +341,7 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) /// <summary> /// Gets a list of deployments operations. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -315,11 +350,11 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<DeploymentOperationsListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<DeploymentOperation>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -328,13 +363,13 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -347,11 +382,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); } } @@ -390,14 +438,18 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<DeploymentOperationsListResult>(); + var result = new AzureOperationResponse<Page<DeploymentOperation>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<DeploymentOperationsListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<DeploymentOperation>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs index 89c2e617d7abf..c7876598edfee 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class DeploymentOperationsOperationsExtensions /// Get a list of deployments operations. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -36,7 +36,7 @@ public static DeploymentOperation Get(this IDeploymentOperationsOperations opera /// Get a list of deployments operations. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -60,7 +60,7 @@ public static DeploymentOperation Get(this IDeploymentOperationsOperations opera /// Gets a list of deployments operations. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -71,7 +71,7 @@ public static DeploymentOperation Get(this IDeploymentOperationsOperations opera /// <param name='top'> /// Query parameters. /// </param> - public static DeploymentOperationsListResult List(this IDeploymentOperationsOperations operations, string resourceGroupName, string deploymentName, int? top = default(int?)) + public static Page<DeploymentOperation> List(this IDeploymentOperationsOperations operations, string resourceGroupName, string deploymentName, int? top = default(int?)) { return Task.Factory.StartNew(s => ((IDeploymentOperationsOperations)s).ListAsync(resourceGroupName, deploymentName, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -80,7 +80,7 @@ public static DeploymentOperation Get(this IDeploymentOperationsOperations opera /// Gets a list of deployments operations. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -94,9 +94,9 @@ public static DeploymentOperation Get(this IDeploymentOperationsOperations opera /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<DeploymentOperationsListResult> ListAsync( this IDeploymentOperationsOperations operations, string resourceGroupName, string deploymentName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<DeploymentOperation>> ListAsync( this IDeploymentOperationsOperations operations, string resourceGroupName, string deploymentName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<DeploymentOperationsListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, deploymentName, top, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<DeploymentOperation>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, deploymentName, top, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -104,31 +104,31 @@ public static DeploymentOperation Get(this IDeploymentOperationsOperations opera /// Gets a list of deployments operations. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static DeploymentOperationsListResult ListNext(this IDeploymentOperationsOperations operations, string nextLink) + public static Page<DeploymentOperation> ListNext(this IDeploymentOperationsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IDeploymentOperationsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IDeploymentOperationsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets a list of deployments operations. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<DeploymentOperationsListResult> ListNextAsync( this IDeploymentOperationsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<DeploymentOperation>> ListNextAsync( this IDeploymentOperationsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<DeploymentOperationsListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<DeploymentOperation>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs index 642473f4717a1..bd8cefce989d7 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -101,11 +102,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); } } @@ -140,6 +154,10 @@ internal DeploymentsOperations(ResourceManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -222,11 +240,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); } } @@ -272,6 +303,10 @@ internal DeploymentsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<DeploymentValidateResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -366,11 +401,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); } } @@ -416,6 +464,10 @@ internal DeploymentsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<DeploymentExtended>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -502,11 +554,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); } } @@ -548,6 +613,10 @@ internal DeploymentsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<DeploymentExtended>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -579,7 +648,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<DeploymentListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Expression<Func<DeploymentExtendedFilter, bool>> filter = default(Expression<Func<DeploymentExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<DeploymentExtended>>> ListWithHttpMessagesAsync(string resourceGroupName, Expression<Func<DeploymentExtendedFilter, bool>> filter = default(Expression<Func<DeploymentExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -635,11 +704,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); } } @@ -678,14 +760,18 @@ internal DeploymentsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<DeploymentListResult>(); + var result = new AzureOperationResponse<Page<DeploymentExtended>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<DeploymentListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<DeploymentExtended>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -697,7 +783,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// <summary> /// Get a list of deployments. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -706,11 +792,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<DeploymentListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<DeploymentExtended>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -719,13 +805,13 @@ internal DeploymentsOperations(ResourceManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -738,11 +824,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); } } @@ -781,14 +880,18 @@ internal DeploymentsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<DeploymentListResult>(); + var result = new AzureOperationResponse<Page<DeploymentExtended>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<DeploymentListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<DeploymentExtended>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs index ad2ad5a584b12..23da2a82e95f7 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class DeploymentsOperationsExtensions /// Cancel a currently running template deployment. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -33,7 +33,7 @@ public static void Cancel(this IDeploymentsOperations operations, string resourc /// Cancel a currently running template deployment. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -53,7 +53,7 @@ public static void Cancel(this IDeploymentsOperations operations, string resourc /// Validate a deployment template. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -73,7 +73,7 @@ public static DeploymentValidateResult Validate(this IDeploymentsOperations oper /// Validate a deployment template. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -97,7 +97,7 @@ public static DeploymentValidateResult Validate(this IDeploymentsOperations oper /// Create a named template deployment using a template. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -117,7 +117,7 @@ public static DeploymentExtended CreateOrUpdate(this IDeploymentsOperations oper /// Create a named template deployment using a template. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -141,7 +141,7 @@ public static DeploymentExtended CreateOrUpdate(this IDeploymentsOperations oper /// Get a deployment. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to get. The name is case insensitive. @@ -158,7 +158,7 @@ public static DeploymentExtended Get(this IDeploymentsOperations operations, str /// Get a deployment. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to get. The name is case insensitive. @@ -179,7 +179,7 @@ public static DeploymentExtended Get(this IDeploymentsOperations operations, str /// Get a list of deployments. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to filter by. The name is case insensitive. @@ -190,7 +190,7 @@ public static DeploymentExtended Get(this IDeploymentsOperations operations, str /// <param name='top'> /// Query parameters. If null is passed returns all deployments. /// </param> - public static DeploymentListResult List(this IDeploymentsOperations operations, string resourceGroupName, Expression<Func<DeploymentExtendedFilter, bool>> filter = default(Expression<Func<DeploymentExtendedFilter, bool>>), int? top = default(int?)) + public static Page<DeploymentExtended> List(this IDeploymentsOperations operations, string resourceGroupName, Expression<Func<DeploymentExtendedFilter, bool>> filter = default(Expression<Func<DeploymentExtendedFilter, bool>>), int? top = default(int?)) { return Task.Factory.StartNew(s => ((IDeploymentsOperations)s).ListAsync(resourceGroupName, filter, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -199,7 +199,7 @@ public static DeploymentExtended Get(this IDeploymentsOperations operations, str /// Get a list of deployments. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to filter by. The name is case insensitive. @@ -213,9 +213,9 @@ public static DeploymentExtended Get(this IDeploymentsOperations operations, str /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<DeploymentListResult> ListAsync( this IDeploymentsOperations operations, string resourceGroupName, Expression<Func<DeploymentExtendedFilter, bool>> filter = default(Expression<Func<DeploymentExtendedFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<DeploymentExtended>> ListAsync( this IDeploymentsOperations operations, string resourceGroupName, Expression<Func<DeploymentExtendedFilter, bool>> filter = default(Expression<Func<DeploymentExtendedFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<DeploymentListResult> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, filter, top, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<DeploymentExtended>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, filter, top, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -223,31 +223,31 @@ public static DeploymentExtended Get(this IDeploymentsOperations operations, str /// Get a list of deployments. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static DeploymentListResult ListNext(this IDeploymentsOperations operations, string nextLink) + public static Page<DeploymentExtended> ListNext(this IDeploymentsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IDeploymentsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IDeploymentsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Get a list of deployments. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<DeploymentListResult> ListNextAsync( this IDeploymentsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<DeploymentExtended>> ListNextAsync( this IDeploymentsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<DeploymentListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<DeploymentExtended>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs index d013a3781c847..1deafa6573385 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs @@ -13,6 +13,7 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -36,10 +37,9 @@ public partial class FeatureClient : ServiceClient<FeatureClient>, IFeatureClien public JsonSerializerSettings DeserializationSettings { get; private set; } /// <summary> - /// Subscription credentials which uniquely identify Microsoft Azure - /// subscription. + /// Management credentials for Azure. /// </summary> - public SubscriptionCloudCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// <summary> /// Gets subscription credentials which uniquely identify Microsoft @@ -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> @@ -118,13 +123,13 @@ public FeatureClient(Uri baseUri, params DelegatingHandler[] handlers) : this(ha /// Initializes a new instance of the FeatureClient class. /// </summary> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public FeatureClient(SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public FeatureClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -140,13 +145,13 @@ public FeatureClient(SubscriptionCloudCredentials credentials, params Delegating /// Optional. The base URI of the service. /// </param> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public FeatureClient(Uri baseUri, SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public FeatureClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -168,10 +173,7 @@ private void Initialize() this.Features = new FeaturesOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2014-08-01-preview"; - if (this.Credentials != null) - { - this.Credentials.InitializeServiceClient(this); - } + this.AcceptLanguage = "en-US"; SerializationSettings = new JsonSerializerSettings { Formatting = Formatting.Indented, diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs index 541694c752a62..718d0231f501b 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -42,7 +43,7 @@ internal FeaturesOperations(FeatureClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<FeatureOperationsListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<FeatureResult>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -82,11 +83,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); } } @@ -125,14 +139,18 @@ internal FeaturesOperations(FeatureClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<FeatureOperationsListResult>(); + var result = new AzureOperationResponse<Page<FeatureResult>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<FeatureOperationsListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<FeatureResult>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -153,7 +171,7 @@ internal FeaturesOperations(FeatureClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<FeatureOperationsListResult>> ListWithHttpMessagesAsync(string resourceProviderNamespace, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<FeatureResult>>> ListWithHttpMessagesAsync(string resourceProviderNamespace, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceProviderNamespace == null) { @@ -199,11 +217,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); } } @@ -242,14 +273,18 @@ internal FeaturesOperations(FeatureClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<FeatureOperationsListResult>(); + var result = new AzureOperationResponse<Page<FeatureResult>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<FeatureOperationsListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<FeatureResult>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -325,11 +360,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); } } @@ -371,6 +419,10 @@ internal FeaturesOperations(FeatureClient client) var result = new AzureOperationResponse<FeatureResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -451,11 +503,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); } } @@ -497,6 +562,10 @@ internal FeaturesOperations(FeatureClient client) var result = new AzureOperationResponse<FeatureResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -514,7 +583,7 @@ internal FeaturesOperations(FeatureClient client) /// Gets a list of previewed features for all the providers in the current /// subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -523,11 +592,11 @@ internal FeaturesOperations(FeatureClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<FeatureOperationsListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<FeatureResult>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -536,13 +605,13 @@ internal FeaturesOperations(FeatureClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAllNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -555,11 +624,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); } } @@ -598,14 +680,18 @@ internal FeaturesOperations(FeatureClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<FeatureOperationsListResult>(); + var result = new AzureOperationResponse<Page<FeatureResult>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<FeatureOperationsListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<FeatureResult>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -617,7 +703,7 @@ internal FeaturesOperations(FeatureClient client) /// <summary> /// Gets a list of previewed features of a resource provider. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -626,11 +712,11 @@ internal FeaturesOperations(FeatureClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<FeatureOperationsListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<FeatureResult>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -639,13 +725,13 @@ internal FeaturesOperations(FeatureClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -658,11 +744,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); } } @@ -701,14 +800,18 @@ internal FeaturesOperations(FeatureClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<FeatureOperationsListResult>(); + var result = new AzureOperationResponse<Page<FeatureResult>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<FeatureOperationsListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<FeatureResult>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs index a6128ed15747a..49df6cf328822 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs @@ -16,9 +16,9 @@ public static partial class FeaturesOperationsExtensions /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static FeatureOperationsListResult ListAll(this IFeaturesOperations operations) + public static Page<FeatureResult> ListAll(this IFeaturesOperations operations) { return Task.Factory.StartNew(s => ((IFeaturesOperations)s).ListAllAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -28,14 +28,14 @@ public static FeatureOperationsListResult ListAll(this IFeaturesOperations opera /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<FeatureOperationsListResult> ListAllAsync( this IFeaturesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<FeatureResult>> ListAllAsync( this IFeaturesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<FeatureOperationsListResult> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<FeatureResult>> result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -43,12 +43,12 @@ public static FeatureOperationsListResult ListAll(this IFeaturesOperations opera /// Gets a list of previewed features of a resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// The namespace of the resource provider. /// </param> - public static FeatureOperationsListResult List(this IFeaturesOperations operations, string resourceProviderNamespace) + public static Page<FeatureResult> List(this IFeaturesOperations operations, string resourceProviderNamespace) { return Task.Factory.StartNew(s => ((IFeaturesOperations)s).ListAsync(resourceProviderNamespace), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -57,7 +57,7 @@ public static FeatureOperationsListResult List(this IFeaturesOperations operatio /// Gets a list of previewed features of a resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// The namespace of the resource provider. @@ -65,9 +65,9 @@ public static FeatureOperationsListResult List(this IFeaturesOperations operatio /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<FeatureOperationsListResult> ListAsync( this IFeaturesOperations operations, string resourceProviderNamespace, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<FeatureResult>> ListAsync( this IFeaturesOperations operations, string resourceProviderNamespace, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<FeatureOperationsListResult> result = await operations.ListWithHttpMessagesAsync(resourceProviderNamespace, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<FeatureResult>> result = await operations.ListWithHttpMessagesAsync(resourceProviderNamespace, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -75,7 +75,7 @@ public static FeatureOperationsListResult List(this IFeaturesOperations operatio /// Get all features under the subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -92,7 +92,7 @@ public static FeatureResult Get(this IFeaturesOperations operations, string reso /// Get all features under the subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -113,7 +113,7 @@ public static FeatureResult Get(this IFeaturesOperations operations, string reso /// Registers for a previewed feature of a resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -130,7 +130,7 @@ public static FeatureResult Register(this IFeaturesOperations operations, string /// Registers for a previewed feature of a resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -152,14 +152,14 @@ public static FeatureResult Register(this IFeaturesOperations operations, string /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static FeatureOperationsListResult ListAllNext(this IFeaturesOperations operations, string nextLink) + public static Page<FeatureResult> ListAllNext(this IFeaturesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IFeaturesOperations)s).ListAllNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IFeaturesOperations)s).ListAllNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -167,17 +167,17 @@ public static FeatureOperationsListResult ListAllNext(this IFeaturesOperations o /// subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<FeatureOperationsListResult> ListAllNextAsync( this IFeaturesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<FeatureResult>> ListAllNextAsync( this IFeaturesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<FeatureOperationsListResult> result = await operations.ListAllNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<FeatureResult>> result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -185,31 +185,31 @@ public static FeatureOperationsListResult ListAllNext(this IFeaturesOperations o /// Gets a list of previewed features of a resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static FeatureOperationsListResult ListNext(this IFeaturesOperations operations, string nextLink) + public static Page<FeatureResult> ListNext(this IFeaturesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IFeaturesOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IFeaturesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets a list of previewed features of a resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<FeatureOperationsListResult> ListNextAsync( this IFeaturesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<FeatureResult>> ListNextAsync( this IFeaturesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<FeatureOperationsListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<FeatureResult>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs index ffe5ff3e18df0..e84c7e8ad0cef 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs @@ -5,9 +5,11 @@ 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; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -20,7 +22,45 @@ 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> + /// Management credentials for Azure. + /// </summary> + ServiceClientCredentials 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/IDeploymentOperationsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs index 44d5c9bf7f4c7..04658c5f9cc65 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -28,10 +29,10 @@ public partial interface IDeploymentOperationsOperations /// Operation Id. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<DeploymentOperation>> GetWithHttpMessagesAsync(string resourceGroupName, string deploymentName, string operationId, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -47,24 +48,24 @@ public partial interface IDeploymentOperationsOperations /// Query parameters. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<DeploymentOperationsListResult>> ListWithHttpMessagesAsync(string resourceGroupName, string deploymentName, int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<DeploymentOperation>>> ListWithHttpMessagesAsync(string resourceGroupName, string deploymentName, int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a list of deployments operations. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<DeploymentOperationsListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<DeploymentOperation>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs index b8bbc1e22bdf2..add56758c988d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -25,10 +26,10 @@ public partial interface IDeploymentsOperations /// The name of the deployment. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> CancelWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -44,10 +45,10 @@ public partial interface IDeploymentsOperations /// Deployment to validate. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<DeploymentValidateResult>> ValidateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -63,10 +64,10 @@ public partial interface IDeploymentsOperations /// Additional parameters supplied to the operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<DeploymentExtended>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -80,10 +81,10 @@ public partial interface IDeploymentsOperations /// The name of the deployment. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<DeploymentExtended>> GetWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -100,24 +101,24 @@ public partial interface IDeploymentsOperations /// Query parameters. If null is passed returns all deployments. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<DeploymentListResult>> ListWithHttpMessagesAsync(string resourceGroupName, Expression<Func<DeploymentExtendedFilter, bool>> filter = default(Expression<Func<DeploymentExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<DeploymentExtended>>> ListWithHttpMessagesAsync(string resourceGroupName, Expression<Func<DeploymentExtendedFilter, bool>> filter = default(Expression<Func<DeploymentExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get a list of deployments. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<DeploymentListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<DeploymentExtended>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs index b7193ffbe822e..fa34a7c83c558 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs @@ -5,7 +5,9 @@ namespace Microsoft.Azure.Management.Resources using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -18,7 +20,45 @@ 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> + /// Management credentials for Azure. + /// </summary> + ServiceClientCredentials 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/IFeaturesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs index b2d63097a4a41..a1117bd095128 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -18,12 +19,12 @@ public partial interface IFeaturesOperations /// current subscription. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<FeatureOperationsListResult>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<FeatureResult>>> ListAllWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a list of previewed features of a resource provider. /// </summary> @@ -31,12 +32,12 @@ public partial interface IFeaturesOperations /// The namespace of the resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<FeatureOperationsListResult>> ListWithHttpMessagesAsync(string resourceProviderNamespace, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<FeatureResult>>> ListWithHttpMessagesAsync(string resourceProviderNamespace, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get all features under the subscription. /// </summary> @@ -47,10 +48,10 @@ public partial interface IFeaturesOperations /// Previewed feature name in the resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<FeatureResult>> GetWithHttpMessagesAsync(string resourceProviderNamespace, string featureName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -63,38 +64,38 @@ public partial interface IFeaturesOperations /// Previewed feature name in the resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<FeatureResult>> RegisterWithHttpMessagesAsync(string resourceProviderNamespace, string featureName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a list of previewed features for all the providers in the /// current subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<FeatureOperationsListResult>> ListAllNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<FeatureResult>>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a list of previewed features of a resource provider. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<FeatureOperationsListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<FeatureResult>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs index 3854edb038646..7b0fd270b1db3 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -28,10 +29,10 @@ public partial interface IManagementLocksOperations /// The management lock parameters. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -60,10 +61,10 @@ public partial interface IManagementLocksOperations /// Create or update management lock parameters. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -89,10 +90,10 @@ public partial interface IManagementLocksOperations /// The name of lock. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -105,10 +106,10 @@ public partial interface IManagementLocksOperations /// The management lock parameters. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtSubscriptionLevelWithHttpMessagesAsync(string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -118,10 +119,10 @@ public partial interface IManagementLocksOperations /// The name of lock. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteAtSubscriptionLevelWithHttpMessagesAsync(string lockName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -131,10 +132,10 @@ public partial interface IManagementLocksOperations /// Name of the management lock. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ManagementLockObject>> GetWithHttpMessagesAsync(string lockName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -147,10 +148,10 @@ public partial interface IManagementLocksOperations /// The name of lock. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroup, string lockName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -163,12 +164,12 @@ public partial interface IManagementLocksOperations /// The filter to apply on the operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockListResult>> ListAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a resource or any level below /// resource. @@ -192,12 +193,12 @@ public partial interface IManagementLocksOperations /// The filter to apply on the operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockListResult>> ListAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get a list of management locks at resource level or below. /// </summary> @@ -205,12 +206,12 @@ public partial interface IManagementLocksOperations /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLockObject>>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a subscription. /// </summary> @@ -218,64 +219,64 @@ public partial interface IManagementLocksOperations /// The filter to apply on the operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockListResult>> ListAtSubscriptionLevelWithHttpMessagesAsync(Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtSubscriptionLevelWithHttpMessagesAsync(Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockListResult>> ListAtResourceGroupLevelNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceGroupLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a resource or any level below /// resource. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockListResult>> ListAtResourceLevelNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get a list of management locks at resource level or below. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockListResult>> ListNextNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLockObject>>> ListNextNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockListResult>> ListAtSubscriptionLevelNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtSubscriptionLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs index 2b2bf1ec097b3..d71d45eb25e6d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -22,10 +23,10 @@ public partial interface IProvidersOperations /// Namespace of the resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<Provider>> UnregisterWithHttpMessagesAsync(string resourceProviderNamespace, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -35,10 +36,10 @@ public partial interface IProvidersOperations /// Namespace of the resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<Provider>> RegisterWithHttpMessagesAsync(string resourceProviderNamespace, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -48,12 +49,12 @@ public partial interface IProvidersOperations /// Query parameters. If null is passed returns all deployments. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ProviderListResult>> ListWithHttpMessagesAsync(int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<Provider>>> ListWithHttpMessagesAsync(int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a resource provider. /// </summary> @@ -61,24 +62,24 @@ public partial interface IProvidersOperations /// Namespace of the resource provider. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<Provider>> GetWithHttpMessagesAsync(string resourceProviderNamespace, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a list of resource providers. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ProviderListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<Provider>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs index f977dedd73624..19eff215f8611 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -28,12 +29,12 @@ public partial interface IResourceGroupsOperations /// Query parameters. If null is passed returns all resource groups. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceListResult>> ListResourcesWithHttpMessagesAsync(string resourceGroupName, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<GenericResource>>> ListResourcesWithHttpMessagesAsync(string resourceGroupName, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Checks whether resource group exists. /// </summary> @@ -42,10 +43,10 @@ public partial interface IResourceGroupsOperations /// insensitive. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<bool?>> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -59,10 +60,10 @@ public partial interface IResourceGroupsOperations /// operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ResourceGroupExtended>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -75,10 +76,10 @@ public partial interface IResourceGroupsOperations /// insensitive. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -91,10 +92,10 @@ public partial interface IResourceGroupsOperations /// insensitive. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -105,10 +106,10 @@ public partial interface IResourceGroupsOperations /// insensitive. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ResourceGroupExtended>> GetWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -126,10 +127,10 @@ public partial interface IResourceGroupsOperations /// operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ResourceGroupExtended>> PatchWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -142,37 +143,37 @@ public partial interface IResourceGroupsOperations /// Query parameters. If null is passed returns all resource groups. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceGroupListResult>> ListWithHttpMessagesAsync(Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ResourceGroupExtended>>> ListWithHttpMessagesAsync(Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get all of the resources under a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceListResult>> ListResourcesNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<GenericResource>>> ListResourcesNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a collection of resource groups. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceGroupListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ResourceGroupExtended>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs index 7136b9f9d9b3e..4541c38d7ab57 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs @@ -5,9 +5,11 @@ 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; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -20,6 +22,44 @@ 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> + /// Management credentials for Azure. + /// </summary> + ServiceClientCredentials 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/IResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs index 65aff318373a5..5a4f68c0b73ff 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -24,10 +25,10 @@ public partial interface IResourceProviderOperationDetailsOperations /// <param name='apiVersion'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<ResourceProviderOperationDetailListResult>> ListWithHttpMessagesAsync(string resourceProviderNamespace, string apiVersion, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs index 5577e4fbc5719..91696d2c65ee0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -25,10 +26,10 @@ public partial interface IResourcesOperations /// move resources' parameters. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> MoveResourcesWithHttpMessagesAsync(string sourceResourceGroupName, ResourcesMoveInfo parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,12 +42,12 @@ public partial interface IResourcesOperations /// Query parameters. If null is passed returns all resource groups. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceListResult>> ListWithHttpMessagesAsync(Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<GenericResource>>> ListWithHttpMessagesAsync(Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Checks whether resource exists. /// </summary> @@ -68,10 +69,10 @@ public partial interface IResourcesOperations /// <param name='apiVersion'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<bool?>> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -95,10 +96,10 @@ public partial interface IResourcesOperations /// <param name='apiVersion'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -125,10 +126,10 @@ public partial interface IResourcesOperations /// Create or update resource parameters. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<GenericResource>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, GenericResource parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -152,24 +153,24 @@ public partial interface IResourcesOperations /// <param name='apiVersion'> /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<GenericResource>> GetWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get all of the resources under a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<GenericResource>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs index 4713e0493bb8d..3e7149542db7e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs @@ -5,7 +5,9 @@ namespace Microsoft.Azure.Subscriptions using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -18,9 +20,47 @@ 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> + /// Management credentials for Azure. + /// </summary> + ServiceClientCredentials 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/ISubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs index 5ba565a532e76..ad6a1ceb0e58c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Subscriptions using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -20,34 +21,34 @@ public partial interface ISubscriptionsOperations /// Id of the subscription. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<Subscription>> GetWithHttpMessagesAsync(string subscriptionId, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a list of the subscriptionIds. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<SubscriptionListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<Subscription>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a list of the subscriptionIds. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<SubscriptionListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<Subscription>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs index cc99bc06ed516..97f4b7a4f3fa4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs @@ -6,8 +6,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -25,10 +26,10 @@ public partial interface ITagsOperations /// The value of the tag. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteValueWithHttpMessagesAsync(string tagName, string tagValue, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -41,10 +42,10 @@ public partial interface ITagsOperations /// The value of the tag. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<TagValue>> CreateOrUpdateValueWithHttpMessagesAsync(string tagName, string tagValue, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -54,10 +55,10 @@ public partial interface ITagsOperations /// The name of the tag. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<TagDetails>> CreateOrUpdateWithHttpMessagesAsync(string tagName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -67,34 +68,34 @@ public partial interface ITagsOperations /// The name of the tag. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string tagName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get a list of subscription resource tags. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<TagsListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<TagDetails>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get a list of subscription resource tags. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<TagsListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<TagDetails>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs index 29a9547a1ff24..857187e2e15aa 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Subscriptions using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -17,24 +18,24 @@ public partial interface ITenantsOperations /// Gets a list of the tenantIds. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<TenantListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<TenantIdDescription>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a list of the tenantIds. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<TenantListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<TenantIdDescription>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs index 27febe92846d6..b27d009679665 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -109,11 +110,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); } } @@ -159,6 +173,10 @@ internal ManagementLocksOperations(AuthorizationClient client) var result = new AzureOperationResponse<ManagementLockObject>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -290,11 +308,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); } } @@ -340,6 +371,10 @@ internal ManagementLocksOperations(AuthorizationClient client) var result = new AzureOperationResponse<ManagementLockObject>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -462,11 +497,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); } } @@ -501,6 +549,10 @@ internal ManagementLocksOperations(AuthorizationClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -574,11 +626,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); } } @@ -624,6 +689,10 @@ internal ManagementLocksOperations(AuthorizationClient client) var result = new AzureOperationResponse<ManagementLockObject>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -701,11 +770,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); } } @@ -740,6 +822,10 @@ internal ManagementLocksOperations(AuthorizationClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -805,11 +891,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); } } @@ -851,6 +950,10 @@ internal ManagementLocksOperations(AuthorizationClient client) var result = new AzureOperationResponse<ManagementLockObject>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) { @@ -937,11 +1040,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); } } @@ -976,6 +1092,10 @@ internal ManagementLocksOperations(AuthorizationClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -998,7 +1118,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockListResult>> ListAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1049,11 +1169,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); } } @@ -1092,14 +1225,18 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockListResult>(); + var result = new AzureOperationResponse<Page<ManagementLockObject>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1135,7 +1272,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockListResult>> ListAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1210,11 +1347,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); } } @@ -1253,14 +1403,18 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockListResult>(); + var result = new AzureOperationResponse<Page<ManagementLockObject>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1281,7 +1435,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextLink == null) { @@ -1319,11 +1473,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); } } @@ -1362,14 +1529,18 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockListResult>(); + var result = new AzureOperationResponse<Page<ManagementLockObject>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1390,7 +1561,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockListResult>> ListAtSubscriptionLevelWithHttpMessagesAsync(Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtSubscriptionLevelWithHttpMessagesAsync(Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -1435,11 +1606,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); } } @@ -1478,14 +1662,18 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockListResult>(); + var result = new AzureOperationResponse<Page<ManagementLockObject>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1497,7 +1685,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <summary> /// Gets all the management locks of a resource group. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1506,11 +1694,11 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockListResult>> ListAtResourceGroupLevelNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceGroupLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1519,13 +1707,13 @@ internal ManagementLocksOperations(AuthorizationClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAtResourceGroupLevelNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1538,11 +1726,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); } } @@ -1581,14 +1782,18 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockListResult>(); + var result = new AzureOperationResponse<Page<ManagementLockObject>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1600,7 +1805,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <summary> /// Gets all the management locks of a resource or any level below resource. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1609,11 +1814,11 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockListResult>> ListAtResourceLevelNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1622,13 +1827,13 @@ internal ManagementLocksOperations(AuthorizationClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAtResourceLevelNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1641,11 +1846,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); } } @@ -1684,14 +1902,18 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockListResult>(); + var result = new AzureOperationResponse<Page<ManagementLockObject>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1703,7 +1925,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <summary> /// Get a list of management locks at resource level or below. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1712,11 +1934,11 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockListResult>> ListNextNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListNextNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1725,13 +1947,13 @@ internal ManagementLocksOperations(AuthorizationClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNextNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1744,11 +1966,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); } } @@ -1787,14 +2022,18 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockListResult>(); + var result = new AzureOperationResponse<Page<ManagementLockObject>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1806,7 +2045,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <summary> /// Gets all the management locks of a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1815,11 +2054,11 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockListResult>> ListAtSubscriptionLevelNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtSubscriptionLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1828,13 +2067,13 @@ internal ManagementLocksOperations(AuthorizationClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListAtSubscriptionLevelNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1847,11 +2086,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); } } @@ -1890,14 +2142,18 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockListResult>(); + var result = new AzureOperationResponse<Page<ManagementLockObject>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs index d921dc49c0268..b262f31e788e1 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class ManagementLocksOperationsExtensions /// Create or update a management lock at the resource group level. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The resource group name. @@ -36,7 +36,7 @@ public static ManagementLockObject CreateOrUpdateAtResourceGroupLevel(this IMana /// Create or update a management lock at the resource group level. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The resource group name. @@ -61,7 +61,7 @@ public static ManagementLockObject CreateOrUpdateAtResourceGroupLevel(this IMana /// below resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -94,7 +94,7 @@ public static ManagementLockObject CreateOrUpdateAtResourceLevel(this IManagemen /// below resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -130,7 +130,7 @@ public static ManagementLockObject CreateOrUpdateAtResourceLevel(this IManagemen /// Deletes the management lock of a resource or any level below resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -159,7 +159,7 @@ public static void DeleteAtResourceLevel(this IManagementLocksOperations operati /// Deletes the management lock of a resource or any level below resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -191,7 +191,7 @@ public static void DeleteAtResourceLevel(this IManagementLocksOperations operati /// Create or update a management lock at the subscription level. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='lockName'> /// The name of lock. @@ -208,7 +208,7 @@ public static ManagementLockObject CreateOrUpdateAtSubscriptionLevel(this IManag /// Create or update a management lock at the subscription level. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='lockName'> /// The name of lock. @@ -229,7 +229,7 @@ public static ManagementLockObject CreateOrUpdateAtSubscriptionLevel(this IManag /// Deletes the management lock of a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='lockName'> /// The name of lock. @@ -243,7 +243,7 @@ public static void DeleteAtSubscriptionLevel(this IManagementLocksOperations ope /// Deletes the management lock of a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='lockName'> /// The name of lock. @@ -260,7 +260,7 @@ public static void DeleteAtSubscriptionLevel(this IManagementLocksOperations ope /// Gets the management lock of a scope. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='lockName'> /// Name of the management lock. @@ -274,7 +274,7 @@ public static ManagementLockObject Get(this IManagementLocksOperations operation /// Gets the management lock of a scope. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='lockName'> /// Name of the management lock. @@ -292,7 +292,7 @@ public static ManagementLockObject Get(this IManagementLocksOperations operation /// Deletes the management lock of a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroup'> /// The resource group names. @@ -309,7 +309,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// Deletes the management lock of a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroup'> /// The resource group names. @@ -329,7 +329,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// Gets all the management locks of a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// Resource group name. @@ -337,7 +337,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='filter'> /// The filter to apply on the operation. /// </param> - public static ManagementLockListResult ListAtResourceGroupLevel(this IManagementLocksOperations operations, string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) + public static Page<ManagementLockObject> ListAtResourceGroupLevel(this IManagementLocksOperations operations, string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceGroupLevelAsync(resourceGroupName, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -346,7 +346,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// Gets all the management locks of a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// Resource group name. @@ -357,9 +357,9 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockListResult> ListAtResourceGroupLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLockObject>> ListAtResourceGroupLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockListResult> result = await operations.ListAtResourceGroupLevelWithHttpMessagesAsync(resourceGroupName, filter, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtResourceGroupLevelWithHttpMessagesAsync(resourceGroupName, filter, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -367,7 +367,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// Gets all the management locks of a resource or any level below resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -387,7 +387,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='filter'> /// The filter to apply on the operation. /// </param> - public static ManagementLockListResult ListAtResourceLevel(this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) + public static Page<ManagementLockObject> ListAtResourceLevel(this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceLevelAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -396,7 +396,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// Gets all the management locks of a resource or any level below resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -419,9 +419,9 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockListResult> ListAtResourceLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLockObject>> ListAtResourceLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockListResult> result = await operations.ListAtResourceLevelWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, filter, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtResourceLevelWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, filter, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -429,12 +429,12 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// Get a list of management locks at resource level or below. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='nextLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ManagementLockListResult ListNext(this IManagementLocksOperations operations, string nextLink) + public static Page<ManagementLockObject> ListNext(this IManagementLocksOperations operations, string nextLink) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -443,7 +443,7 @@ public static ManagementLockListResult ListNext(this IManagementLocksOperations /// Get a list of management locks at resource level or below. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='nextLink'> /// NextLink from the previous successful call to List operation. @@ -451,9 +451,9 @@ public static ManagementLockListResult ListNext(this IManagementLocksOperations /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockListResult> ListNextAsync( this IManagementLocksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLockObject>> ListNextAsync( this IManagementLocksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -461,12 +461,12 @@ public static ManagementLockListResult ListNext(this IManagementLocksOperations /// Gets all the management locks of a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='filter'> /// The filter to apply on the operation. /// </param> - public static ManagementLockListResult ListAtSubscriptionLevel(this IManagementLocksOperations operations, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) + public static Page<ManagementLockObject> ListAtSubscriptionLevel(this IManagementLocksOperations operations, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtSubscriptionLevelAsync(filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -475,7 +475,7 @@ public static ManagementLockListResult ListNext(this IManagementLocksOperations /// Gets all the management locks of a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='filter'> /// The filter to apply on the operation. @@ -483,9 +483,9 @@ public static ManagementLockListResult ListNext(this IManagementLocksOperations /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockListResult> ListAtSubscriptionLevelAsync( this IManagementLocksOperations operations, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLockObject>> ListAtSubscriptionLevelAsync( this IManagementLocksOperations operations, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockListResult> result = await operations.ListAtSubscriptionLevelWithHttpMessagesAsync(filter, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtSubscriptionLevelWithHttpMessagesAsync(filter, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -493,31 +493,31 @@ public static ManagementLockListResult ListNext(this IManagementLocksOperations /// Gets all the management locks of a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ManagementLockListResult ListAtResourceGroupLevelNext(this IManagementLocksOperations operations, string nextLink) + public static Page<ManagementLockObject> ListAtResourceGroupLevelNext(this IManagementLocksOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceGroupLevelNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceGroupLevelNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets all the management locks of a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockListResult> ListAtResourceGroupLevelNextAsync( this IManagementLocksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLockObject>> ListAtResourceGroupLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockListResult> result = await operations.ListAtResourceGroupLevelNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtResourceGroupLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -525,31 +525,31 @@ public static ManagementLockListResult ListAtResourceGroupLevelNext(this IManage /// Gets all the management locks of a resource or any level below resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ManagementLockListResult ListAtResourceLevelNext(this IManagementLocksOperations operations, string nextLink) + public static Page<ManagementLockObject> ListAtResourceLevelNext(this IManagementLocksOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceLevelNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceLevelNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets all the management locks of a resource or any level below resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockListResult> ListAtResourceLevelNextAsync( this IManagementLocksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLockObject>> ListAtResourceLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockListResult> result = await operations.ListAtResourceLevelNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtResourceLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -557,31 +557,31 @@ public static ManagementLockListResult ListAtResourceLevelNext(this IManagementL /// Get a list of management locks at resource level or below. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ManagementLockListResult ListNextNext(this IManagementLocksOperations operations, string nextLink) + public static Page<ManagementLockObject> ListNextNext(this IManagementLocksOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListNextNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListNextNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Get a list of management locks at resource level or below. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockListResult> ListNextNextAsync( this IManagementLocksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLockObject>> ListNextNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockListResult> result = await operations.ListNextNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListNextNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -589,31 +589,31 @@ public static ManagementLockListResult ListNextNext(this IManagementLocksOperati /// Gets all the management locks of a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ManagementLockListResult ListAtSubscriptionLevelNext(this IManagementLocksOperations operations, string nextLink) + public static Page<ManagementLockObject> ListAtSubscriptionLevelNext(this IManagementLocksOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtSubscriptionLevelNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtSubscriptionLevelNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets all the management locks of a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockListResult> ListAtSubscriptionLevelNextAsync( this IManagementLocksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLockObject>> ListAtSubscriptionLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockListResult> result = await operations.ListAtSubscriptionLevelNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtSubscriptionLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentMode.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentMode.cs index 89bfecc34552e..0ed3d7c4a216f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentMode.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentMode.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Resources.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for DeploymentMode + /// Defines values for DeploymentMode. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum DeploymentMode diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/LockLevel.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/LockLevel.cs index 2e314481aff38..def6f6399ad34 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/LockLevel.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/LockLevel.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Resources.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for LockLevel + /// Defines values for LockLevel. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum LockLevel diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs index 14d5059fe4982..307a45ced3b88 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -92,11 +93,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); } } @@ -138,6 +152,10 @@ internal ProvidersOperations(ResourceManagementClient client) var result = new AzureOperationResponse<Provider>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -209,11 +227,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); } } @@ -255,6 +286,10 @@ internal ProvidersOperations(ResourceManagementClient client) var result = new AzureOperationResponse<Provider>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -280,7 +315,7 @@ internal ProvidersOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ProviderListResult>> ListWithHttpMessagesAsync(int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<Provider>>> ListWithHttpMessagesAsync(int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -325,11 +360,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); } } @@ -368,14 +416,18 @@ internal ProvidersOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ProviderListResult>(); + var result = new AzureOperationResponse<Page<Provider>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ProviderListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<Provider>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -442,11 +494,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); } } @@ -488,6 +553,10 @@ internal ProvidersOperations(ResourceManagementClient client) var result = new AzureOperationResponse<Provider>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -504,7 +573,7 @@ internal ProvidersOperations(ResourceManagementClient client) /// <summary> /// Gets a list of resource providers. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -513,11 +582,11 @@ internal ProvidersOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ProviderListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<Provider>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -526,13 +595,13 @@ internal ProvidersOperations(ResourceManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -545,11 +614,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); } } @@ -588,14 +670,18 @@ internal ProvidersOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ProviderListResult>(); + var result = new AzureOperationResponse<Page<Provider>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ProviderListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<Provider>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs index 23c58b71da2b8..2f4b3cfc1826e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class ProvidersOperationsExtensions /// Unregisters provider from a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -30,7 +30,7 @@ public static Provider Unregister(this IProvidersOperations operations, string r /// Unregisters provider from a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -48,7 +48,7 @@ public static Provider Unregister(this IProvidersOperations operations, string r /// Registers provider to be used with a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -62,7 +62,7 @@ public static Provider Register(this IProvidersOperations operations, string res /// Registers provider to be used with a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -80,12 +80,12 @@ public static Provider Register(this IProvidersOperations operations, string res /// Gets a list of resource providers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='top'> /// Query parameters. If null is passed returns all deployments. /// </param> - public static ProviderListResult List(this IProvidersOperations operations, int? top = default(int?)) + public static Page<Provider> List(this IProvidersOperations operations, int? top = default(int?)) { return Task.Factory.StartNew(s => ((IProvidersOperations)s).ListAsync(top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -94,7 +94,7 @@ public static Provider Register(this IProvidersOperations operations, string res /// Gets a list of resource providers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='top'> /// Query parameters. If null is passed returns all deployments. @@ -102,9 +102,9 @@ public static Provider Register(this IProvidersOperations operations, string res /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ProviderListResult> ListAsync( this IProvidersOperations operations, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<Provider>> ListAsync( this IProvidersOperations operations, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ProviderListResult> result = await operations.ListWithHttpMessagesAsync(top, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<Provider>> result = await operations.ListWithHttpMessagesAsync(top, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -112,7 +112,7 @@ public static Provider Register(this IProvidersOperations operations, string res /// Gets a resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -126,7 +126,7 @@ public static Provider Get(this IProvidersOperations operations, string resource /// Gets a resource provider. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Namespace of the resource provider. @@ -144,31 +144,31 @@ public static Provider Get(this IProvidersOperations operations, string resource /// Gets a list of resource providers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ProviderListResult ListNext(this IProvidersOperations operations, string nextLink) + public static Page<Provider> ListNext(this IProvidersOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IProvidersOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IProvidersOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets a list of resource providers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ProviderListResult> ListNextAsync( this IProvidersOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<Provider>> ListNextAsync( this IProvidersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ProviderListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<Provider>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs index 00b5470c79d78..777ee57181aa2 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -52,7 +53,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceListResult>> ListResourcesWithHttpMessagesAsync(string resourceGroupName, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<GenericResource>>> ListResourcesWithHttpMessagesAsync(string resourceGroupName, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -108,11 +109,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); } } @@ -151,14 +165,18 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceListResult>(); + var result = new AzureOperationResponse<Page<GenericResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<GenericResource>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -225,11 +243,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); } } @@ -272,6 +303,10 @@ internal ResourceGroupsOperations(ResourceManagementClient client) result.Request = httpRequest; result.Response = httpResponse; result.Body = (statusCode == HttpStatusCode.NoContent); + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -346,11 +381,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); } } @@ -396,6 +444,10 @@ internal ResourceGroupsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<ResourceGroupExtended>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -423,10 +475,10 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// The name of the resource group to be deleted. The name is case insensitive. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -495,11 +547,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); } } @@ -534,6 +599,10 @@ internal ResourceGroupsOperations(ResourceManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -599,11 +668,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); } } @@ -645,6 +727,10 @@ internal ResourceGroupsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<ResourceGroupExtended>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -728,11 +814,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); } } @@ -778,6 +877,10 @@ internal ResourceGroupsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<ResourceGroupExtended>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -806,7 +909,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceGroupListResult>> ListWithHttpMessagesAsync(Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ResourceGroupExtended>>> ListWithHttpMessagesAsync(Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -856,11 +959,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); } } @@ -899,14 +1015,18 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceGroupListResult>(); + var result = new AzureOperationResponse<Page<ResourceGroupExtended>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceGroupListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ResourceGroupExtended>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -918,7 +1038,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <summary> /// Get all of the resources under a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -927,11 +1047,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceListResult>> ListResourcesNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<GenericResource>>> ListResourcesNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -940,13 +1060,13 @@ internal ResourceGroupsOperations(ResourceManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListResourcesNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -959,11 +1079,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); } } @@ -1002,14 +1135,18 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceListResult>(); + var result = new AzureOperationResponse<Page<GenericResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<GenericResource>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1021,7 +1158,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <summary> /// Gets a collection of resource groups. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1030,11 +1167,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceGroupListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ResourceGroupExtended>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1043,13 +1180,13 @@ internal ResourceGroupsOperations(ResourceManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1062,11 +1199,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); } } @@ -1105,14 +1255,18 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceGroupListResult>(); + var result = new AzureOperationResponse<Page<ResourceGroupExtended>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceGroupListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ResourceGroupExtended>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs index 7200752ff6586..02e28e788d31a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class ResourceGroupsOperationsExtensions /// Get all of the resources under a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// Query parameters. If null is passed returns all resource groups. @@ -27,7 +27,7 @@ public static partial class ResourceGroupsOperationsExtensions /// <param name='top'> /// Query parameters. If null is passed returns all resource groups. /// </param> - public static ResourceListResult ListResources(this IResourceGroupsOperations operations, string resourceGroupName, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?)) + public static Page<GenericResource> ListResources(this IResourceGroupsOperations operations, string resourceGroupName, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?)) { return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).ListResourcesAsync(resourceGroupName, filter, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -36,7 +36,7 @@ public static partial class ResourceGroupsOperationsExtensions /// Get all of the resources under a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// Query parameters. If null is passed returns all resource groups. @@ -50,9 +50,9 @@ public static partial class ResourceGroupsOperationsExtensions /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceListResult> ListResourcesAsync( this IResourceGroupsOperations operations, string resourceGroupName, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<GenericResource>> ListResourcesAsync( this IResourceGroupsOperations operations, string resourceGroupName, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceListResult> result = await operations.ListResourcesWithHttpMessagesAsync(resourceGroupName, filter, top, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<GenericResource>> result = await operations.ListResourcesWithHttpMessagesAsync(resourceGroupName, filter, top, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -60,7 +60,7 @@ public static partial class ResourceGroupsOperationsExtensions /// Checks whether resource group exists. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to check. The name is case insensitive. @@ -74,7 +74,7 @@ public static partial class ResourceGroupsOperationsExtensions /// Checks whether resource group exists. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to check. The name is case insensitive. @@ -92,7 +92,7 @@ public static partial class ResourceGroupsOperationsExtensions /// Create a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to be created or updated. @@ -110,7 +110,7 @@ public static ResourceGroupExtended CreateOrUpdate(this IResourceGroupsOperation /// Create a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to be created or updated. @@ -133,7 +133,7 @@ public static ResourceGroupExtended CreateOrUpdate(this IResourceGroupsOperation /// finished processing the request, call GetLongRunningOperationStatus. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to be deleted. The name is case insensitive. @@ -148,7 +148,7 @@ public static void Delete(this IResourceGroupsOperations operations, string reso /// finished processing the request, call GetLongRunningOperationStatus. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to be deleted. The name is case insensitive. @@ -166,7 +166,7 @@ public static void Delete(this IResourceGroupsOperations operations, string reso /// finished processing the request, call GetLongRunningOperationStatus. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to be deleted. The name is case insensitive. @@ -181,7 +181,7 @@ public static void BeginDelete(this IResourceGroupsOperations operations, string /// finished processing the request, call GetLongRunningOperationStatus. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to be deleted. The name is case insensitive. @@ -198,7 +198,7 @@ public static void BeginDelete(this IResourceGroupsOperations operations, string /// Get a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to get. The name is case insensitive. @@ -212,7 +212,7 @@ public static ResourceGroupExtended Get(this IResourceGroupsOperations operation /// Get a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to get. The name is case insensitive. @@ -233,7 +233,7 @@ public static ResourceGroupExtended Get(this IResourceGroupsOperations operation /// carried over. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to be created or updated. The name is case @@ -254,7 +254,7 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// carried over. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group to be created or updated. The name is case @@ -276,7 +276,7 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// Gets a collection of resource groups. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='filter'> /// The filter to apply on the operation. @@ -284,7 +284,7 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// <param name='top'> /// Query parameters. If null is passed returns all resource groups. /// </param> - public static ResourceGroupListResult List(this IResourceGroupsOperations operations, Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?)) + public static Page<ResourceGroupExtended> List(this IResourceGroupsOperations operations, Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?)) { return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).ListAsync(filter, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -293,7 +293,7 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// Gets a collection of resource groups. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='filter'> /// The filter to apply on the operation. @@ -304,9 +304,9 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceGroupListResult> ListAsync( this IResourceGroupsOperations operations, Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ResourceGroupExtended>> ListAsync( this IResourceGroupsOperations operations, Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceGroupListResult> result = await operations.ListWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ResourceGroupExtended>> result = await operations.ListWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -314,31 +314,31 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// Get all of the resources under a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ResourceListResult ListResourcesNext(this IResourceGroupsOperations operations, string nextLink) + public static Page<GenericResource> ListResourcesNext(this IResourceGroupsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).ListResourcesNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).ListResourcesNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Get all of the resources under a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceListResult> ListResourcesNextAsync( this IResourceGroupsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<GenericResource>> ListResourcesNextAsync( this IResourceGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceListResult> result = await operations.ListResourcesNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<GenericResource>> result = await operations.ListResourcesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -346,31 +346,31 @@ public static ResourceListResult ListResourcesNext(this IResourceGroupsOperation /// Gets a collection of resource groups. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ResourceGroupListResult ListNext(this IResourceGroupsOperations operations, string nextLink) + public static Page<ResourceGroupExtended> ListNext(this IResourceGroupsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets a collection of resource groups. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceGroupListResult> ListNextAsync( this IResourceGroupsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ResourceGroupExtended>> ListNextAsync( this IResourceGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceGroupListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ResourceGroupExtended>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs index e2f83015eed6f..d65070f6ab270 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs @@ -13,8 +13,9 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -38,10 +39,9 @@ public partial class ResourceManagementClient : ServiceClient<ResourceManagement public JsonSerializerSettings DeserializationSettings { get; private set; } /// <summary> - /// Subscription credentials which uniquely identify Microsoft Azure - /// subscription. + /// Management credentials for Azure. /// </summary> - public SubscriptionCloudCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// <summary> /// Gets subscription credentials which uniquely identify Microsoft @@ -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> @@ -132,13 +137,13 @@ public ResourceManagementClient(Uri baseUri, params DelegatingHandler[] handlers /// Initializes a new instance of the ResourceManagementClient class. /// </summary> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public ResourceManagementClient(SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public ResourceManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -154,13 +159,13 @@ public ResourceManagementClient(SubscriptionCloudCredentials credentials, params /// Optional. The base URI of the service. /// </param> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public ResourceManagementClient(Uri baseUri, SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public ResourceManagementClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -188,10 +193,7 @@ private void Initialize() this.Deployments = new DeploymentsOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2014-04-01-preview"; - if (this.Credentials != null) - { - this.Credentials.InitializeServiceClient(this); - } + this.AcceptLanguage = "en-US"; SerializationSettings = new JsonSerializerSettings { Formatting = Formatting.Indented, diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs index 8b058414d64ac..f85ba1ee258bf 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -95,11 +96,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); } } @@ -141,6 +155,10 @@ internal ResourceProviderOperationDetailsOperations(ResourceManagementClient cli var result = new AzureOperationResponse<ResourceProviderOperationDetailListResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs index 476f8b23f4f29..eeb12611f75a0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class ResourceProviderOperationDetailsOperationsExtensions /// Gets a list of resource providers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Resource identity. @@ -32,7 +32,7 @@ public static ResourceProviderOperationDetailListResult List(this IResourceProvi /// Gets a list of resource providers. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceProviderNamespace'> /// Resource identity. diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs index 7149edf87d6dd..c5550351dd852 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -100,11 +101,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); } } @@ -143,6 +157,10 @@ internal ResourcesOperations(ResourceManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -165,7 +183,7 @@ internal ResourcesOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceListResult>> ListWithHttpMessagesAsync(Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<GenericResource>>> ListWithHttpMessagesAsync(Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -215,11 +233,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); } } @@ -258,14 +289,18 @@ internal ResourcesOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceListResult>(); + var result = new AzureOperationResponse<Page<GenericResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<GenericResource>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -371,11 +406,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); } } @@ -418,6 +466,10 @@ internal ResourcesOperations(ResourceManagementClient client) result.Request = httpRequest; result.Response = httpResponse; result.Body = (statusCode == HttpStatusCode.NoContent); + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -522,11 +574,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); } } @@ -561,6 +626,10 @@ internal ResourcesOperations(ResourceManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -677,11 +746,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); } } @@ -727,6 +809,10 @@ internal ResourcesOperations(ResourceManagementClient client) var result = new AzureOperationResponse<GenericResource>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -843,11 +929,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); } } @@ -889,6 +988,10 @@ internal ResourcesOperations(ResourceManagementClient client) var result = new AzureOperationResponse<GenericResource>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) { @@ -911,7 +1014,7 @@ internal ResourcesOperations(ResourceManagementClient client) /// <summary> /// Get all of the resources under a subscription. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -920,11 +1023,11 @@ internal ResourcesOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<GenericResource>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -933,13 +1036,13 @@ internal ResourcesOperations(ResourceManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -952,11 +1055,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); } } @@ -995,14 +1111,18 @@ internal ResourcesOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceListResult>(); + var result = new AzureOperationResponse<Page<GenericResource>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<GenericResource>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs index 428a9ba10075e..f8d2bf8a8f887 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class ResourcesOperationsExtensions /// Move resources within or across subscriptions. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='sourceResourceGroupName'> /// Source resource group name. @@ -33,7 +33,7 @@ public static void MoveResources(this IResourcesOperations operations, string so /// Move resources within or across subscriptions. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='sourceResourceGroupName'> /// Source resource group name. @@ -53,7 +53,7 @@ public static void MoveResources(this IResourcesOperations operations, string so /// Get all of the resources under a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='filter'> /// The filter to apply on the operation. @@ -61,7 +61,7 @@ public static void MoveResources(this IResourcesOperations operations, string so /// <param name='top'> /// Query parameters. If null is passed returns all resource groups. /// </param> - public static ResourceListResult List(this IResourcesOperations operations, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?)) + public static Page<GenericResource> List(this IResourcesOperations operations, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?)) { return Task.Factory.StartNew(s => ((IResourcesOperations)s).ListAsync(filter, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -70,7 +70,7 @@ public static void MoveResources(this IResourcesOperations operations, string so /// Get all of the resources under a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='filter'> /// The filter to apply on the operation. @@ -81,9 +81,9 @@ public static void MoveResources(this IResourcesOperations operations, string so /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceListResult> ListAsync( this IResourcesOperations operations, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<GenericResource>> ListAsync( this IResourcesOperations operations, Expression<Func<GenericResourceFilter, bool>> filter = default(Expression<Func<GenericResourceFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceListResult> result = await operations.ListWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<GenericResource>> result = await operations.ListWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -91,7 +91,7 @@ public static void MoveResources(this IResourcesOperations operations, string so /// Checks whether resource exists. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -119,7 +119,7 @@ public static void MoveResources(this IResourcesOperations operations, string so /// Checks whether resource exists. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -151,7 +151,7 @@ public static void MoveResources(this IResourcesOperations operations, string so /// Delete resource and all of its resources. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -179,7 +179,7 @@ public static void Delete(this IResourcesOperations operations, string resourceG /// Delete resource and all of its resources. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -210,7 +210,7 @@ public static void Delete(this IResourcesOperations operations, string resourceG /// Create a resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -241,7 +241,7 @@ public static GenericResource CreateOrUpdate(this IResourcesOperations operation /// Create a resource. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -276,7 +276,7 @@ public static GenericResource CreateOrUpdate(this IResourcesOperations operation /// Returns a resource belonging to a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -304,7 +304,7 @@ public static GenericResource Get(this IResourcesOperations operations, string r /// Returns a resource belonging to a resource group. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. @@ -336,31 +336,31 @@ public static GenericResource Get(this IResourcesOperations operations, string r /// Get all of the resources under a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static ResourceListResult ListNext(this IResourcesOperations operations, string nextLink) + public static Page<GenericResource> ListNext(this IResourcesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IResourcesOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IResourcesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Get all of the resources under a subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceListResult> ListNextAsync( this IResourcesOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<GenericResource>> ListNextAsync( this IResourcesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<GenericResource>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs index 076825bb44840..4f446c0af0ca3 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs @@ -13,6 +13,7 @@ namespace Microsoft.Azure.Subscriptions using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -36,10 +37,9 @@ public partial class SubscriptionClient : ServiceClient<SubscriptionClient>, ISu public JsonSerializerSettings DeserializationSettings { get; private set; } /// <summary> - /// Subscription credentials which uniquely identify Microsoft Azure - /// subscription. + /// Management credentials for Azure. /// </summary> - public SubscriptionCloudCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// <summary> /// Gets subscription credentials which uniquely identify Microsoft @@ -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> @@ -120,13 +125,13 @@ public SubscriptionClient(Uri baseUri, params DelegatingHandler[] handlers) : th /// Initializes a new instance of the SubscriptionClient class. /// </summary> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public SubscriptionClient(SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public SubscriptionClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -142,13 +147,13 @@ public SubscriptionClient(SubscriptionCloudCredentials credentials, params Deleg /// Optional. The base URI of the service. /// </param> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public SubscriptionClient(Uri baseUri, SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public SubscriptionClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -171,10 +176,7 @@ private void Initialize() this.Tenants = new TenantsOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2014-04-01-preview"; - if (this.Credentials != null) - { - this.Credentials.InitializeServiceClient(this); - } + this.AcceptLanguage = "en-US"; SerializationSettings = new JsonSerializerSettings { Formatting = Formatting.Indented, diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs index bd946dbb03bdd..0228b7d344fd4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Subscriptions using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -85,11 +86,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); } } @@ -131,6 +145,10 @@ internal SubscriptionsOperations(SubscriptionClient client) var result = new AzureOperationResponse<Subscription>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -153,7 +171,7 @@ internal SubscriptionsOperations(SubscriptionClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<SubscriptionListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<Subscription>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -193,11 +211,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); } } @@ -236,14 +267,18 @@ internal SubscriptionsOperations(SubscriptionClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<SubscriptionListResult>(); + var result = new AzureOperationResponse<Page<Subscription>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<SubscriptionListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<Subscription>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -255,7 +290,7 @@ internal SubscriptionsOperations(SubscriptionClient client) /// <summary> /// Gets a list of the subscriptionIds. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -264,11 +299,11 @@ internal SubscriptionsOperations(SubscriptionClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<SubscriptionListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<Subscription>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -277,13 +312,13 @@ internal SubscriptionsOperations(SubscriptionClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -296,11 +331,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); } } @@ -339,14 +387,18 @@ internal SubscriptionsOperations(SubscriptionClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<SubscriptionListResult>(); + var result = new AzureOperationResponse<Page<Subscription>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<SubscriptionListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<Subscription>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs index 2a7f42d35db1b..5ea440463b7a5 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs @@ -15,7 +15,7 @@ public static partial class SubscriptionsOperationsExtensions /// Gets details about particular subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='subscriptionId'> /// Id of the subscription. @@ -29,7 +29,7 @@ public static Subscription Get(this ISubscriptionsOperations operations, string /// Gets details about particular subscription. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='subscriptionId'> /// Id of the subscription. @@ -47,9 +47,9 @@ public static Subscription Get(this ISubscriptionsOperations operations, string /// Gets a list of the subscriptionIds. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static SubscriptionListResult List(this ISubscriptionsOperations operations) + public static Page<Subscription> List(this ISubscriptionsOperations operations) { return Task.Factory.StartNew(s => ((ISubscriptionsOperations)s).ListAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -58,14 +58,14 @@ public static SubscriptionListResult List(this ISubscriptionsOperations operatio /// Gets a list of the subscriptionIds. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<SubscriptionListResult> ListAsync( this ISubscriptionsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<Subscription>> ListAsync( this ISubscriptionsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<SubscriptionListResult> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<Subscription>> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -73,31 +73,31 @@ public static SubscriptionListResult List(this ISubscriptionsOperations operatio /// Gets a list of the subscriptionIds. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static SubscriptionListResult ListNext(this ISubscriptionsOperations operations, string nextLink) + public static Page<Subscription> ListNext(this ISubscriptionsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ISubscriptionsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ISubscriptionsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets a list of the subscriptionIds. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<SubscriptionListResult> ListNextAsync( this ISubscriptionsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<Subscription>> ListNextAsync( this ISubscriptionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<SubscriptionListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<Subscription>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs index a4f2767bf5c79..57a9aa49f47e4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs @@ -11,8 +11,9 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; - using Microsoft.Azure.OData; + using System.Linq; using System.Linq.Expressions; + using Microsoft.Azure.OData; using Microsoft.Azure; using Models; @@ -101,11 +102,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); } } @@ -140,6 +154,10 @@ internal TagsOperations(ResourceManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -214,11 +232,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); } } @@ -260,6 +291,10 @@ internal TagsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<TagValue>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -337,11 +372,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); } } @@ -383,6 +431,10 @@ internal TagsOperations(ResourceManagementClient client) var result = new AzureOperationResponse<TagDetails>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { @@ -460,11 +512,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); } } @@ -499,6 +564,10 @@ internal TagsOperations(ResourceManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -515,7 +584,7 @@ internal TagsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<TagsListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<TagDetails>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -555,11 +624,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); } } @@ -598,14 +680,18 @@ internal TagsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<TagsListResult>(); + var result = new AzureOperationResponse<Page<TagDetails>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<TagsListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<TagDetails>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -617,7 +703,7 @@ internal TagsOperations(ResourceManagementClient client) /// <summary> /// Get a list of subscription resource tags. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -626,11 +712,11 @@ internal TagsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<TagsListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<TagDetails>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -639,13 +725,13 @@ internal TagsOperations(ResourceManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -658,11 +744,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); } } @@ -701,14 +800,18 @@ internal TagsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<TagsListResult>(); + var result = new AzureOperationResponse<Page<TagDetails>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<TagsListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<TagDetails>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs index ca60bbe0d7c72..31efcfc32d5dc 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs @@ -16,7 +16,7 @@ public static partial class TagsOperationsExtensions /// Delete a subscription resource tag value. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='tagName'> /// The name of the tag. @@ -33,7 +33,7 @@ public static void DeleteValue(this ITagsOperations operations, string tagName, /// Delete a subscription resource tag value. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='tagName'> /// The name of the tag. @@ -53,7 +53,7 @@ public static void DeleteValue(this ITagsOperations operations, string tagName, /// Create a subscription resource tag value. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='tagName'> /// The name of the tag. @@ -70,7 +70,7 @@ public static TagValue CreateOrUpdateValue(this ITagsOperations operations, stri /// Create a subscription resource tag value. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='tagName'> /// The name of the tag. @@ -91,7 +91,7 @@ public static TagValue CreateOrUpdateValue(this ITagsOperations operations, stri /// Create a subscription resource tag. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='tagName'> /// The name of the tag. @@ -105,7 +105,7 @@ public static TagDetails CreateOrUpdate(this ITagsOperations operations, string /// Create a subscription resource tag. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='tagName'> /// The name of the tag. @@ -123,7 +123,7 @@ public static TagDetails CreateOrUpdate(this ITagsOperations operations, string /// Delete a subscription resource tag. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='tagName'> /// The name of the tag. @@ -137,7 +137,7 @@ public static void Delete(this ITagsOperations operations, string tagName) /// Delete a subscription resource tag. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='tagName'> /// The name of the tag. @@ -154,9 +154,9 @@ public static void Delete(this ITagsOperations operations, string tagName) /// Get a list of subscription resource tags. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static TagsListResult List(this ITagsOperations operations) + public static Page<TagDetails> List(this ITagsOperations operations) { return Task.Factory.StartNew(s => ((ITagsOperations)s).ListAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -165,14 +165,14 @@ public static TagsListResult List(this ITagsOperations operations) /// Get a list of subscription resource tags. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<TagsListResult> ListAsync( this ITagsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<TagDetails>> ListAsync( this ITagsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<TagsListResult> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<TagDetails>> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -180,31 +180,31 @@ public static TagsListResult List(this ITagsOperations operations) /// Get a list of subscription resource tags. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static TagsListResult ListNext(this ITagsOperations operations, string nextLink) + public static Page<TagDetails> ListNext(this ITagsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ITagsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ITagsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Get a list of subscription resource tags. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<TagsListResult> ListNextAsync( this ITagsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<TagDetails>> ListNextAsync( this ITagsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<TagsListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<TagDetails>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs index 099fa526b179e..18bca03f619eb 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Subscriptions using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -41,7 +42,7 @@ internal TenantsOperations(SubscriptionClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<TenantListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<TenantIdDescription>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -81,11 +82,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); } } @@ -124,14 +138,18 @@ internal TenantsOperations(SubscriptionClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<TenantListResult>(); + var result = new AzureOperationResponse<Page<TenantIdDescription>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<TenantListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<TenantIdDescription>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -143,7 +161,7 @@ internal TenantsOperations(SubscriptionClient client) /// <summary> /// Gets a list of the tenantIds. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -152,11 +170,11 @@ internal TenantsOperations(SubscriptionClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<TenantListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<TenantIdDescription>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -165,13 +183,13 @@ internal TenantsOperations(SubscriptionClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -184,11 +202,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); } } @@ -227,14 +258,18 @@ internal TenantsOperations(SubscriptionClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<TenantListResult>(); + var result = new AzureOperationResponse<Page<TenantIdDescription>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<TenantListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<TenantIdDescription>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs index c2695fca7f44e..4b0a4cd42c49b 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs @@ -15,9 +15,9 @@ public static partial class TenantsOperationsExtensions /// Gets a list of the tenantIds. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static TenantListResult List(this ITenantsOperations operations) + public static Page<TenantIdDescription> List(this ITenantsOperations operations) { return Task.Factory.StartNew(s => ((ITenantsOperations)s).ListAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -26,14 +26,14 @@ public static TenantListResult List(this ITenantsOperations operations) /// Gets a list of the tenantIds. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<TenantListResult> ListAsync( this ITenantsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<TenantIdDescription>> ListAsync( this ITenantsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<TenantListResult> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<TenantIdDescription>> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -41,31 +41,31 @@ public static TenantListResult List(this ITenantsOperations operations) /// Gets a list of the tenantIds. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static TenantListResult ListNext(this ITenantsOperations operations, string nextLink) + public static Page<TenantIdDescription> ListNext(this ITenantsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((ITenantsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ITenantsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> /// Gets a list of the tenantIds. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<TenantListResult> ListNextAsync( this ITenantsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<TenantIdDescription>> ListNextAsync( this ITenantsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<TenantListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<TenantIdDescription>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec index ad20907362a69..2a7d1b4847023 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec +++ b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec @@ -24,7 +24,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.12,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.13,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index 125ef7f3a60f9..ace4adf3b0838 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -24,6 +24,41 @@ <None Include="Microsoft.Azure.Management.Resources.nuget.proj" /> <None Include="packages.config" /> </ItemGroup> + + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'portable' "> + <ItemGroup> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'net45' "> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> diff --git a/src/ResourceManagement/Resource/ResourceManagement/packages.config b/src/ResourceManagement/Resource/ResourceManagement/packages.config index 3e47763a38835..ca8ae74a13c89 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/packages.config +++ b/src/ResourceManagement/Resource/ResourceManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <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="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.13" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/DeploymentTests.InMemory.cs b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/DeploymentTests.InMemory.cs index 61930febb8e29..094fa36ac384f 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/DeploymentTests.InMemory.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/DeploymentTests.InMemory.cs @@ -14,17 +14,16 @@ // using System; -using System.Linq; using System.Collections.Generic; -using Microsoft.Azure; -using Microsoft.Azure.Management.Resources; -using Xunit; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; -using System.Net.Http; +using System.Linq; using System.Net; +using System.Net.Http; +using Newtonsoft.Json.Linq; +using Xunit; +using Microsoft.Rest; +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; -using System.Runtime.Serialization.Formatters; + namespace ResourceGroups.Tests { @@ -33,7 +32,7 @@ public class InMemoryDeploymentTests public ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHandler handler) { var subscriptionId = Guid.NewGuid().ToString(); - var token = new TokenCloudCredentials(subscriptionId, "abc123"); + var token = new TokenCredentials(subscriptionId, "abc123"); handler.IsPassThrough = false; var client = new ResourceManagementClient(token, handler); client.SubscriptionId = subscriptionId; @@ -190,15 +189,15 @@ public void ListDeploymentOperationsReturnsMultipleObjects() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate response - Assert.Equal(1, result.Value.Count); - Assert.Equal("AEF2398", result.Value[0].OperationId); - Assert.Equal("/subscriptions/123abc/resourcegroups/foo/providers/ResourceProviderTestHost/TestResourceType/resource1", result.Value[0].Properties.TargetResource.Id); - Assert.Equal("mySite1", result.Value[0].Properties.TargetResource.ResourceName); - Assert.Equal("Microsoft.Web", result.Value[0].Properties.TargetResource.ResourceType); - Assert.Equal("Succeeded", result.Value[0].Properties.ProvisioningState); - Assert.Equal("InternalServerError", result.Value[0].Properties.StatusCode); - Assert.Equal("InternalServerError", result.Value[0].Properties.StatusMessage); - Assert.Equal("https://wa.com/subscriptions/mysubid/resourcegroups/TestRG/deployments/test-release-3/operations?$skiptoken=983fknw", result.NextLink); + Assert.Equal(1, result.Count()); + Assert.Equal("AEF2398", result.First().OperationId); + Assert.Equal("/subscriptions/123abc/resourcegroups/foo/providers/ResourceProviderTestHost/TestResourceType/resource1", result.First().Properties.TargetResource.Id); + Assert.Equal("mySite1", result.First().Properties.TargetResource.ResourceName); + Assert.Equal("Microsoft.Web", result.First().Properties.TargetResource.ResourceType); + Assert.Equal("Succeeded", result.First().Properties.ProvisioningState); + Assert.Equal("InternalServerError", result.First().Properties.StatusCode); + Assert.Equal("InternalServerError", result.First().Properties.StatusMessage); + Assert.Equal("https://wa.com/subscriptions/mysubid/resourcegroups/TestRG/deployments/test-release-3/operations?$skiptoken=983fknw", result.NextPageLink); } [Fact] @@ -223,7 +222,7 @@ public void ListDeploymentOperationsReturnsEmptyArray() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate response - Assert.Equal(0, result.Value.Count); + Assert.Equal(0, result.Count()); } [Fact] @@ -318,7 +317,7 @@ public void ListDeploymentOperationsWithRealPayloadReadsJsonInStatusMessage() Assert.Equal(HttpMethod.Get, handler.Method); Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); - Assert.True(JObject.Parse(result.Value[0].Properties.StatusMessage.ToString()).HasValues); + Assert.True(JObject.Parse(result.First().Properties.StatusMessage.ToString()).HasValues); } [Fact] @@ -370,7 +369,7 @@ public void ListDeploymentOperationsWorksWithNextLink() client = GetResourceManagementClient(handler); - result = client.DeploymentOperations.ListNext(result.NextLink); + result = client.DeploymentOperations.ListNext(result.NextPageLink); // Validate body Assert.Equal(HttpMethod.Get, handler.Method); @@ -378,8 +377,8 @@ public void ListDeploymentOperationsWorksWithNextLink() Assert.Equal("https://wa.com/subscriptions/mysubid/resourcegroups/TestRG/deployments/test-release-3/operations?$skiptoken=983fknw", handler.Uri.ToString()); // Validate response - Assert.Equal(0, result.Value.Count); - Assert.Equal(null, result.NextLink); + Assert.Equal(0, result.Count()); + Assert.Equal(null, result.NextPageLink); } [Fact] @@ -829,15 +828,15 @@ public void DeploymentTestsListAllValidateMessage() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate result - Assert.Equal("myrealease-3.14", result.Value[0].Name); - Assert.Equal("Succeeded", result.Value[0].Properties.ProvisioningState); - Assert.Equal(new DateTime(2014, 1, 5, 12, 30, 43), result.Value[0].Properties.Timestamp); - Assert.Equal(DeploymentMode.Incremental, result.Value[0].Properties.Mode); - Assert.Equal("http://wa/template.json", result.Value[0].Properties.TemplateLink.Uri.ToString()); - Assert.Equal("1.0.0.0", result.Value[0].Properties.TemplateLink.ContentVersion); - Assert.True(result.Value[0].Properties.Parameters.ToString().Contains("\"type\": \"string\"")); - Assert.True(result.Value[0].Properties.Outputs.ToString().Contains("\"type\": \"string\"")); - Assert.Equal("https://wa/subscriptions/subId/templateDeployments?$skiptoken=983fknw", result.NextLink.ToString()); + Assert.Equal("myrealease-3.14", result.First().Name); + Assert.Equal("Succeeded", result.First().Properties.ProvisioningState); + Assert.Equal(new DateTime(2014, 1, 5, 12, 30, 43), result.First().Properties.Timestamp); + Assert.Equal(DeploymentMode.Incremental, result.First().Properties.Mode); + Assert.Equal("http://wa/template.json", result.First().Properties.TemplateLink.Uri.ToString()); + Assert.Equal("1.0.0.0", result.First().Properties.TemplateLink.ContentVersion); + Assert.True(result.First().Properties.Parameters.ToString().Contains("\"type\": \"string\"")); + Assert.True(result.First().Properties.Outputs.ToString().Contains("\"type\": \"string\"")); + Assert.Equal("https://wa/subscriptions/subId/templateDeployments?$skiptoken=983fknw", result.NextPageLink); } [Fact] @@ -938,15 +937,15 @@ public void DeploymentTestsListValidateMessage() Assert.True(handler.Uri.ToString().Contains("$filter=provisioningState eq 'Succeeded'")); // Validate result - Assert.Equal("myrealease-3.14", result.Value[0].Name); - Assert.Equal("Succeeded", result.Value[0].Properties.ProvisioningState); - Assert.Equal(new DateTime(2014, 1, 5, 12, 30, 43), result.Value[0].Properties.Timestamp); - Assert.Equal(DeploymentMode.Incremental, result.Value[0].Properties.Mode); - Assert.Equal("http://wa/template.json", result.Value[0].Properties.TemplateLink.Uri.ToString()); - Assert.Equal("1.0.0.0", result.Value[0].Properties.TemplateLink.ContentVersion); - Assert.True(result.Value[0].Properties.Parameters.ToString().Contains("\"type\": \"string\"")); - Assert.True(result.Value[0].Properties.Outputs.ToString().Contains("\"type\": \"string\"")); - Assert.Equal("https://wa/subscriptions/subId/templateDeployments?$skiptoken=983fknw", result.NextLink.ToString()); + Assert.Equal("myrealease-3.14", result.First().Name); + Assert.Equal("Succeeded", result.First().Properties.ProvisioningState); + Assert.Equal(new DateTime(2014, 1, 5, 12, 30, 43), result.First().Properties.Timestamp); + Assert.Equal(DeploymentMode.Incremental, result.First().Properties.Mode); + Assert.Equal("http://wa/template.json", result.First().Properties.TemplateLink.Uri.ToString()); + Assert.Equal("1.0.0.0", result.First().Properties.TemplateLink.ContentVersion); + Assert.True(result.First().Properties.Parameters.ToString().Contains("\"type\": \"string\"")); + Assert.True(result.First().Properties.Outputs.ToString().Contains("\"type\": \"string\"")); + Assert.Equal("https://wa/subscriptions/subId/templateDeployments?$skiptoken=983fknw", result.NextPageLink); } [Fact] @@ -1048,15 +1047,15 @@ public void DeploymentTestsListForGroupValidateMessage() Assert.True(handler.Uri.ToString().Contains("resourcegroups/foo/deployments")); // Validate result - Assert.Equal("myrealease-3.14", result.Value[0].Name); - Assert.Equal("Succeeded", result.Value[0].Properties.ProvisioningState); - Assert.Equal(new DateTime(2014, 1, 5, 12, 30, 43), result.Value[0].Properties.Timestamp); - Assert.Equal(DeploymentMode.Incremental, result.Value[0].Properties.Mode); - Assert.Equal("http://wa/template.json", result.Value[0].Properties.TemplateLink.Uri.ToString()); - Assert.Equal("1.0.0.0", result.Value[0].Properties.TemplateLink.ContentVersion); - Assert.True(result.Value[0].Properties.Parameters.ToString().Contains("\"type\": \"string\"")); - Assert.True(result.Value[0].Properties.Outputs.ToString().Contains("\"type\": \"string\"")); - Assert.Equal("https://wa/subscriptions/subId/templateDeployments?$skiptoken=983fknw", result.NextLink.ToString()); + Assert.Equal("myrealease-3.14", result.First().Name); + Assert.Equal("Succeeded", result.First().Properties.ProvisioningState); + Assert.Equal(new DateTime(2014, 1, 5, 12, 30, 43), result.First().Properties.Timestamp); + Assert.Equal(DeploymentMode.Incremental, result.First().Properties.Mode); + Assert.Equal("http://wa/template.json", result.First().Properties.TemplateLink.Uri.ToString()); + Assert.Equal("1.0.0.0", result.First().Properties.TemplateLink.ContentVersion); + Assert.True(result.First().Properties.Parameters.ToString().Contains("\"type\": \"string\"")); + Assert.True(result.First().Properties.Outputs.ToString().Contains("\"type\": \"string\"")); + Assert.Equal("https://wa/subscriptions/subId/templateDeployments?$skiptoken=983fknw", result.NextPageLink); } [Fact] @@ -1070,7 +1069,7 @@ public void DeploymentTestListDoesNotThrowExceptions() var client = GetResourceManagementClient(handler); var result = client.Deployments.List("foo"); - Assert.Empty(result.Value); + Assert.Empty(result); } } } diff --git a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/FeatureTests.InMemory.cs b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/FeatureTests.InMemory.cs index 3f31dd70593ae..d89550a15eb5f 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/FeatureTests.InMemory.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/FeatureTests.InMemory.cs @@ -14,12 +14,12 @@ // using System; -using Microsoft.Azure; -using Microsoft.Azure.Management.Resources; -using Xunit; -using System.Net.Http; using System.Net; +using System.Net.Http; +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Rest; +using Xunit; namespace ResourceGroups.Tests @@ -29,7 +29,7 @@ public class InMemoryFeatureTests public FeatureClient GetFeatureClient(RecordedDelegatingHandler handler) { var subscriptionId = Guid.NewGuid().ToString(); - var token = new TokenCloudCredentials(subscriptionId, "abc123"); + var token = new TokenCredentials(subscriptionId, "abc123"); handler.IsPassThrough = false; var client = new FeatureClient(token, handler); client.SubscriptionId = subscriptionId; @@ -74,7 +74,7 @@ public void RegisterFeature() //Valid payload //Construct expected URL - string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.Credentials.SubscriptionId) + "/providers/Microsoft.Features/providers/" + Uri.EscapeDataString(resourceProviderNamespace) + "/features/" + Uri.EscapeDataString(featureName) + "/register?"; + string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.SubscriptionId) + "/providers/Microsoft.Features/providers/" + Uri.EscapeDataString(resourceProviderNamespace) + "/features/" + Uri.EscapeDataString(featureName) + "/register?"; expectedUrl = expectedUrl + "api-version=2014-08-01-preview"; string baseUrl = client.BaseUri.AbsoluteUri; // Trim '/' character from the end of baseUrl and beginning of url. @@ -132,7 +132,7 @@ public void GetPreviewedFeatures() //Valid payload //Construct expected URL - string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.Credentials.SubscriptionId) + "/providers/Microsoft.Features/providers/"+Uri.EscapeDataString(resourceProviderNamespace) + "/features/" + Uri.EscapeDataString(featureName) + "?"; + string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.SubscriptionId) + "/providers/Microsoft.Features/providers/"+Uri.EscapeDataString(resourceProviderNamespace) + "/features/" + Uri.EscapeDataString(featureName) + "?"; expectedUrl = expectedUrl + "api-version=2014-08-01-preview"; string baseUrl = client.BaseUri.AbsoluteUri; // Trim '/' character from the end of baseUrl and beginning of url. @@ -192,7 +192,7 @@ public void ListPreviewedFeatures() //Valid payload //Construct expected URL - string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.Credentials.SubscriptionId) + "/providers/Microsoft.Features/providers/" + Uri.EscapeDataString(resourceProviderNamespace) + "/features?"; + string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.SubscriptionId) + "/providers/Microsoft.Features/providers/" + Uri.EscapeDataString(resourceProviderNamespace) + "/features?"; expectedUrl = expectedUrl + "api-version=2014-08-01-preview"; string baseUrl = client.BaseUri.AbsoluteUri; // Trim '/' character from the end of baseUrl and beginning of url. @@ -248,7 +248,7 @@ public void ListAllPreviewedFeatures() //Valid payload //Construct expected URL - string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.Credentials.SubscriptionId) + "/providers/Microsoft.Features/features?"; + string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.SubscriptionId) + "/providers/Microsoft.Features/features?"; expectedUrl = expectedUrl + "api-version=2014-08-01-preview"; string baseUrl = client.BaseUri.AbsoluteUri; // Trim '/' character from the end of baseUrl and beginning of url. diff --git a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ProviderTests.InMemory.cs b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ProviderTests.InMemory.cs index 2a424f489672e..5b17f468186da 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ProviderTests.InMemory.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ProviderTests.InMemory.cs @@ -14,12 +14,12 @@ // using System; -using Microsoft.Azure; +using System.Linq; +using System.Net; +using System.Net.Http; using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Management.Resources.Models; +using Microsoft.Rest; using Xunit; -using System.Net.Http; -using System.Net; namespace ResourceGroups.Tests { @@ -28,7 +28,7 @@ public class InMemoryProviderTests public ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHandler handler) { var subscriptionId = Guid.NewGuid().ToString(); - var token = new TokenCloudCredentials(subscriptionId, "abc123"); + var token = new TokenCredentials(subscriptionId, "abc123"); handler.IsPassThrough = false; var client = new ResourceManagementClient(token, handler); client.SubscriptionId = subscriptionId; @@ -124,13 +124,13 @@ public void ProviderListValidateMessage() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate result - Assert.Equal(1, result.Value.Count); - Assert.Equal("Microsoft.Websites", result.Value[0].NamespaceProperty); - Assert.Equal("Registered", result.Value[0].RegistrationState); - Assert.Equal(2, result.Value[0].ResourceTypes.Count); - Assert.Equal("sites", result.Value[0].ResourceTypes[0].ResourceType); - Assert.Equal(1, result.Value[0].ResourceTypes[0].Locations.Count); - Assert.Equal("Central US", result.Value[0].ResourceTypes[0].Locations[0]); + Assert.Equal(1, result.Count()); + Assert.Equal("Microsoft.Websites", result.First().NamespaceProperty); + Assert.Equal("Registered", result.First().RegistrationState); + Assert.Equal(2, result.First().ResourceTypes.Count); + Assert.Equal("sites", result.First().ResourceTypes[0].ResourceType); + Assert.Equal(1, result.First().ResourceTypes[0].Locations.Count); + Assert.Equal("Central US", result.First().ResourceTypes[0].Locations[0]); } [Fact] diff --git a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceGroupTests.InMemory.cs b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceGroupTests.InMemory.cs index 716caaa75b22b..14632c4d80f9a 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceGroupTests.InMemory.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceGroupTests.InMemory.cs @@ -14,16 +14,17 @@ // using System; -using System.Linq; using System.Collections.Generic; -using System.Threading; +using System.Linq; +using System.Net; +using System.Net.Http; using Microsoft.Azure; using Microsoft.Azure.Management.Resources; -using Xunit; -using Newtonsoft.Json.Linq; -using System.Net.Http; -using System.Net; using Microsoft.Azure.Management.Resources.Models; +using Microsoft.Rest; +using Newtonsoft.Json.Linq; + +using Xunit; namespace ResourceGroups.Tests { @@ -32,7 +33,7 @@ public class InMemoryResourceGroupTests public ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHandler handler) { var subscriptionId = Guid.NewGuid().ToString(); - var token = new TokenCloudCredentials(subscriptionId, "abc123"); + var token = new TokenCredentials(subscriptionId, "abc123"); handler.IsPassThrough = false; var client = new ResourceManagementClient(token, handler); client.SubscriptionId = subscriptionId; @@ -291,11 +292,11 @@ public void ResourceGroupListAllValidateMessage() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate result - Assert.Equal(2, result.Value.Count); - Assert.Equal("myresourcegroup1", result.Value[0].Name); - Assert.Equal("Succeeded", result.Value[0].Properties.ProvisioningState); - Assert.Equal("/subscriptions/abc123/resourcegroups/csmrgr5mfggio", result.Value[0].Id); - Assert.Equal("https://wa/subscriptions/subId/resourcegroups?api-version=1.0&$skiptoken=662idk", result.NextLink.ToString()); + Assert.Equal(2, result.Count()); + Assert.Equal("myresourcegroup1", result.First().Name); + Assert.Equal("Succeeded", result.First().Properties.ProvisioningState); + Assert.Equal("/subscriptions/abc123/resourcegroups/csmrgr5mfggio", result.First().Id); + Assert.Equal("https://wa/subscriptions/subId/resourcegroups?api-version=1.0&$skiptoken=662idk", result.NextPageLink); } [Fact] @@ -316,7 +317,7 @@ public void ResourceGroupListAllWorksForEmptyLists() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate result - Assert.Equal(0, result.Value.Count); + Assert.Equal(0, result.Count()); } [Fact] @@ -351,9 +352,9 @@ public void ResourceGroupListValidateMessage() Assert.True(handler.Uri.ToString().Contains("$top=5")); // Validate result - Assert.Equal(2, result.Value.Count); - Assert.Equal("myresourcegroup1", result.Value[0].Name); - Assert.Equal("https://wa/subscriptions/subId/resourcegroups?api-version=1.0&$skiptoken=662idk", result.NextLink.ToString()); + Assert.Equal(2, result.Count()); + Assert.Equal("myresourcegroup1", result.First().Name); + Assert.Equal("https://wa/subscriptions/subId/resourcegroups?api-version=1.0&$skiptoken=662idk", result.NextPageLink); } [Fact] diff --git a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceTests.InMemory.cs b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceTests.InMemory.cs index 249b8ba893db0..e86290a5b643b 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceTests.InMemory.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceTests.InMemory.cs @@ -16,14 +16,14 @@ using System; using System.Collections.Generic; using System.Linq; -using Microsoft.Azure; +using System.Net; +using System.Net.Http; using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; -using Xunit; +using Microsoft.Rest; using Newtonsoft.Json.Linq; -using System.Net.Http; -using System.Net; -using Microsoft.Azure.Management.Resources.Models; +using Xunit; namespace ResourceGroups.Tests { @@ -32,7 +32,7 @@ public class InMemoryResourceTests public ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHandler handler) { var subscriptionId = Guid.NewGuid().ToString(); - var token = new TokenCloudCredentials(subscriptionId, "abc123"); + var token = new TokenCredentials(subscriptionId, "abc123"); var client = new ResourceManagementClient(token, handler); client.SubscriptionId = subscriptionId; handler.IsPassThrough = false; @@ -169,13 +169,13 @@ public void ResourceListValidateMessage() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate result - Assert.Equal(2, result.Value.Count()); - Assert.Equal("South Central US", result.Value[0].Location); - Assert.Equal("site1", result.Value[0].Name); - Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.Value[0].Id); - Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.Value[0].Id); - Assert.True(result.Value[0].Properties.ToString().Contains("Dedicated")); - Assert.Equal("Running", (result.Value[0].Properties as JObject)["provisioningState"]); + Assert.Equal(2, result.Count()); + Assert.Equal("South Central US", result.First().Location); + Assert.Equal("site1", result.First().Name); + Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.First().Id); + Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.First().Id); + Assert.True(result.First().Properties.ToString().Contains("Dedicated")); + Assert.Equal("Running", (result.First().Properties as JObject)["provisioningState"]); } [Fact] @@ -210,12 +210,12 @@ public void ResourceListForResourceGroupValidateMessage() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate result - Assert.Equal(2, result.Value.Count()); - Assert.Equal("South Central US", result.Value[0].Location); - Assert.Equal("site1", result.Value[0].Name); - Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.Value[0].Id); - Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.Value[0].Id); - Assert.Null(result.Value[0].Properties); + Assert.Equal(2, result.Count()); + Assert.Equal("South Central US", result.First().Location); + Assert.Equal("site1", result.First().Name); + Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.First().Id); + Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.First().Id); + Assert.Null(result.First().Properties); } [Fact] @@ -446,7 +446,7 @@ public void UriSupportsBaseUriWithPathTest() var handler = new RecordedDelegatingHandler(response) { StatusCodeToReturn = HttpStatusCode.NotFound }; handler.IsPassThrough = false; var randomValue = Guid.NewGuid().ToString(); - var token = new TokenCloudCredentials(randomValue, "abc123"); + var token = new TokenCredentials(randomValue, "abc123"); var client = new ResourceManagementClient(new Uri("https://localhost:123/test/"), token, handler); client.SubscriptionId = randomValue; var identity = new ResourceIdentity @@ -531,12 +531,12 @@ public void ResourcesMoveTest() var resourceToMove = new ResourcesMoveInfo(); resourceToMove.Resources = new List<string>(); - resourceToMove.TargetResourceGroup = "/subscriptions/" + Uri.EscapeDataString(client.Credentials.SubscriptionId) + "/resourceGroups/resourceGroup1"; + resourceToMove.TargetResourceGroup = "/subscriptions/" + Uri.EscapeDataString(client.SubscriptionId) + "/resourceGroups/resourceGroup1"; - var resource1 = "/subscriptions/" + Uri.EscapeDataString(client.Credentials.SubscriptionId) + "/resourceGroups/resourceGroup0/providers/Microsoft.Web/website/website1"; + var resource1 = "/subscriptions/" + Uri.EscapeDataString(client.SubscriptionId) + "/resourceGroups/resourceGroup0/providers/Microsoft.Web/website/website1"; resourceToMove.Resources.Add(resource1); - var resource2 = "/subscriptions/" + Uri.EscapeDataString(client.Credentials.SubscriptionId) + "/resourceGroups/resourceGroup0/providers/Microsoft.Compute/hostservice/vm1"; + var resource2 = "/subscriptions/" + Uri.EscapeDataString(client.SubscriptionId) + "/resourceGroups/resourceGroup0/providers/Microsoft.Compute/hostservice/vm1"; resourceToMove.Resources.Add(resource2); client.Resources.MoveResources("resourceGroup0", resourceToMove); @@ -547,7 +547,7 @@ public void ResourcesMoveTest() //Valid payload //Construct expected URL - string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.Credentials.SubscriptionId) + "/resourceGroups/resourceGroup0/moveResources?"; + string expectedUrl = "/subscriptions/" + Uri.EscapeDataString(client.SubscriptionId) + "/resourceGroups/resourceGroup0/moveResources?"; expectedUrl = expectedUrl + "api-version=2014-04-01-preview"; string baseUrl = client.BaseUri.AbsoluteUri; // Trim '/' character from the end of baseUrl and beginning of url. diff --git a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj index 6bc02ec8fe9c8..b5142b3a8e8b6 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj +++ b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj @@ -153,20 +153,32 @@ </None> </ItemGroup> <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> <Reference Include="Microsoft.Azure.Test.Framework, Version=2.0.5658.29898, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Azure.Test.HttpRecorder, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Azure.Test.HttpRecorder.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="xunit"> diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs index f363e6eaa59d3..1ccd64a0bcfc2 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs @@ -13,18 +13,16 @@ // limitations under the License. // +using System.Collections.Generic; using System.IO; +using System.Linq; +using System.Net; +using System.Runtime.Serialization.Formatters; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Runtime.Serialization.Formatters; -using System.Threading; using Xunit; namespace ResourceGroups.Tests @@ -131,17 +129,17 @@ public void CreateDeploymentAndValidateProperties() var deploymentListResult = client.Deployments.List(groupName, null); var deploymentGetResult = client.Deployments.Get(groupName, deploymentName); - Assert.NotEmpty(deploymentListResult.Value); + Assert.NotEmpty(deploymentListResult); Assert.Equal(deploymentName, deploymentGetResult.Name); - Assert.Equal(deploymentName, deploymentListResult.Value[0].Name); + Assert.Equal(deploymentName, deploymentListResult.First().Name); Assert.Equal(GoodWebsiteTemplateUri, deploymentGetResult.Properties.TemplateLink.Uri); - Assert.Equal(GoodWebsiteTemplateUri, deploymentListResult.Value[0].Properties.TemplateLink.Uri); + Assert.Equal(GoodWebsiteTemplateUri, deploymentListResult.First().Properties.TemplateLink.Uri); Assert.NotNull(deploymentGetResult.Properties.ProvisioningState); - Assert.NotNull(deploymentListResult.Value[0].Properties.ProvisioningState); + Assert.NotNull(deploymentListResult.First().Properties.ProvisioningState); Assert.NotNull(deploymentGetResult.Properties.CorrelationId); - Assert.NotNull(deploymentListResult.Value[0].Properties.CorrelationId); + Assert.NotNull(deploymentListResult.First().Properties.CorrelationId); Assert.True(deploymentGetResult.Properties.Parameters.ToString().Contains("mctest0101")); - Assert.True(deploymentListResult.Value[0].Properties.Parameters.ToString().Contains("mctest0101")); + Assert.True(deploymentListResult.First().Properties.Parameters.ToString().Contains("mctest0101")); } } @@ -307,10 +305,10 @@ public void CreateDummyDeploymentProducesOperations() TestUtilities.Wait(30000); var operations = client.DeploymentOperations.List(groupName, deploymentName, null); - Assert.True(operations.Value.Any()); - Assert.NotNull(operations.Value[0].Id); - Assert.NotNull(operations.Value[0].OperationId); - Assert.NotNull(operations.Value[0].Properties); + Assert.True(operations.Any()); + Assert.NotNull(operations.First().Id); + Assert.NotNull(operations.First().OperationId); + Assert.NotNull(operations.First().Properties); } } @@ -344,23 +342,23 @@ public void ListDeploymentsWorksWithFilter() client.Deployments.CreateOrUpdate(groupName, deploymentName, parameters); var deploymentListResult = client.Deployments.List(groupName, d => d.ProvisioningState == "Running"); - if (null == deploymentListResult.Value || deploymentListResult.Value.Count < 1) + if (null == deploymentListResult|| deploymentListResult.Count() == 0) { deploymentListResult = client.Deployments.List(groupName, d => d.ProvisioningState == "Accepted"); } var deploymentGetResult = client.Deployments.Get(groupName, deploymentName); - Assert.NotEmpty(deploymentListResult.Value); + Assert.NotEmpty(deploymentListResult); Assert.Equal(deploymentName, deploymentGetResult.Name); - Assert.Equal(deploymentName, deploymentListResult.Value[0].Name); + Assert.Equal(deploymentName, deploymentListResult.First().Name); Assert.Equal(GoodWebsiteTemplateUri, deploymentGetResult.Properties.TemplateLink.Uri); - Assert.Equal(GoodWebsiteTemplateUri, deploymentListResult.Value[0].Properties.TemplateLink.Uri); + Assert.Equal(GoodWebsiteTemplateUri, deploymentListResult.First().Properties.TemplateLink.Uri); Assert.NotNull(deploymentGetResult.Properties.ProvisioningState); - Assert.NotNull(deploymentListResult.Value[0].Properties.ProvisioningState); + Assert.NotNull(deploymentListResult.First().Properties.ProvisioningState); Assert.NotNull(deploymentGetResult.Properties.CorrelationId); - Assert.NotNull(deploymentListResult.Value[0].Properties.CorrelationId); + Assert.NotNull(deploymentListResult.First().Properties.CorrelationId); Assert.True(deploymentGetResult.Properties.Parameters.ToString().Contains("mctest0101")); - Assert.True(deploymentListResult.Value[0].Properties.Parameters.ToString().Contains("mctest0101")); + Assert.True(deploymentListResult.First().Properties.Parameters.ToString().Contains("mctest0101")); } } @@ -399,7 +397,7 @@ public void CreateLargeWebDeploymentTemplateWorks() TestUtilities.Wait(30000); var operations = client.DeploymentOperations.List(groupName, deploymentName, null); - Assert.True(operations.Value.Any()); + Assert.True(operations.Any()); } } } diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs index 15fdbde8f77c4..0d3782feda7eb 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs @@ -16,14 +16,13 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Net; +using System.Net.Http; using Microsoft.Azure; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; -using Xunit; -using System.Net.Http; -using System.Net; using Microsoft.Azure.Test; -using System.Threading; +using Xunit; namespace ResourceGroups.Tests { @@ -83,9 +82,9 @@ public void ProviderListValidateMessage() Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); // Validate result - Assert.True(result.Value.Any()); + Assert.True(result.Any()); var websiteProvider = - result.Value.First( + result.First( p => p.NamespaceProperty.Equals(ProviderName, StringComparison.InvariantCultureIgnoreCase)); Assert.Equal(ProviderName, websiteProvider.NamespaceProperty); Assert.True("Registered" == websiteProvider.RegistrationState || @@ -178,8 +177,8 @@ public void ProviderOperationsList() Assert.NotNull(operations); Assert.NotEmpty(operations.Value); - Assert.NotEmpty(operations.Value[0].Name); - Assert.NotNull(operations.Value[0].Display); + Assert.NotEmpty(operations.Value.First().Name); + Assert.NotNull(operations.Value.First().Display); IEnumerable<ResourceProviderOperationDefinition> definitions = operations.Value.Where(op => string.Equals(op.Name, "Microsoft.Insights/AlertRules/Write", StringComparison.InvariantCultureIgnoreCase)); Assert.NotNull(definitions); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs index 4be9fbc6a5bef..425bf50ce518f 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs @@ -21,9 +21,9 @@ using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; +using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.TransientFaultHandling; using Xunit; -using Microsoft.Azure.Test.HttpRecorder; namespace ResourceGroups.Tests { @@ -73,7 +73,7 @@ public void DeleteResourceGroupRemovesGroupResources() Assert.Throws<CloudException>(() => client.ResourceGroups.ListResources(resourceGroupName)); - Assert.False(listGroupsResult.Value.Any(rg => rg.Name == resourceGroupName)); + Assert.False(listGroupsResult.Any(rg => rg.Name == resourceGroupName)); TestUtilities.EndTest(); } @@ -92,7 +92,7 @@ public void CanCreateResourceGroup() Tags = new Dictionary<string, string>() { { "department", "finance" }, { "tagname", "tagvalue" } }, }); var listResult = client.ResourceGroups.List(); - var listedGroup = listResult.Value.FirstOrDefault((g) => string.Equals(g.Name, groupName, StringComparison.Ordinal)); + var listedGroup = listResult.FirstOrDefault((g) => string.Equals(g.Name, groupName, StringComparison.Ordinal)); Assert.NotNull(listedGroup); Assert.Equal("finance", listedGroup.Tags["department"]); Assert.Equal("tagvalue", listedGroup.Tags["tagname"]); @@ -145,7 +145,7 @@ public void DeleteResourceGroupRemovesGroup() var listResult = client.ResourceGroups.List(null); Assert.Equal(HttpStatusCode.OK, deleteResult.Response.StatusCode); - Assert.False(listResult.Value.Any(rg => rg.Name == resourceGroupName && rg.Properties.ProvisioningState != "Deleting")); + Assert.False(listResult.Any(rg => rg.Name == resourceGroupName && rg.Properties.ProvisioningState != "Deleting")); TestUtilities.EndTest(); } } diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs index 6df9d251f2fa8..36e148493e7d4 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs @@ -15,6 +15,7 @@ using System.Collections.Generic; using System.Net; +using System.Linq; using Microsoft.Azure; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; @@ -68,10 +69,10 @@ public void CleanupAllResources() client.SetRetryPolicy(new RetryPolicy<HttpStatusCodeErrorDetectionStrategy>(1)); var groups = client.ResourceGroups.List(); - foreach (var group in groups.Value) + foreach (var group in groups) { var resources = client.ResourceGroups.ListResources(group.Name, r => r.ResourceType == "Microsoft.Web/sites"); - foreach (var resource in resources.Value) + foreach (var resource in resources) { client.Resources.Delete(group.Name, CreateResourceIdentity(resource).ResourceProviderNamespace, @@ -169,19 +170,19 @@ public void CreatedResourceIsAvailableInList() var listResult = client.ResourceGroups.ListResources(groupName); - Assert.Equal(1, listResult.Value.Count); - Assert.Equal(resourceName, listResult.Value[0].Name); - Assert.Equal("Microsoft.Web/sites", listResult.Value[0].Type); - Assert.True(ResourcesManagementTestUtilities.LocationsAreEqual(websiteLocation, listResult.Value[0].Location), - string.Format("Resource list location for website '{0}' does not match expected location '{1}'", listResult.Value[0].Location, websiteLocation)); + Assert.Equal(1, listResult.Count()); + Assert.Equal(resourceName, listResult.First().Name); + Assert.Equal("Microsoft.Web/sites", listResult.First().Type); + Assert.True(ResourcesManagementTestUtilities.LocationsAreEqual(websiteLocation, listResult.First().Location), + string.Format("Resource list location for website '{0}' does not match expected location '{1}'", listResult.First().Location, websiteLocation)); listResult = client.ResourceGroups.ListResources(groupName, top: 10); - Assert.Equal(1, listResult.Value.Count); - Assert.Equal(resourceName, listResult.Value[0].Name); - Assert.Equal("Microsoft.Web/sites", listResult.Value[0].Type); - Assert.True(ResourcesManagementTestUtilities.LocationsAreEqual(websiteLocation, listResult.Value[0].Location), - string.Format("Resource list location for website '{0}' does not match expected location '{1}'", listResult.Value[0].Location, websiteLocation)); + Assert.Equal(1, listResult.Count()); + Assert.Equal(resourceName, listResult.First().Name); + Assert.Equal("Microsoft.Web/sites", listResult.First().Type); + Assert.True(ResourcesManagementTestUtilities.LocationsAreEqual(websiteLocation, listResult.First().Location), + string.Format("Resource list location for website '{0}' does not match expected location '{1}'", listResult.First().Location, websiteLocation)); } } @@ -232,8 +233,8 @@ public void CreatedResourceIsAvailableInListFilteredByTagName() var listResult = client.ResourceGroups.ListResources(groupName, r => r.Tagname == tagName); - Assert.Equal(1, listResult.Value.Count); - Assert.Equal(resourceName, listResult.Value[0].Name); + Assert.Equal(1, listResult.Count()); + Assert.Equal(resourceName, listResult.First().Name); var getResult = client.Resources.Get( groupName, @@ -299,8 +300,8 @@ public void CreatedResourceIsAvailableInListFilteredByTagNameAndValue() var listResult = client.ResourceGroups.ListResources(groupName, r => r.Tagname == tagName && r.Tagvalue == tagValue); - Assert.Equal(1, listResult.Value.Count); - Assert.Equal(resourceName, listResult.Value[0].Name); + Assert.Equal(1, listResult.Count()); + Assert.Equal(resourceName, listResult.First().Name); var getResult = client.Resources.Get( groupName, @@ -346,7 +347,7 @@ public void CreatedAndDeleteResource() var listResult = client.ResourceGroups.ListResources(groupName); - Assert.Equal(resourceName, listResult.Value[0].Name); + Assert.Equal(resourceName, listResult.First().Name); client.Resources.Delete( groupName, @@ -388,8 +389,8 @@ public void CreatedAndListResource() var listResult = client.Resources.List(r => r.ResourceType == "Microsoft.Web/sites"); - Assert.NotEmpty(listResult.Value); - Assert.Equal(2, listResult.Value[0].Tags.Count); + Assert.NotEmpty(listResult); + Assert.Equal(2, listResult.First().Tags.Count); } } } diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs index 4b18a441849b3..bac42adaa94f9 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs @@ -13,11 +13,12 @@ // limitations under the License. // +using System.Linq; +using System.Net; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Subscriptions; -using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Azure.Test; -using System.Net; +using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.TransientFaultHandling; using Xunit; @@ -63,11 +64,11 @@ public void ListSubscriptions() var subscriptions = client.Subscriptions.List(); Assert.NotNull(subscriptions); - Assert.NotEqual(0, subscriptions.Value.Count); - Assert.NotNull(subscriptions.Value[0].Id); - Assert.NotNull(subscriptions.Value[0].SubscriptionId); - Assert.NotNull(subscriptions.Value[0].DisplayName); - Assert.NotNull(subscriptions.Value[0].State); + Assert.NotEqual(0, subscriptions.Count()); + Assert.NotNull(subscriptions.First().Id); + Assert.NotNull(subscriptions.First().SubscriptionId); + Assert.NotNull(subscriptions.First().DisplayName); + Assert.NotNull(subscriptions.First().State); } } @@ -83,7 +84,7 @@ public void GetSubscriptionDetails() var rmclient = GetResourceManagementClient(handler); client.SetRetryPolicy(new RetryPolicy<HttpStatusCodeErrorDetectionStrategy>(1)); - var subscriptionDetails = client.Subscriptions.Get(rmclient.Credentials.SubscriptionId); + var subscriptionDetails = client.Subscriptions.Get(rmclient.SubscriptionId); Assert.NotNull(subscriptionDetails); Assert.NotNull(subscriptionDetails.Id); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs index c217e25b0d6c9..77012e5ab0bf4 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs @@ -13,12 +13,13 @@ // limitations under the License. // +using System.Linq; using System.Net; using Microsoft.Azure; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test; -using Xunit; using Microsoft.Azure.Test.HttpRecorder; +using Xunit; namespace ResourceGroups.Tests { @@ -55,7 +56,7 @@ public void CreateListAndDeleteSubscriptionTag() Assert.Equal(tagName, createResult.TagName); var listResult = client.Tags.List(); - Assert.True(listResult.Value.Count > 0); + Assert.True(listResult.Count() > 0); client.Tags.Delete(tagName); } @@ -81,7 +82,7 @@ public void CreateListAndDeleteSubscriptionTagValue() Assert.Equal(tagValue, createValueResult.TagValueProperty); var listResult = client.Tags.List(); - Assert.True(listResult.Value.Count > 0); + Assert.True(listResult.Count() > 0); client.Tags.DeleteValue(tagName, tagValue); client.Tags.Delete(tagName); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs index 53f836e843f48..49d29e4ab1db8 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs @@ -13,10 +13,11 @@ // limitations under the License. // +using System.Linq; +using System.Net; using Microsoft.Azure.Subscriptions; -using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Azure.Test; -using System.Net; +using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.TransientFaultHandling; using Xunit; @@ -54,9 +55,9 @@ public void ListTenants() Assert.NotNull(tenants); Assert.Equal(HttpStatusCode.OK, tenants.Response.StatusCode); Assert.NotNull(tenants.Body); - Assert.NotEqual(0, tenants.Body.Value.Count); - Assert.NotNull(tenants.Body.Value[0].Id); - Assert.NotNull(tenants.Body.Value[0].TenantId); + Assert.NotEqual(0, tenants.Body.Count()); + Assert.NotNull(tenants.Body.First().Id); + Assert.NotNull(tenants.Body.First().TenantId); } } } diff --git a/src/ResourceManagement/Storage/Storage.Tests/Helpers/StorageManagementTestUtilities.cs b/src/ResourceManagement/Storage/Storage.Tests/Helpers/StorageManagementTestUtilities.cs index 3252fcbf29508..ea7118221b079 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Helpers/StorageManagementTestUtilities.cs +++ b/src/ResourceManagement/Storage/Storage.Tests/Helpers/StorageManagementTestUtilities.cs @@ -19,6 +19,7 @@ using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; using Microsoft.Azure.Test; +using Microsoft.Rest; using ResourceGroups.Tests; using System; using System.Collections.Generic; @@ -33,7 +34,7 @@ namespace Storage.Tests.Helpers public static class StorageManagementTestUtilities { public static bool IsTestTenant = false; - private static SubscriptionCloudCredentials Creds = null; + private static TokenCredentials Creds = null; private static Uri testUri = null; // These are used to create default accounts @@ -82,7 +83,7 @@ public static StorageManagementClient GetStorageManagementClient(RecordedDelegat return storageClient; } - private static SubscriptionCloudCredentials GetCreds() + private static TokenCredentials GetCreds() { return Creds; } diff --git a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj index 682104d02e7a5..7bf8705c0581a 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj +++ b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj @@ -61,6 +61,18 @@ </ProjectReference> </ItemGroup> <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> <Reference Include="Microsoft.Azure.Test.Framework, Version=2.0.5658.29898, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> <Private>True</Private> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs b/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs index c682fe796821d..787e9c6a6ed75 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs +++ b/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs @@ -13,16 +13,16 @@ // limitations under the License. // +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; using Microsoft.Azure; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; using Microsoft.Azure.Test; using ResourceGroups.Tests; using Storage.Tests.Helpers; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; using Xunit; namespace Storage.Tests @@ -174,17 +174,17 @@ public void StorageAccountListByResourceGroupTest() var rgname = StorageManagementTestUtilities.CreateResourceGroup(resourcesClient); var listAccountsRequest = storageMgmtClient.StorageAccounts.ListByResourceGroup(rgname); - Assert.Empty(listAccountsRequest.Value); + Assert.Empty(listAccountsRequest); // Create storage accounts string accountName1 = StorageManagementTestUtilities.CreateStorageAccount(storageMgmtClient, rgname); string accountName2 = StorageManagementTestUtilities.CreateStorageAccount(storageMgmtClient, rgname); listAccountsRequest = storageMgmtClient.StorageAccounts.ListByResourceGroup(rgname); - Assert.Equal(2, listAccountsRequest.Value.Count); + Assert.Equal(2, listAccountsRequest.Count()); - StorageManagementTestUtilities.VerifyAccountProperties(listAccountsRequest.Value[0], true); - StorageManagementTestUtilities.VerifyAccountProperties(listAccountsRequest.Value[1], true); + StorageManagementTestUtilities.VerifyAccountProperties(listAccountsRequest.First(), true); + StorageManagementTestUtilities.VerifyAccountProperties(listAccountsRequest.ToArray()[1], true); } } @@ -211,11 +211,11 @@ public void StorageAccountListBySubscriptionTest() var listAccountsRequest = storageMgmtClient.StorageAccounts.List(); - StorageAccount account1 = listAccountsRequest.Value.First( + StorageAccount account1 = listAccountsRequest.First( t => StringComparer.OrdinalIgnoreCase.Equals(t.Name, accountName1)); StorageManagementTestUtilities.VerifyAccountProperties(account1, true); - StorageAccount account2 = listAccountsRequest.Value.First( + StorageAccount account2 = listAccountsRequest.First( t => StringComparer.OrdinalIgnoreCase.Equals(t.Name, accountName2)); StorageManagementTestUtilities.VerifyAccountProperties(account2, true); } diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs index b0ebb684c5c43..2e122da5f6e2f 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs @@ -6,6 +6,7 @@ namespace Microsoft.Azure.Management.Storage using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -22,10 +23,10 @@ public partial interface IStorageAccountsOperations /// in length and use numbers and lower-case letters only. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<CheckNameAvailabilityResult>> CheckNameAvailabilityWithHttpMessagesAsync(StorageAccountCheckNameAvailabilityParameters accountName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -47,10 +48,10 @@ public partial interface IStorageAccountsOperations /// The parameters to provide for the created account. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<StorageAccount>> CreateWithHttpMessagesAsync(string resourceGroupName, string accountName, StorageAccountCreateParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -72,10 +73,10 @@ public partial interface IStorageAccountsOperations /// The parameters to provide for the created account. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<StorageAccount>> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string accountName, StorageAccountCreateParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -90,10 +91,10 @@ public partial interface IStorageAccountsOperations /// in length and use numbers and lower-case letters only. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -111,10 +112,10 @@ public partial interface IStorageAccountsOperations /// in length and use numbers and lower-case letters only. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<StorageAccount>> GetPropertiesWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -142,10 +143,10 @@ public partial interface IStorageAccountsOperations /// property can be changed at a time using this API. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<StorageAccount>> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, StorageAccountUpdateParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -158,10 +159,10 @@ public partial interface IStorageAccountsOperations /// The name of the storage account. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<StorageAccountKeys>> ListKeysWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -170,12 +171,12 @@ public partial interface IStorageAccountsOperations /// operation for this. /// </summary> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<StorageAccountListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<StorageAccount>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Lists all the storage accounts available under the given resource /// group. Note that storage keys are not returned; use the ListKeys @@ -185,12 +186,12 @@ public partial interface IStorageAccountsOperations /// The name of the resource group within the user’s subscription. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<StorageAccountListResult>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<StorageAccount>>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Regenerates the access keys for the specified storage account. /// </summary> @@ -206,10 +207,10 @@ public partial interface IStorageAccountsOperations /// Specifies name of the key which should be regenerated. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> Task<AzureOperationResponse<StorageAccountKeys>> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string accountName, StorageAccountRegenerateKeyParameters regenerateKey, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> @@ -217,30 +218,30 @@ public partial interface IStorageAccountsOperations /// Note that storage keys are not returned; use the ListKeys /// operation for this. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<StorageAccountListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<StorageAccount>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Lists all the storage accounts available under the given resource /// group. Note that storage keys are not returned; use the ListKeys /// operation for this. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> - Task<AzureOperationResponse<StorageAccountListResult>> ListByResourceGroupNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<StorageAccount>>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs index 8c660cfefcd6a..c0591eb49bad8 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs @@ -5,7 +5,9 @@ namespace Microsoft.Azure.Management.Storage using System.Net.Http; using System.Threading; using System.Threading.Tasks; + using Newtonsoft.Json; using Microsoft.Rest; + using System.Linq; using Microsoft.Azure; using Models; @@ -18,7 +20,45 @@ 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> + /// Management credentials for Azure. + /// </summary> + ServiceClientCredentials 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/Models/AccountStatus.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountStatus.cs index e8b08a270f696..581ce409de768 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountStatus.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountStatus.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Storage.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for AccountStatus + /// Defines values for AccountStatus. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum AccountStatus diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountType.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountType.cs index 5c398b0d514e2..442f383c5ce6a 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountType.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountType.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Storage.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for AccountType + /// Defines values for AccountType. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum AccountType diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/KeyName.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/KeyName.cs index 457201db1aef5..7b679e830c81e 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/KeyName.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/KeyName.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Storage.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for KeyName + /// Defines values for KeyName. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum KeyName diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/ProvisioningState.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/ProvisioningState.cs index 729ffc3c67bea..71d692176f2ea 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/ProvisioningState.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/ProvisioningState.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Storage.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for ProvisioningState + /// Defines values for ProvisioningState. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum ProvisioningState diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Reason.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Reason.cs index a782ab14e9e68..ab9b38b2aab52 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Reason.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Reason.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Storage.Models using System.Runtime.Serialization; /// <summary> - /// Defines values for Reason + /// Defines values for Reason. /// </summary> [JsonConverter(typeof(StringEnumConverter))] public enum Reason diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs index 2428c5447b221..346c1eb722b3a 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Storage using System.Threading.Tasks; using Microsoft.Rest; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -91,11 +92,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); } } @@ -141,6 +155,10 @@ internal StorageAccountsOperations(StorageManagementClient client) var result = new AzureOperationResponse<CheckNameAvailabilityResult>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -173,10 +191,10 @@ internal StorageAccountsOperations(StorageManagementClient client) /// The parameters to provide for the created account. /// </param> /// <param name='customHeaders'> - /// Headers that will be added to request. + /// The headers that will be added to request. /// </param> /// <param name='cancellationToken'> - /// Cancellation token. + /// The cancellation token. /// </param> public async Task<AzureOperationResponse<StorageAccount>> CreateWithHttpMessagesAsync(string resourceGroupName, string accountName, StorageAccountCreateParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { @@ -273,11 +291,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); } } @@ -323,6 +354,10 @@ internal StorageAccountsOperations(StorageManagementClient client) var result = new AzureOperationResponse<StorageAccount>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -405,11 +440,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); } } @@ -444,6 +492,10 @@ internal StorageAccountsOperations(StorageManagementClient client) var result = new AzureOperationResponse(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (shouldTrace) { ServiceClientTracing.Exit(invocationId, result); @@ -522,11 +574,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); } } @@ -568,6 +633,10 @@ internal StorageAccountsOperations(StorageManagementClient client) var result = new AzureOperationResponse<StorageAccount>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -667,11 +736,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); } } @@ -717,6 +799,10 @@ internal StorageAccountsOperations(StorageManagementClient client) var result = new AzureOperationResponse<StorageAccount>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -797,11 +883,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); } } @@ -843,6 +942,10 @@ internal StorageAccountsOperations(StorageManagementClient client) var result = new AzureOperationResponse<StorageAccountKeys>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -866,7 +969,7 @@ internal StorageAccountsOperations(StorageManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<StorageAccountListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<StorageAccount>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -906,11 +1009,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); } } @@ -949,14 +1065,18 @@ internal StorageAccountsOperations(StorageManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<StorageAccountListResult>(); + var result = new AzureOperationResponse<Page<StorageAccount>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<StorageAccountListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<StorageAccount>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -979,7 +1099,7 @@ internal StorageAccountsOperations(StorageManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<StorageAccountListResult>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<StorageAccount>>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1025,11 +1145,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); } } @@ -1068,14 +1201,18 @@ internal StorageAccountsOperations(StorageManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<StorageAccountListResult>(); + var result = new AzureOperationResponse<Page<StorageAccount>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<StorageAccountListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<StorageAccount>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1161,11 +1298,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); } } @@ -1211,6 +1361,10 @@ internal StorageAccountsOperations(StorageManagementClient client) var result = new AzureOperationResponse<StorageAccountKeys>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { @@ -1228,7 +1382,7 @@ internal StorageAccountsOperations(StorageManagementClient client) /// Lists all the storage accounts available under the subscription. Note that /// storage keys are not returned; use the ListKeys operation for this. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1237,11 +1391,11 @@ internal StorageAccountsOperations(StorageManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<StorageAccountListResult>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<StorageAccount>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1250,13 +1404,13 @@ internal StorageAccountsOperations(StorageManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1269,11 +1423,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); } } @@ -1312,14 +1479,18 @@ internal StorageAccountsOperations(StorageManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<StorageAccountListResult>(); + var result = new AzureOperationResponse<Page<StorageAccount>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<StorageAccountListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<StorageAccount>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1333,7 +1504,7 @@ internal StorageAccountsOperations(StorageManagementClient client) /// Note that storage keys are not returned; use the ListKeys operation for /// this. /// </summary> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='customHeaders'> @@ -1342,11 +1513,11 @@ internal StorageAccountsOperations(StorageManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<StorageAccountListResult>> ListByResourceGroupNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<StorageAccount>>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextLink == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool shouldTrace = ServiceClientTracing.IsEnabled; @@ -1355,13 +1526,13 @@ internal StorageAccountsOperations(StorageManagementClient client) { invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); - tracingParameters.Add("nextLink", nextLink); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string url = "{nextLink}"; - url = url.Replace("{nextLink}", nextLink); + url = url.Replace("{nextLink}", nextPageLink); List<string> queryParameters = new List<string>(); if (queryParameters.Count > 0) { @@ -1374,11 +1545,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); } } @@ -1417,14 +1601,18 @@ internal StorageAccountsOperations(StorageManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<StorageAccountListResult>(); + var result = new AzureOperationResponse<Page<StorageAccount>>(); result.Request = httpRequest; result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<StorageAccountListResult>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<StorageAccount>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs index 30227d5bbe04a..462c269fb8b96 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs @@ -15,7 +15,7 @@ public static partial class StorageAccountsOperationsExtensions /// Checks that account name is valid and is not in use. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='accountName'> /// The name of the storage account within the specified resource group. @@ -31,7 +31,7 @@ public static CheckNameAvailabilityResult CheckNameAvailability(this IStorageAcc /// Checks that account name is valid and is not in use. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='accountName'> /// The name of the storage account within the specified resource group. @@ -55,7 +55,7 @@ public static CheckNameAvailabilityResult CheckNameAvailability(this IStorageAcc /// properties, then HTTP 200 would be returned. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -81,7 +81,7 @@ public static StorageAccount Create(this IStorageAccountsOperations operations, /// properties, then HTTP 200 would be returned. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -111,7 +111,7 @@ public static StorageAccount Create(this IStorageAccountsOperations operations, /// properties, then HTTP 200 would be returned. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -137,7 +137,7 @@ public static StorageAccount BeginCreate(this IStorageAccountsOperations operati /// properties, then HTTP 200 would be returned. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -163,7 +163,7 @@ public static StorageAccount BeginCreate(this IStorageAccountsOperations operati /// Deletes a storage account in Microsoft Azure. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -182,7 +182,7 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// Deletes a storage account in Microsoft Azure. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -206,7 +206,7 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// operation should be used to retrieve storage keys. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -227,7 +227,7 @@ public static StorageAccount GetProperties(this IStorageAccountsOperations opera /// operation should be used to retrieve storage keys. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -258,7 +258,7 @@ public static StorageAccount GetProperties(this IStorageAccountsOperations opera /// storage account cannot be changed after creation. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -289,7 +289,7 @@ public static StorageAccount Update(this IStorageAccountsOperations operations, /// storage account cannot be changed after creation. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -316,7 +316,7 @@ public static StorageAccount Update(this IStorageAccountsOperations operations, /// Lists the access keys for the specified storage account. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -333,7 +333,7 @@ public static StorageAccountKeys ListKeys(this IStorageAccountsOperations operat /// Lists the access keys for the specified storage account. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. @@ -355,9 +355,9 @@ public static StorageAccountKeys ListKeys(this IStorageAccountsOperations operat /// storage keys are not returned; use the ListKeys operation for this. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - public static StorageAccountListResult List(this IStorageAccountsOperations operations) + public static Page<StorageAccount> List(this IStorageAccountsOperations operations) { return Task.Factory.StartNew(s => ((IStorageAccountsOperations)s).ListAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -367,14 +367,14 @@ public static StorageAccountListResult List(this IStorageAccountsOperations oper /// storage keys are not returned; use the ListKeys operation for this. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<StorageAccountListResult> ListAsync( this IStorageAccountsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<StorageAccount>> ListAsync( this IStorageAccountsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<StorageAccountListResult> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<StorageAccount>> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -384,12 +384,12 @@ public static StorageAccountListResult List(this IStorageAccountsOperations oper /// this. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. /// </param> - public static StorageAccountListResult ListByResourceGroup(this IStorageAccountsOperations operations, string resourceGroupName) + public static Page<StorageAccount> ListByResourceGroup(this IStorageAccountsOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((IStorageAccountsOperations)s).ListByResourceGroupAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -400,7 +400,7 @@ public static StorageAccountListResult ListByResourceGroup(this IStorageAccounts /// this. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -408,9 +408,9 @@ public static StorageAccountListResult ListByResourceGroup(this IStorageAccounts /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<StorageAccountListResult> ListByResourceGroupAsync( this IStorageAccountsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<StorageAccount>> ListByResourceGroupAsync( this IStorageAccountsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<StorageAccountListResult> result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<StorageAccount>> result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -418,7 +418,7 @@ public static StorageAccountListResult ListByResourceGroup(this IStorageAccounts /// Regenerates the access keys for the specified storage account. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -440,7 +440,7 @@ public static StorageAccountKeys RegenerateKey(this IStorageAccountsOperations o /// Regenerates the access keys for the specified storage account. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group within the user’s subscription. @@ -467,14 +467,14 @@ public static StorageAccountKeys RegenerateKey(this IStorageAccountsOperations o /// storage keys are not returned; use the ListKeys operation for this. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static StorageAccountListResult ListNext(this IStorageAccountsOperations operations, string nextLink) + public static Page<StorageAccount> ListNext(this IStorageAccountsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IStorageAccountsOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IStorageAccountsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -482,17 +482,17 @@ public static StorageAccountListResult ListNext(this IStorageAccountsOperations /// storage keys are not returned; use the ListKeys operation for this. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<StorageAccountListResult> ListNextAsync( this IStorageAccountsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<StorageAccount>> ListNextAsync( this IStorageAccountsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<StorageAccountListResult> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<StorageAccount>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -502,14 +502,14 @@ public static StorageAccountListResult ListNext(this IStorageAccountsOperations /// this. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static StorageAccountListResult ListByResourceGroupNext(this IStorageAccountsOperations operations, string nextLink) + public static Page<StorageAccount> ListByResourceGroupNext(this IStorageAccountsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IStorageAccountsOperations)s).ListByResourceGroupNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IStorageAccountsOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// <summary> @@ -518,17 +518,17 @@ public static StorageAccountListResult ListByResourceGroupNext(this IStorageAcco /// this. /// </summary> /// <param name='operations'> - /// The operations group for this extension method + /// The operations group for this extension method. /// </param> - /// <param name='nextLink'> + /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<StorageAccountListResult> ListByResourceGroupNextAsync( this IStorageAccountsOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<StorageAccount>> ListByResourceGroupNextAsync( this IStorageAccountsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<StorageAccountListResult> result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<StorageAccount>> result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs index ab6c5a369ff29..0274ccac4ccb4 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs @@ -13,6 +13,7 @@ namespace Microsoft.Azure.Management.Storage using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Linq; using Microsoft.Azure; using Models; @@ -36,10 +37,9 @@ public partial class StorageManagementClient : ServiceClient<StorageManagementCl public JsonSerializerSettings DeserializationSettings { get; private set; } /// <summary> - /// Subscription credentials which uniquely identify Microsoft Azure - /// subscription. + /// Management credentials for Azure. /// </summary> - public SubscriptionCloudCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// <summary> /// Gets subscription credentials which uniquely identify Microsoft @@ -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> @@ -118,13 +123,13 @@ public StorageManagementClient(Uri baseUri, params DelegatingHandler[] handlers) /// Initializes a new instance of the StorageManagementClient class. /// </summary> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public StorageManagementClient(SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public StorageManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -140,13 +145,13 @@ public StorageManagementClient(SubscriptionCloudCredentials credentials, params /// Optional. The base URI of the service. /// </param> /// <param name='credentials'> - /// Required. Subscription credentials which uniquely identify Microsoft Azure subscription. + /// Required. Management credentials for Azure. /// </param> /// <param name='handlers'> /// Optional. The set of delegating handlers to insert in the http /// client pipeline. /// </param> - public StorageManagementClient(Uri baseUri, SubscriptionCloudCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public StorageManagementClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -168,10 +173,7 @@ private void Initialize() this.StorageAccounts = new StorageAccountsOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-05-01-preview"; - if (this.Credentials != null) - { - this.Credentials.InitializeServiceClient(this); - } + this.AcceptLanguage = "en-US"; SerializationSettings = new JsonSerializerSettings { Formatting = Formatting.Indented, diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj index a847ec7295863..bf53618bc2c8c 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj @@ -24,6 +24,39 @@ <SubType>Designer</SubType> </None> </ItemGroup> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'portable' "> + <ItemGroup> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'net45' "> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> diff --git a/tools/Library.Settings.targets b/tools/Library.Settings.targets index 970a00d98ee92..c1fdd1edaa8ef 100644 --- a/tools/Library.Settings.targets +++ b/tools/Library.Settings.targets @@ -23,7 +23,7 @@ <LibraryFxTarget Condition="'$(LibraryFxTarget)' == ''">net45</LibraryFxTarget> </PropertyGroup> - <Import Project="references.$(LibraryFxTarget).props" /> + <Import Project="references.$(LibraryFxTarget).props" Condition=" '$(AutoRestProjects)' != 'true' " /> <!-- Shared Project properties @@ -73,13 +73,16 @@ <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> - + <PropertyGroup Condition=" '$(LibraryFxTarget)' == 'portable' "> - <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> - <TargetFrameworkProfile>Profile102</TargetFrameworkProfile> + <TargetFrameworkVersion Condition=" '$(AutoRestProjects)' != 'true' ">v4.0</TargetFrameworkVersion> + <TargetFrameworkVersion Condition=" '$(AutoRestProjects)'== 'true' ">v4.5</TargetFrameworkVersion> + <TargetFrameworkProfile Condition=" '$(AutoRestProjects)' != 'true' ">Profile102</TargetFrameworkProfile> + <TargetFrameworkProfile Condition=" '$(AutoRestProjects)' == 'true' ">Profile111</TargetFrameworkProfile> <FileAlignment>512</FileAlignment> <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> </PropertyGroup> + <PropertyGroup Condition=" '$(LibraryFxTarget)' == 'net40' "> <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkProfile /> diff --git a/tools/references.net45.props b/tools/references.net45.props index db9a22f43aa15..de0c9ed7c1d9c 100644 --- a/tools/references.net45.props +++ b/tools/references.net45.props @@ -7,51 +7,28 @@ <Reference Include="System" /> <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> + <Reference Include="System.Core" /> + <Reference Include="System.Configuration" /> + <Reference Include="System.IO" /> + <Reference Include="System.Net" /> + <Reference Include="System.Net.Http.WebRequest" /> + <Reference Include="System.Web" /> + <Reference Include="System.Xml" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="Microsoft.Threading.Tasks"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Threading.Tasks.Extensions"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath> + </Reference> + <Reference Include="System.Net.Http.Extensions"> + <SpecificVersion>False</SpecificVersion> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Extensions.dll</HintPath> + </Reference> + <Reference Include="System.Net.Http.Primitives"> + <SpecificVersion>False</SpecificVersion> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Primitives.dll</HintPath> + </Reference> </ItemGroup> - - <!--Use the <Choose> so that VS project system can display correctly - in the solution explorer based on the condition--> - <Choose> - <When Condition=" '$(AutoRestProjects)' != 'true' "> - <ItemGroup> - <Reference Include="System.Core" /> - <Reference Include="System.Configuration" /> - <Reference Include="System.IO" /> - <Reference Include="System.Net" /> - <Reference Include="System.Net.Http.WebRequest" /> - <Reference Include="System.Web" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Xml.Linq" /> - <Reference Include="Microsoft.CSharp" /> - <Reference Include="Microsoft.Threading.Tasks"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Threading.Tasks.Extensions"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath> - </Reference> - <Reference Include="System.Net.Http.Extensions"> - <SpecificVersion>False</SpecificVersion> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Extensions.dll</HintPath> - </Reference> - <Reference Include="System.Net.Http.Primitives"> - <SpecificVersion>False</SpecificVersion> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Primitives.dll</HintPath> - </Reference> - </ItemGroup> - </When> - </Choose> - - <Choose> - <When Condition=" '$(AutoRestProjects)' == 'true' "> - <ItemGroup> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> - </When> - </Choose> - </Project> \ No newline at end of file diff --git a/tools/references.portable.props b/tools/references.portable.props index 40d3c145652de..3efa4897e8c89 100644 --- a/tools/references.portable.props +++ b/tools/references.portable.props @@ -29,20 +29,4 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Bcl.1.1.9\lib\portable-net40+sl5+win8+wp8+wpa81\System.Threading.Tasks.dll</HintPath> </Reference> </ItemGroup> - - <!--Use the <Choose> so that VS project system can display correctly - in the solution explorer based on the condition--> - <Choose> - <When Condition=" '$(AutoRestProjects)' == 'true' "> - <ItemGroup> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.0.3\lib\portable-net403+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.12\lib\portable-net403+win+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - </ItemGroup> - </When> - </Choose> - </Project> \ No newline at end of file From e4889fff8940be099bef6e33cc0277a8f2810f95 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Tue, 21 Jul 2015 16:00:30 -0700 Subject: [PATCH 06/34] Added Azure ClientRuntime Test framework. --- .../ClientRuntime.Azure.TestFramework.sln | 28 ++ .../NuGet.Config | 4 + .../Authentication/Subscription.cs | 120 +++++ .../Client/ISimpleClient.cs | 39 ++ .../TestFramework.Tests/Client/MockHandler.cs | 16 + .../Client/SimpleClient.cs | 95 ++++ ...ntRuntime.Azure.TestFramework.Tests.csproj | 118 +++++ .../HttpRecorder/FakeHttpClient.cs | 137 ++++++ .../HttpRecorder/HttpMockServerTests.cs | 394 +++++++++++++++ .../HttpRecorder/RecordEntryTest.cs | 33 ++ .../HttpRecorder/RecordedDelegatingHandler.cs | 95 ++++ .../TestRecordingWithTwoClients.json | 1 + .../SampleData/another-template.js | 102 ++++ .../SampleData/another-template0.js | 102 ++++ .../HttpRecorder/SampleData/test-template.js | 102 ++++ .../HttpRecorder/UtilitiesTests.cs | 28 ++ .../Properties/AssemblyInfo.cs | 16 + .../CsmTests.json | 55 +++ .../RdfeTestsWithAADAuth.json | 51 ++ ...RdfeTestsWithCertAuthBaseUriInDogfood.json | 46 ++ ...thCertAuthBaseuriEnvironmentInDogfood.json | 46 ++ .../RdfeTestsWithCertAuthBaseuriInProd.json | 49 ++ ...TestsWithCertAuthEnvironmentInDogfood.json | 46 ++ ...ionIdUsesValueFromTheConnectionString.json | 48 ++ ...ubscriptionIdUsesValueFromTheTestFile.json | 51 ++ .../TestFramework.Tests/packages.config | 13 + .../ClientRuntime.Azure.TestFramework.csproj | 85 ++++ .../TestFramework/ConnectionStringFields.cs | 102 ++++ .../TestFramework/CredManCache.cs | 461 ++++++++++++++++++ .../TestFramework/HttpRecorder/AssetNames.cs | 85 ++++ .../HttpRecorder/HttpMockServer.cs | 251 ++++++++++ .../HttpRecorder/HttpRecorderMode.cs | 29 ++ .../HttpRecorder/IRecordMatcher.cs | 27 + .../TestFramework/HttpRecorder/RecordEntry.cs | 80 +++ .../HttpRecorder/RecordEntryPack.cs | 29 ++ .../TestFramework/HttpRecorder/Records.cs | 112 +++++ .../HttpRecorder/SimpleRecordMatcher.cs | 68 +++ .../TestFramework/HttpRecorder/Utilities.cs | 176 +++++++ .../TestFramework/MSSharedLibKey.snk | Bin 0 -> 160 bytes ...ientRuntime.Azure.TestFramework.nuget.proj | 12 + ...t.ClientRuntime.Azure.TestFramework.nuspec | 26 + .../TestFramework/MockContext.cs | 82 ++++ .../TestFramework/Properties/AssemblyInfo.cs | 20 + .../Properties/Resources.Designer.cs | 63 +++ .../TestFramework/Properties/Resources.resx | 101 ++++ .../TestFramework/Set-CredentialCache.ps1 | 4 + .../TestFramework/SubscriptionInfo.cs | 31 ++ .../TestFramework/TestBase.cs | 120 +++++ .../TestFramework/TestEndpoints.cs | 56 +++ .../TestFramework/TestEnvironment.cs | 324 ++++++++++++ .../TestFramework/TestEnvironmentFactory.cs | 199 ++++++++ .../TestFramework/TestTraits.cs | 13 + .../TestFramework/TestUtilities.cs | 159 ++++++ .../TestingTracingInterceptor.cs | 67 +++ .../TestFramework/packages.config | 7 + 55 files changed, 4624 insertions(+) create mode 100644 src/ClientRuntime.Azure.TestFramework/ClientRuntime.Azure.TestFramework.sln create mode 100644 src/ClientRuntime.Azure.TestFramework/NuGet.Config create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Authentication/Subscription.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/ISimpleClient.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/MockHandler.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/SimpleClient.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/FakeHttpClient.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/HttpMockServerTests.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/RecordEntryTest.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/RecordedDelegatingHandler.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/TestRecordingWithTwoClients.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/another-template.js create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/another-template0.js create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/test-template.js create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/UtilitiesTests.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Properties/AssemblyInfo.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/CsmTests.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithAADAuth.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseUriInDogfood.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseuriEnvironmentInDogfood.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseuriInProd.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthEnvironmentInDogfood.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheConnectionString.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheTestFile.json create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/ConnectionStringFields.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/CredManCache.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/AssetNames.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpMockServer.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpRecorderMode.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/IRecordMatcher.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/RecordEntry.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/RecordEntryPack.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/Records.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/SimpleRecordMatcher.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/Utilities.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/MSSharedLibKey.snk create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/MockContext.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/Resources.Designer.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/Resources.resx create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/Set-CredentialCache.ps1 create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/SubscriptionInfo.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/TestBase.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/TestEndpoints.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/TestTraits.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/TestingTracingInterceptor.cs create mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config diff --git a/src/ClientRuntime.Azure.TestFramework/ClientRuntime.Azure.TestFramework.sln b/src/ClientRuntime.Azure.TestFramework/ClientRuntime.Azure.TestFramework.sln new file mode 100644 index 0000000000000..5d738913ab17a --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/ClientRuntime.Azure.TestFramework.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.31101.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientRuntime.Azure.TestFramework", "TestFramework\ClientRuntime.Azure.TestFramework.csproj", "{F144A258-3C38-447A-993E-967F74A1A76C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientRuntime.Azure.TestFramework.Tests", "TestFramework.Tests\ClientRuntime.Azure.TestFramework.Tests.csproj", "{87DE439E-2F37-4A45-B3BE-E33747FB9401}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Net45-Debug|Any CPU = Net45-Debug|Any CPU + Net45-Release|Any CPU = Net45-Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/ClientRuntime.Azure.TestFramework/NuGet.Config b/src/ClientRuntime.Azure.TestFramework/NuGet.Config new file mode 100644 index 0000000000000..edafa204a2dd4 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/NuGet.Config @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<settings> + <repositoryPath>..\..\packages</repositoryPath> +</settings> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Authentication/Subscription.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Authentication/Subscription.cs new file mode 100644 index 0000000000000..82659755d0aa2 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Authentication/Subscription.cs @@ -0,0 +1,120 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Linq; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client; +using System; +using System.Net; +using Xunit; +using Xunit.Extensions; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication +{ + public class Subscription : TestBase, IDisposable + { + private string TEST_CONNECTION_STRING; + private string AZURE_TEST_MODE; + private string TEST_ORGID_AUTHENTICATION; + private string TEST_CSM_ORGID_AUTHENTICATION; + + public Subscription() + { + TEST_CONNECTION_STRING = Environment.GetEnvironmentVariable("TEST_CONNECTION_STRING"); + AZURE_TEST_MODE = Environment.GetEnvironmentVariable("AZURE_TEST_MODE"); + TEST_ORGID_AUTHENTICATION = Environment.GetEnvironmentVariable("TEST_ORGID_AUTHENTICATION"); + TEST_CSM_ORGID_AUTHENTICATION = Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION"); + } + + [Theory] + [InlineData("Playback", "")] + [InlineData("Playback", "Environment=Prod")] + [InlineData("Playback", "Environment=Current")] + public void CsmTests(string mode, string envString) + { + Environment.SetEnvironmentVariable("TEST_CONNECTION_STRING", ""); + Environment.SetEnvironmentVariable("AZURE_TEST_MODE", mode); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", envString); + using (MockContext context = MockContext.Start()) + { + var client = TestBase.GetServiceClient<SimpleClient>(TestEnvironmentFactory.GetTestEnvironment()); + var response = client.CsmGetLocation(); + Assert.Equal(HttpStatusCode.OK, response.StatusCode); + } + } + + [Theory] + [InlineData("BaseUri=https://management-preview.core.windows-int.net;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a;Environment=Dogfood")] + [InlineData("GraphUri=https://management-preview.core.windows-int.net;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a;Environment=Dogfood")] + [InlineData("GalleryUri=https://management-preview.core.windows-int.net;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a;Environment=Dogfood")] + [InlineData("AADAuthEndpoint=https://management-preview.core.windows-int.net;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a;Environment=Dogfood")] + [InlineData("GalleryUri=http://foo;AADAuthEndpoint=https://management-preview.core.windows-int.net;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a;Environment=Dogfood")] + public void EnvironmentFactoryThrowsIfCsmConnectionStringHasEnvironmentAndEndpoints(string connection) + { + Environment.SetEnvironmentVariable("TEST_CONNECTION_STRING", ""); + Environment.SetEnvironmentVariable("TEST_ORGID_AUTHENTICATION", ""); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", connection); + Assert.Throws<ArgumentException>(() => TestEnvironmentFactory.GetTestEnvironment()); + } + + [Fact] + public void EnvironmentFactoryInCsmUsesBaseUriEndpointFromConnectionString() + { + HttpMockServer.Mode = HttpRecorderMode.Playback; + Environment.SetEnvironmentVariable("TEST_CONNECTION_STRING", ""); + Environment.SetEnvironmentVariable("TEST_ORGID_AUTHENTICATION", ""); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", "BaseUri=https://foo.net;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a;RawToken=123"); + var environment = TestEnvironmentFactory.GetTestEnvironment(); + Assert.Equal("https://foo.net/", environment.BaseUri.ToString()); + Assert.Equal(TestEnvironment.EnvEndpoints[EnvironmentNames.Prod].GalleryUri, environment.Endpoints.GalleryUri); + } + + [Fact] + public void EnvironmentFactoryInCsmUsesEndpointFromConnectionString() + { + HttpMockServer.Mode = HttpRecorderMode.Playback; + Environment.SetEnvironmentVariable("TEST_CONNECTION_STRING", ""); + Environment.SetEnvironmentVariable("TEST_ORGID_AUTHENTICATION", ""); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", "GraphUri=https://www.graph.net;BaseUri=https://foo.net;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a"); + var environment = TestEnvironmentFactory.GetTestEnvironment(); + Assert.Equal("https://foo.net/", environment.BaseUri.ToString()); + Assert.Equal(TestEnvironment.EnvEndpoints[EnvironmentNames.Prod].GalleryUri, environment.Endpoints.GalleryUri); + Assert.Equal("https://www.graph.net/", environment.Endpoints.GraphUri.ToString()); + } + + [Fact] + public void TestGetServiceClientWithoutHandlers() + { + HttpMockServer.Mode = HttpRecorderMode.Playback; + Environment.SetEnvironmentVariable("TEST_CONNECTION_STRING", ""); + Environment.SetEnvironmentVariable("TEST_ORGID_AUTHENTICATION", ""); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", "Environment=Next;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a;RawToken=abc"); + HttpMockServer.Initialize("Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription", "CsmTests.json"); + var client = TestBase.GetServiceClient<SimpleClient>(); + Assert.Equal(3, client.HttpMessageHandlers.Count()); + Assert.True(client.HttpMessageHandlers.First() is HttpMockServer); + } + + [Fact] + public void TestGetServiceClientWithHandlers() + { + HttpMockServer.Mode = HttpRecorderMode.Playback; + Environment.SetEnvironmentVariable("TEST_CONNECTION_STRING", ""); + Environment.SetEnvironmentVariable("TEST_ORGID_AUTHENTICATION", ""); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", "Environment=Next;SubscriptionId=ee39cb6d-d45b-4694-825a-f4d6f87ed72a;RawToken=abc"); + HttpMockServer.Initialize("Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription", "CsmTests.json"); + var client = TestBase.GetServiceClient<SimpleClient>(new MockHandler()); + Assert.Equal(4, client.HttpMessageHandlers.Count()); + Assert.True(client.HttpMessageHandlers.First() is MockHandler); + } + + public void Dispose() + { + Environment.SetEnvironmentVariable("TEST_CONNECTION_STRING", TEST_CONNECTION_STRING); + Environment.SetEnvironmentVariable("AZURE_TEST_MODE", AZURE_TEST_MODE); + Environment.SetEnvironmentVariable("TEST_ORGID_AUTHENTICATION", TEST_ORGID_AUTHENTICATION); + Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", TEST_CSM_ORGID_AUTHENTICATION); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/ISimpleClient.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/ISimpleClient.cs new file mode 100644 index 0000000000000..21ce983bd904d --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/ISimpleClient.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure; +using Microsoft.Rest; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client +{ + public partial interface ISimpleClient : IDisposable + { + /// <summary> + /// Gets the API version. + /// </summary> + string ApiVersion { get; } + + /// <summary> + /// Gets the URI used as the base for all cloud service requests. + /// </summary> + Uri BaseUri { get; } + + string SubscriptionId { get; set; } + + /// <summary> + /// Gets subscription credentials which uniquely identify Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// </summary> + ServiceClientCredentials Credentials { get; } + + /// <summary> + /// Gets or sets the retry timeout for Long Running Operations. + /// </summary> + int? LongRunningOperationRetryTimeout { get; set; } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/MockHandler.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/MockHandler.cs new file mode 100644 index 0000000000000..74ae8f883f763 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/MockHandler.cs @@ -0,0 +1,16 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Net.Http; +using System.Threading; +using Microsoft.Rest; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client +{ + public partial class MockHandler : DelegatingHandler + { + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/SimpleClient.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/SimpleClient.cs new file mode 100644 index 0000000000000..e181ad790dc87 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/SimpleClient.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Net.Http; +using System.Threading; +using Microsoft.Rest; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client +{ + public partial class SimpleClient : ServiceClient<SimpleClient>, ISimpleClient, IAzureClient + { + public SimpleClient(params DelegatingHandler[] handlers) : base(handlers) + { + + } + + public SimpleClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) + : this(handlers) + { + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + this.Credentials = credentials; + this.BaseUri = baseUri; + this.Credentials.InitializeServiceClient(this); + } + + public SimpleClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) + : this(handlers) + { + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.BaseUri = TestEnvironment.EnvEndpoints[EnvironmentNames.Prod].ResourceManagementUri; + this.Credentials = credentials; + this.Credentials.InitializeServiceClient(this); + } + + public string ApiVersion + { + get { throw new NotImplementedException(); } + } + + public Uri BaseUri { get; set; } + + public ServiceClientCredentials Credentials { get; set; } + + public string SubscriptionId { get; set; } + + public int? LongRunningOperationRetryTimeout { get; set; } + + public HttpResponseMessage CsmGetLocation() + { + var subscriptionId = this.SubscriptionId; + // Construct URL + string url = this.BaseUri.AbsoluteUri + "subscriptions/" + this.SubscriptionId + "/providers?api-version=2014-04-01-preview"; + + // Create HTTP transport objects + HttpRequestMessage httpRequest = null; + + httpRequest = new HttpRequestMessage(); + httpRequest.Method = HttpMethod.Get; + httpRequest.RequestUri = new Uri(url); + + // Set Headers + //httpRequest.Headers.Add("Authorization", string.Format("Bearer {0}", accessToken)); + + // Set Credentials + var cancellationToken = new CancellationToken(); + cancellationToken.ThrowIfCancellationRequested(); + this.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + return this.HttpClient.SendAsync(httpRequest, cancellationToken).Result; + } + + + public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings + { + get { throw new NotImplementedException(); } + } + + public Newtonsoft.Json.JsonSerializerSettings SerializationSettings + { + get { throw new NotImplementedException(); } + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj new file mode 100644 index 0000000000000..108f30c93a428 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <SDKTestProject>true</SDKTestProject> + <AutoRestProjects>true</AutoRestProjects> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <FileAlignment>512</FileAlignment> + <RestorePackages>true</RestorePackages> + <ProjectGuid>{87DE439E-2F37-4A45-B3BE-E33747FB9401}</ProjectGuid> + <RootNamespace>Microsoft.Rest.ClientRuntime.Azure.TestFramework.Tests</RootNamespace> + <AssemblyName>Microsoft.Rest.ClientRuntime.Azure.TestFramework.Tests</AssemblyName> + </PropertyGroup> + <Import Project="..\..\..\tools\Library.Settings.targets" /> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Net" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Net.Http.WebRequest" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.assert, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.core, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> + <Private>True</Private> + </Reference> + </ItemGroup> + <ItemGroup> + <Compile Include="Authentication\Subscription.cs" /> + <Compile Include="Client\ISimpleClient.cs" /> + <Compile Include="Client\MockHandler.cs" /> + <Compile Include="Client\SimpleClient.cs" /> + <Compile Include="HttpRecorder\FakeHttpClient.cs" /> + <Compile Include="HttpRecorder\HttpMockServerTests.cs" /> + <Compile Include="HttpRecorder\RecordedDelegatingHandler.cs" /> + <Compile Include="HttpRecorder\RecordEntryTest.cs" /> + <Compile Include="HttpRecorder\UtilitiesTests.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <None Include="HttpRecorder\SampleData\TestRecordingWithTwoClients.json" /> + <None Include="packages.config" /> + <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\CsmTests.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\RdfeTestsWithAADAuth.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\RdfeTestsWithCertAuthBaseuriEnvironmentInDogfood.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\RdfeTestsWithCertAuthBaseUriInDogfood.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\RdfeTestsWithCertAuthBaseuriInProd.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\RdfeTestsWithCertAuthEnvironmentInDogfood.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\TestsWithSubscriptionIdUsesValueFromTheConnectionString.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\TestsWithSubscriptionIdUsesValueFromTheTestFile.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + </ItemGroup> + <ItemGroup> + <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> + </ItemGroup> + <ItemGroup> + <Content Include="HttpRecorder\SampleData\another-template.js" /> + <Content Include="HttpRecorder\SampleData\another-template0.js" /> + <Content Include="HttpRecorder\SampleData\test-template.js" /> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\TestFramework\ClientRuntime.Azure.TestFramework.csproj"> + <Project>{f144a258-3c38-447a-993e-967f74a1a76c}</Project> + <Name>ClientRuntime.Azure.TestFramework</Name> + </ProjectReference> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <Import Project="$(LibraryNugetPackageFolder)\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> + <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" /> +</Project> \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/FakeHttpClient.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/FakeHttpClient.cs new file mode 100644 index 0000000000000..3bea54716be7b --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/FakeHttpClient.cs @@ -0,0 +1,137 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Rest; + +namespace HttpRecorder.Tests +{ + public class FakeHttpClient : ServiceClient<FakeHttpClient> + { + public FakeHttpClient(params DelegatingHandler[] handlers) + : base(handlers) + { + } + + public FakeHttpClient() + { + } + + public async Task<HttpResponseMessage> DoStuffA() + { + // Construct URL + string url = "http://www.microsoft.com/path/to/resourceA"; + + // Create HTTP transport objects + HttpRequestMessage httpRequest = null; + + httpRequest = new HttpRequestMessage(); + httpRequest.Method = HttpMethod.Get; + httpRequest.RequestUri = new Uri(url); + + // Set Headers + httpRequest.Headers.Add("x-ms-version", "2013-11-01"); + httpRequest.Headers.Authorization = new AuthenticationHeaderValue("Bearer", "abcdefg"); + + // Set Credentials + var cancellationToken = new CancellationToken(); + cancellationToken.ThrowIfCancellationRequested(); + return await HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + + public async Task<HttpResponseMessage> DoStuffB() + { + // Construct URL + string url = "http://www.microsoft.com/path/to/resourceB"; + + // Create HTTP transport objects + HttpRequestMessage httpRequest = null; + + httpRequest = new HttpRequestMessage(); + httpRequest.Method = HttpMethod.Get; + httpRequest.RequestUri = new Uri(url); + + // Set Headers + httpRequest.Headers.Add("x-ms-version", "2013-11-01"); + httpRequest.Headers.Authorization = new AuthenticationHeaderValue("Bearer", "xyz123"); + + // Set Credentials + var cancellationToken = new CancellationToken(); + cancellationToken.ThrowIfCancellationRequested(); + return await HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + + public async Task<HttpResponseMessage> DoStuffC(string body, string versionHeader, string versionUrl) + { + // Construct URL + string url = "http://www.microsoft.com/path/to/resourceB?api-version=" + versionUrl; + + // Create HTTP transport objects + HttpRequestMessage httpRequest = null; + + httpRequest = new HttpRequestMessage(); + httpRequest.Method = HttpMethod.Post; + httpRequest.RequestUri = new Uri(url); + httpRequest.Content = new StringContent(body); + + // Set Headers + httpRequest.Headers.Add("x-ms-version", versionHeader); + httpRequest.Headers.Authorization = new AuthenticationHeaderValue("Bearer", "xyz123"); + + // Set Credentials + var cancellationToken = new CancellationToken(); + cancellationToken.ThrowIfCancellationRequested(); + return await HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + + public async Task<HttpResponseMessage> DoStuffD(string contentType) + { + // Construct URL + string url = "http://www.microsoft.com/path/to/resourceB"; + + // Create HTTP transport objects + HttpRequestMessage httpRequest = null; + + httpRequest = new HttpRequestMessage(); + httpRequest.Method = HttpMethod.Post; + httpRequest.RequestUri = new Uri(url); + httpRequest.Content = new StringContent("test", Encoding.UTF8, contentType); + + // Set Headers + httpRequest.Headers.Add("x-ms-version", "2013-11-01"); + httpRequest.Headers.Authorization = new AuthenticationHeaderValue("Bearer", "xyz123"); + + // Set Credentials + var cancellationToken = new CancellationToken(); + cancellationToken.ThrowIfCancellationRequested(); + return await HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + + public async Task<HttpResponseMessage> DoStuffX(string assetName) + { + // Construct URL + string url = "http://www.microsoft.com/path/to/resource/" + assetName; + + // Create HTTP transport objects + HttpRequestMessage httpRequest = null; + + httpRequest = new HttpRequestMessage(); + httpRequest.Method = HttpMethod.Get; + httpRequest.RequestUri = new Uri(url); + + // Set Headers + httpRequest.Headers.Add("x-ms-version", "2013-11-01"); + httpRequest.Headers.Authorization = new AuthenticationHeaderValue("Bearer", "xyz123"); + + // Set Credentials + var cancellationToken = new CancellationToken(); + cancellationToken.ThrowIfCancellationRequested(); + return await HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/HttpMockServerTests.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/HttpMockServerTests.cs new file mode 100644 index 0000000000000..47ede0ef3be4d --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/HttpMockServerTests.cs @@ -0,0 +1,394 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.IO; +using System.Net; +using System.Net.Http; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; +using Newtonsoft.Json.Linq; +using Xunit; + +namespace HttpRecorder.Tests +{ + public class HttpMockServerTests : IDisposable + { + private string currentDir; + + public HttpMockServerTests() + { + currentDir = Environment.CurrentDirectory; + } + + private FakeHttpClient CreateClient() + { + return new FakeHttpClient(new DelegatingHandler[] { HttpMockServer.CreateInstance(), GetRecordingHandler() }); + } + + private DelegatingHandler GetRecordingHandler() + { + var recordingHandler = new RecordedDelegatingHandler(new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent("{'error':'message'}") + }); + recordingHandler.StatusCodeToReturn = HttpStatusCode.OK; + return recordingHandler; + } + + private FakeHttpClient CreateClientWithBadResult() + { + return new FakeHttpClient(new DelegatingHandler[] { HttpMockServer.CreateInstance(), GetRecordingHandlerWithBacdResponse() }); + } + + private DelegatingHandler GetRecordingHandlerWithBacdResponse() + { + var recordingHandlerWithBadResponse = new RecordedDelegatingHandler(new HttpResponseMessage(HttpStatusCode.Conflict)); + recordingHandlerWithBadResponse.StatusCodeToReturn = HttpStatusCode.Conflict; + return recordingHandlerWithBadResponse; + } + + [Fact] + public void TestRecordingWithOneClientWritesFile() + { + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client = CreateClient(); + var result = client.DoStuffA().Result; + + HttpMockServer.Flush(currentDir); + + Assert.True(File.Exists(Path.Combine(HttpMockServer.CallerIdentity, TestUtilities.GetCurrentMethodName(1) + ".json"))); + } + + [Fact] + public void TestRecordingWithVariablesStoresVariable() + { + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client = CreateClient(); + var result = client.DoStuffA().Result; + HttpMockServer.Variables["varA"] = "varA-value"; + + HttpMockServer.Flush(currentDir); + + HttpMockServer.Variables.Clear(); + + var recording = RecordEntryPack.Deserialize(Path.Combine(HttpMockServer.CallerIdentity, TestUtilities.GetCurrentMethodName(1) + ".json")); + + Assert.Equal("varA-value", recording.Variables["varA"]); + } + + [Fact] + public void TestRecordingWithVariablesStoresAndRetrieves() + { + HttpMockServer.RecordsDirectory = currentDir; + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client = CreateClient(); + var result = client.DoStuffA().Result; + HttpMockServer.Variables["varA"] = "varA-value"; + + HttpMockServer.Flush(currentDir); + + HttpMockServer.Variables.Clear(); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + + Assert.Equal("varA-value", HttpMockServer.Variables["varA"]); + } + + [Fact] + public void TestRecordingWithTwoClientsWritesFile() + { + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + FakeHttpClient client2 = CreateClient(); + var result1 = client1.DoStuffA().Result; + var result2 = client2.DoStuffA().Result; + + HttpMockServer.Flush(currentDir); + + Assert.True(File.Exists(Path.Combine(HttpMockServer.CallerIdentity, TestUtilities.GetCurrentMethodName(1) + ".json"))); + } + + [Fact] + public void TestPlaybackWithOneClient() + { + HttpMockServer.RecordsDirectory = currentDir; + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + var result1A = client1.DoStuffA().Result; + var result1B = client1.DoStuffB().Result; + string assetName1 = HttpMockServer.GetAssetName(TestUtilities.GetCurrentMethodName(1), "tst"); + string assetName2 = HttpMockServer.GetAssetName(TestUtilities.GetCurrentMethodName(1), "tst"); + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.None); + FakeHttpClient client2 = CreateClientWithBadResult(); + var result2 = client2.DoStuffA().Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + FakeHttpClient client3 = CreateClientWithBadResult(); + var result3B = client3.DoStuffB().Result; + var result3A = client3.DoStuffA().Result; + string assetName1Playback = HttpMockServer.GetAssetName(TestUtilities.GetCurrentMethodName(1), "tst"); + string assetName2Playback = HttpMockServer.GetAssetName(TestUtilities.GetCurrentMethodName(1), "tst"); + HttpMockServer.Flush(currentDir); + + string result1AConent = JObject.Parse(result1A.Content.ReadAsStringAsync().Result).ToString(); + string result3AConent = JObject.Parse(result3A.Content.ReadAsStringAsync().Result).ToString(); + + Assert.True(File.Exists(Path.Combine(HttpMockServer.CallerIdentity, TestUtilities.GetCurrentMethodName(1) + ".json"))); + Assert.Equal(result1A.StatusCode, result3A.StatusCode); + Assert.Equal(result1A.RequestMessage.RequestUri.AbsoluteUri, result3A.RequestMessage.RequestUri.AbsoluteUri); + Assert.Equal(result1AConent, result3AConent); + Assert.Equal(HttpStatusCode.Conflict, result2.StatusCode); + Assert.Equal(assetName1, assetName1Playback); + Assert.Equal(assetName2, assetName2Playback); + } + + [Fact] + public void PlaybackWithDifferentBodyIsMatched() + { + HttpMockServer.RecordsDirectory = currentDir; + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + var resultCOrig = client1.DoStuffC("test", "123", "abc").Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + FakeHttpClient client3 = CreateClient(); + var resultCPlayback = client1.DoStuffC("different", "123", "abc").Result; + HttpMockServer.Flush(currentDir); + + Assert.Equal(resultCOrig.RequestMessage.RequestUri, resultCPlayback.RequestMessage.RequestUri); + } + + [Fact] + public void PlaybackWithDifferentVersionInUrlDoesNotMatch() + { + HttpMockServer.RecordsDirectory = currentDir; + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + var resultCOrig = client1.DoStuffC("test", "123", "abc").Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + FakeHttpClient client3 = CreateClient(); + Assert.Throws<AggregateException>(() => client1.DoStuffC("test", "123", "xyz").Result); + } + + [Fact] + public void NotFoundExceptionContainUrlAndMethodName() + { + HttpMockServer.RecordsDirectory = currentDir; + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + var resultCOrig = client1.DoStuffC("test", "123", "abc").Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + FakeHttpClient client3 = CreateClient(); + try + { + var r = client1.DoStuffC("test", "123", "xyz").Result; + Assert.False(true); + } + catch (AggregateException aggregateException) + { + var exception = aggregateException.InnerExceptions[0]; + Assert.Equal("Unable to find a matching HTTP request for URL 'POST /path/to/resourceB?api-version=xyz (x-ms-version=123)'. Calling method DoStuffC().", + exception.Message); + } + } + + [Fact] + public void PlaybackWithDifferentVersionInHeaderDoesNotMatch() + { + HttpMockServer.RecordsDirectory = currentDir; + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + var resultCOrig = client1.DoStuffC("test", "123", "abc").Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + FakeHttpClient client3 = CreateClient(); + Assert.Throws<AggregateException>(() => client1.DoStuffC("test", "456", "abc").Result); + } + + [Fact] + public void PlaybackWithSameContentTypeMatches() + { + HttpMockServer.RecordsDirectory = currentDir; + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + var resultDOrig = client1.DoStuffD("text/json").Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + FakeHttpClient client3 = CreateClient(); + var resultDPlayback = client1.DoStuffD("text/json").Result; + + Assert.Equal(resultDOrig.RequestMessage.RequestUri, resultDPlayback.RequestMessage.RequestUri); + } + + [Fact (Skip = "Removed content check for now as it requires re-recording of all tests.")] + public void PlaybackWithDifferentContentTypeDoesNotMatch() + { + HttpMockServer.RecordsDirectory = currentDir; + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + var resultCOrig = client1.DoStuffD("text/json").Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + FakeHttpClient client3 = CreateClient(); + Assert.Throws<AggregateException>(() => client1.DoStuffD("text/xml").Result); + } + + [Fact] + public void TestRecordingWithTwoMethodsWritesFile() + { + HttpMockServer.Initialize(this.GetType(), "testA", HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + FakeHttpClient client2 = CreateClient(); + var result1 = client1.DoStuffA().Result; + var result2 = client2.DoStuffA().Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), "testB", HttpRecorderMode.Record); + FakeHttpClient client3 = CreateClient(); + var result3 = client3.DoStuffA().Result; + HttpMockServer.Flush(currentDir); + + Assert.True(File.Exists(HttpMockServer.CallerIdentity + "\\testA.json")); + Assert.True(File.Exists(HttpMockServer.CallerIdentity + "\\testB.json")); + } + + [Fact] + public void TestRecordingWithTwoMethodsWithoutFlushing() + { + HttpMockServer.Initialize(this.GetType(), "testA", HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + FakeHttpClient client2 = CreateClient(); + var result1 = client1.DoStuffA().Result; + var result2 = client2.DoStuffA().Result; + + HttpMockServer.Initialize(this.GetType(), "testB", HttpRecorderMode.Record); + FakeHttpClient client3 = CreateClient(); + var result3 = client3.DoStuffA().Result; + HttpMockServer.Flush(currentDir); + + Assert.True(File.Exists(HttpMockServer.CallerIdentity + "\\testB.json")); + } + + [Fact] + public void TestRecordingWithTwoMethodsWritesAllData() + { + HttpMockServer.Initialize(this.GetType(), "testA", HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + FakeHttpClient client2 = CreateClient(); + var result1 = client1.DoStuffA().Result; + var result2 = client2.DoStuffA().Result; + var name = HttpMockServer.GetAssetName("testA", "tst"); + HttpMockServer.Flush(currentDir); + RecordEntryPack pack = RecordEntryPack.Deserialize(HttpMockServer.CallerIdentity + "\\testA.json"); + + Assert.NotNull(name); + Assert.True(File.Exists(HttpMockServer.CallerIdentity + "\\testA.json")); + Assert.Equal(2, pack.Entries.Count); + Assert.Equal(1, pack.Names["testA"].Count); + } + + [Fact] + public void MissingFileOnPlaybackThrowsAnException() + { + HttpMockServer.RecordsDirectory = currentDir; + Assert.Throws<ArgumentException>(()=>HttpMockServer.Initialize(this.GetType(), "testA", HttpRecorderMode.Playback)); + } + + [Fact] + public void VariablePersistsInARecording() + { + HttpMockServer.RecordsDirectory = currentDir; + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + var result1 = client1.DoStuffA().Result; + var value1 = HttpMockServer.GetVariable("varA", "tst123"); + Assert.Equal("tst123", value1); + + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + var value2 = HttpMockServer.GetVariable("varA", "tst456"); + Assert.Equal("tst123", value2); + } + + [Fact] + public void NoneModeCreatesNoFiles() + { + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.None); + FakeHttpClient client = CreateClient(); + var result = client.DoStuffA().Result; + + HttpMockServer.Flush(currentDir); + + Assert.False(File.Exists(TestUtilities.GetCurrentMethodName(1) + ".json")); + } + + [Fact] + public void TestRecordingWithExplicitDir() + { + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + HttpMockServer.RecordsDirectory = Path.GetTempPath(); + + FakeHttpClient client = CreateClient(); + var result = client.DoStuffA().Result; + + HttpMockServer.Flush(); + + Assert.True(File.Exists(Path.Combine(Path.GetTempPath(), this.GetType().Name, TestUtilities.GetCurrentMethodName(1) + ".json"))); + } + + [Fact] + public void TestPlaybackWithAssetInUrlClient() + { + HttpMockServer.RecordsDirectory = currentDir; + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Record); + FakeHttpClient client1 = CreateClient(); + string assetName1 = HttpMockServer.GetAssetName(TestUtilities.GetCurrentMethodName(1), "tst"); + string assetName2 = HttpMockServer.GetAssetName(TestUtilities.GetCurrentMethodName(1), "tst"); + var result1A = client1.DoStuffX(assetName1).Result; + var result1B = client1.DoStuffX(assetName2).Result; + HttpMockServer.Flush(currentDir); + + HttpMockServer.Initialize(this.GetType(), TestUtilities.GetCurrentMethodName(1), HttpRecorderMode.Playback); + FakeHttpClient client3 = CreateClientWithBadResult(); + string assetName1Playback = HttpMockServer.GetAssetName(TestUtilities.GetCurrentMethodName(1), "tst"); + string assetName2Playback = HttpMockServer.GetAssetName(TestUtilities.GetCurrentMethodName(1), "tst"); + var result3A = client3.DoStuffX(assetName1Playback).Result; + var result3B = client3.DoStuffX(assetName2Playback).Result; + HttpMockServer.Flush(currentDir); + + string result1AConent = JObject.Parse(result1A.Content.ReadAsStringAsync().Result).ToString(); + string result3AConent = JObject.Parse(result3A.Content.ReadAsStringAsync().Result).ToString(); + + Assert.True(File.Exists(Path.Combine(HttpMockServer.CallerIdentity, TestUtilities.GetCurrentMethodName(1) + ".json"))); + Assert.Equal(result1A.StatusCode, result3A.StatusCode); + Assert.Equal(result1A.RequestMessage.RequestUri.AbsoluteUri, result3A.RequestMessage.RequestUri.AbsoluteUri); + Assert.Equal(result1AConent, result3AConent); + Assert.Equal(assetName1, assetName1Playback); + Assert.Equal(assetName2, assetName2Playback); + } + + public void Dispose() + { + string outputDir = Path.Combine(currentDir, this.GetType().Name); + if (Directory.Exists(outputDir)) + { + Directory.Delete(outputDir, true); + } + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/RecordEntryTest.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/RecordEntryTest.cs new file mode 100644 index 0000000000000..d7f4dfe4b3792 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/RecordEntryTest.cs @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Collections.Generic; +using System.Net.Http; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; +using Xunit; + +namespace HttpRecorder.Tests +{ + public class RecordEntryTest + { + [Fact] + public void AddingETagWithGuidFormat_Works() + { + //Arrange + string randomETagHeaderValue = "9792136f-ef2b-4a7c-98ce-c23f1be6bce4"; + string eTagHeaderName = "ETag"; + RecordEntry entry = new RecordEntry(); + Dictionary<string, List<string>> headers = new Dictionary<string,List<string>>(); + headers.Add(eTagHeaderName, new List<string>{randomETagHeaderValue}); + entry.ResponseHeaders = headers; + entry.ResponseBody = ""; + + //Act + HttpResponseMessage response = entry.GetResponse(); + + //Assert + string actualHeaderValue = (response.Headers.GetValues(eTagHeaderName) as string[])[0]; + Assert.Equal(randomETagHeaderValue, actualHeaderValue); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/RecordedDelegatingHandler.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/RecordedDelegatingHandler.cs new file mode 100644 index 0000000000000..d7baf3cff1281 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/RecordedDelegatingHandler.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading.Tasks; + +namespace HttpRecorder.Tests +{ + public class RecordedDelegatingHandler : DelegatingHandler + { + private HttpResponseMessage _response; + + public RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.Created; + } + + public RecordedDelegatingHandler(HttpResponseMessage response) + { + StatusCodeToReturn = HttpStatusCode.Created; + _response = response; + } + + public HttpStatusCode StatusCodeToReturn { get; set; } + + public string Request { get; private set; } + + public HttpRequestHeaders RequestHeaders { get; private set; } + + public HttpContentHeaders ContentHeaders { get; private set; } + + public HttpMethod Method { get; private set; } + + public Uri Uri { get; private set; } + + public bool IsPassThrough { get; set; } + + protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) + { + // Save request + if (request.Content == null) + { + Request = string.Empty; + } + else + { + Request = await request.Content.ReadAsStringAsync(); + } + RequestHeaders = request.Headers; + if (request.Content != null) + { + ContentHeaders = request.Content.Headers; + } + Method = request.Method; + Uri = request.RequestUri; + + // Prepare response + if (IsPassThrough) + { + return await base.SendAsync(request, cancellationToken); + } + else + { + if (_response != null) + { + HttpResponseMessage response = new HttpResponseMessage(_response.StatusCode); + response.RequestMessage = new HttpRequestMessage(request.Method, request.RequestUri); + foreach (var header in request.Headers) + { + response.RequestMessage.Headers.Add(header.Key, header.Value); + } + response.RequestMessage.Content = request.Content; + response.Content = _response.Content; + foreach (var h in _response.Headers) + { + response.Headers.Add(h.Key, h.Value); + } + return response; + } + else + { + HttpResponseMessage response = new HttpResponseMessage(StatusCodeToReturn); + response.RequestMessage = new HttpRequestMessage(request.Method, request.RequestUri); + response.RequestMessage.Content = request.Content; + response.Content = new StringContent(""); + return response; + } + } + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/TestRecordingWithTwoClients.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/TestRecordingWithTwoClients.json new file mode 100644 index 0000000000000..a50c03e190dc7 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/TestRecordingWithTwoClients.json @@ -0,0 +1 @@ +{"Entries":[],"Names":{}} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/another-template.js b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/another-template.js new file mode 100644 index 0000000000000..f07d4bc2cd56e --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/another-template.js @@ -0,0 +1,102 @@ +{ + "schemaVersion": "2014-01.1.0-preview", + "parameters": { + "string": { + "type": "string" + }, + "securestring": { + "type": "securestring" + }, + "int": { + "type": "int" + }, + "bool": { + "type": "bool" + } + }, + "variables": { + "string": "string", + "int": 42, + "bool": true, + "array": [ + 1, + 2, + 3, + 4 + ], + "object": { + "string": "string", + "int": 42, + "bool": true, + "array": [ + 1, + 2, + 3, + 4 + ], + "object": { + "vmSize": "Large", + "location": "West US" + } + } + }, + "resources": [ + { + "name": "resource1", + "type": "ResourceProviderTestHost/TestResourceType", + "apiVersion": "1.0", + "resources": [ + { + "name": "nestedresource1", + "type": "TestResourceTypeNestedOne", + "apiVersion": "1.0", + "properties": { + "disktype": "OS", + "mediaLink": "vhds/WebTierOs1.vhd", + "sourceMediaLink": "Windows-Server-2012-R2-201310.01-en.us-127GB.vhd" + }, + "dependsOn": [ + "ResourceProviderTestHost/TestResourceType/resource2" + ] + } + ] + }, + { + "name": "resource2", + "type": "ResourceProviderTestHost/TestResourceType", + "apiVersion": "1.0", + "location": "DevFabric", + "dependsOn": [ + "ResourceProviderTestHost/TestResourceType/resource1" + ], + "properties": { + "availabilitySet": "WebAvailabilitySet", + "hardwareProfile": { + "vmSize": "small" + } + }, + "tags": { + "key1": "value1", + "key2": "value2" + } + } + ], + "outputs": { + "string": { + "type": "string", + "value": "myvalue" + }, + "securestring": { + "type": "securestring", + "value": "myvalue" + }, + "int": { + "type": "int", + "value": 42 + }, + "bool": { + "type": "bool", + "value": true + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/another-template0.js b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/another-template0.js new file mode 100644 index 0000000000000..f07d4bc2cd56e --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/another-template0.js @@ -0,0 +1,102 @@ +{ + "schemaVersion": "2014-01.1.0-preview", + "parameters": { + "string": { + "type": "string" + }, + "securestring": { + "type": "securestring" + }, + "int": { + "type": "int" + }, + "bool": { + "type": "bool" + } + }, + "variables": { + "string": "string", + "int": 42, + "bool": true, + "array": [ + 1, + 2, + 3, + 4 + ], + "object": { + "string": "string", + "int": 42, + "bool": true, + "array": [ + 1, + 2, + 3, + 4 + ], + "object": { + "vmSize": "Large", + "location": "West US" + } + } + }, + "resources": [ + { + "name": "resource1", + "type": "ResourceProviderTestHost/TestResourceType", + "apiVersion": "1.0", + "resources": [ + { + "name": "nestedresource1", + "type": "TestResourceTypeNestedOne", + "apiVersion": "1.0", + "properties": { + "disktype": "OS", + "mediaLink": "vhds/WebTierOs1.vhd", + "sourceMediaLink": "Windows-Server-2012-R2-201310.01-en.us-127GB.vhd" + }, + "dependsOn": [ + "ResourceProviderTestHost/TestResourceType/resource2" + ] + } + ] + }, + { + "name": "resource2", + "type": "ResourceProviderTestHost/TestResourceType", + "apiVersion": "1.0", + "location": "DevFabric", + "dependsOn": [ + "ResourceProviderTestHost/TestResourceType/resource1" + ], + "properties": { + "availabilitySet": "WebAvailabilitySet", + "hardwareProfile": { + "vmSize": "small" + } + }, + "tags": { + "key1": "value1", + "key2": "value2" + } + } + ], + "outputs": { + "string": { + "type": "string", + "value": "myvalue" + }, + "securestring": { + "type": "securestring", + "value": "myvalue" + }, + "int": { + "type": "int", + "value": 42 + }, + "bool": { + "type": "bool", + "value": true + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/test-template.js b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/test-template.js new file mode 100644 index 0000000000000..f07d4bc2cd56e --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/SampleData/test-template.js @@ -0,0 +1,102 @@ +{ + "schemaVersion": "2014-01.1.0-preview", + "parameters": { + "string": { + "type": "string" + }, + "securestring": { + "type": "securestring" + }, + "int": { + "type": "int" + }, + "bool": { + "type": "bool" + } + }, + "variables": { + "string": "string", + "int": 42, + "bool": true, + "array": [ + 1, + 2, + 3, + 4 + ], + "object": { + "string": "string", + "int": 42, + "bool": true, + "array": [ + 1, + 2, + 3, + 4 + ], + "object": { + "vmSize": "Large", + "location": "West US" + } + } + }, + "resources": [ + { + "name": "resource1", + "type": "ResourceProviderTestHost/TestResourceType", + "apiVersion": "1.0", + "resources": [ + { + "name": "nestedresource1", + "type": "TestResourceTypeNestedOne", + "apiVersion": "1.0", + "properties": { + "disktype": "OS", + "mediaLink": "vhds/WebTierOs1.vhd", + "sourceMediaLink": "Windows-Server-2012-R2-201310.01-en.us-127GB.vhd" + }, + "dependsOn": [ + "ResourceProviderTestHost/TestResourceType/resource2" + ] + } + ] + }, + { + "name": "resource2", + "type": "ResourceProviderTestHost/TestResourceType", + "apiVersion": "1.0", + "location": "DevFabric", + "dependsOn": [ + "ResourceProviderTestHost/TestResourceType/resource1" + ], + "properties": { + "availabilitySet": "WebAvailabilitySet", + "hardwareProfile": { + "vmSize": "small" + } + }, + "tags": { + "key1": "value1", + "key2": "value2" + } + } + ], + "outputs": { + "string": { + "type": "string", + "value": "myvalue" + }, + "securestring": { + "type": "securestring", + "value": "myvalue" + }, + "int": { + "type": "int", + "value": 42 + }, + "bool": { + "type": "bool", + "value": true + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/UtilitiesTests.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/UtilitiesTests.cs new file mode 100644 index 0000000000000..5e038b0a08487 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/UtilitiesTests.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace HttpRecorder.Tests +{ + public class UtilitiesTests + { + [Fact] + public void GetCurrentMethodNameReturnsName() + { + Assert.Equal("GetCurrentMethodNameReturnsName", TestUtilities.GetCurrentMethodName(1)); + } + + [Fact] + public void GetCurrentMethodNameReturnsNameWithIndex() + { + Assert.Equal("GetCurrentMethodNameReturnsNameWithIndex", GetName()); + } + + private string GetName() + { + return TestUtilities.GetCurrentMethodName(2); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Properties/AssemblyInfo.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000000..4a4456dd320b7 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,16 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Xunit; + +[assembly: AssemblyTitle("Microsoft.Rest.ClientRuntime.Azure.TestFramework.Framework.Test")] +[assembly: AssemblyProduct("Microsoft.Rest.ClientRuntime.Azure.TestFramework.Framework.Test")] +[assembly: AssemblyCopyright("Copyright (c) 2014")] +[assembly: Guid("1ef9815c-0ff0-4e5e-b80b-5d6db86c16fd")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: CollectionBehavior(DisableTestParallelization = true, MaxParallelThreads = 1)] + diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/CsmTests.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/CsmTests.json new file mode 100644 index 0000000000000..e5875848966c3 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/CsmTests.json @@ -0,0 +1,55 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers?api-version=2014-04-01-preview", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/microsoft.batch\",\r\n \"namespace\": \"microsoft.batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"adfgated3\",\r\n \"2014-10-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"2014-08-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-05-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.DocumentDb\",\r\n \"namespace\": \"Microsoft.DocumentDb\",\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Insights\",\r\n \"namespace\": \"Microsoft.Insights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/biztalkservices\",\r\n \"namespace\": \"biztalkservices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"biztalk\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/mdp\",\r\n \"namespace\": \"mdp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.BackupVaultRPNew\",\r\n \"namespace\": \"Microsoft.BackupVaultRPNew\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVaultNew\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.DataWarehouse\",\r\n \"namespace\": \"Microsoft.DataWarehouse\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"datawarehouses\",\r\n \"locations\": [\r\n \"\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.DWS\",\r\n \"namespace\": \"Microsoft.DWS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/microsoft.insights2\",\r\n \"namespace\": \"microsoft.insights2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/microsoft.insights3\",\r\n \"namespace\": \"microsoft.insights3\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"centralus\",\r\n \"eastasia\",\r\n \"southeastasia\",\r\n \"eastus\",\r\n \"westus\",\r\n \"northcentralus\",\r\n \"southcentralus\",\r\n \"northeurope\",\r\n \"westeurope\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageaccounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-08-01-preview.0.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"1.0-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/microsoft.test\",\r\n \"namespace\": \"microsoft.test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tests\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tests/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.VisualStudio\",\r\n \"namespace\": \"Microsoft.VisualStudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.VisualStudio.Dev\",\r\n \"namespace\": \"Microsoft.VisualStudio.Dev\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Microsoft.VisualStudio.Test\",\r\n \"namespace\": \"Microsoft.VisualStudio.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/MicrosoftSql\",\r\n \"namespace\": \"MicrosoftSql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2.0\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/applications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/sabanwebsites\",\r\n \"namespace\": \"sabanwebsites\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/pages\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/StressRP\",\r\n \"namespace\": \"StressRP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"ResourceType1\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"ResourceType1/ResourceType2\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fff9846f-cd8f-4796-89a4-d8237b743463/providers/visualstudiov2\",\r\n \"namespace\": \"visualstudiov2\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"02\",\r\n \"01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "20513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "799999" + ], + "x-ms-request-id": [ + "3c64ec22-90cc-47fe-bd85-3dc3a2e46c85" + ], + "x-ms-correlation-request-id": [ + "3c64ec22-90cc-47fe-bd85-3dc3a2e46c85" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20141020T222353Z:3c64ec22-90cc-47fe-bd85-3dc3a2e46c85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 20 Oct 2014 22:23:52 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "fff9846f-cd8f-4796-89a4-d8237b743463" + } +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithAADAuth.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithAADAuth.json new file mode 100644 index 0000000000000..624dc105bbaba --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithAADAuth.json @@ -0,0 +1,51 @@ +{ + "Entries": [ + { + "RequestUri": "/3ca49042-782a-4cc9-89b5-ee1b487fe115/services/ServiceBus/CheckNamespaceAvailability?namespace=somenamespace", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2013-06-01" + ], + "User-Agent": [ + "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" + ] + }, + "ResponseBody": "<entry xmlns=\"http://www.w3.org/2005/Atom\">\r\n <id>uuid:2a19ccb7-b227-4a9f-8fec-8aa0562d5852;id=2972401</id>\r\n <title type=\"text\"></title>\r\n <updated>2014-10-27T23:15:57Z</updated>\r\n <content type=\"application/xml\">\r\n <NamespaceAvailability xmlns=\"http://schemas.microsoft.com/netservices/2010/10/servicebus/connect\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n <Result>false</Result>\r\n <ReasonDetail>The specified service namespace is not available.</ReasonDetail>\r\n </NamespaceAvailability>\r\n </content>\r\n</entry>", + "ResponseHeaders": { + "Content-Length": [ + "533" + ], + "Content-Type": [ + "application/atom+xml; type=entry; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth2" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-request-id": [ + "2a3cb028f2392f868ac07bc8612acaa8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Oct 2014 23:15:57 GMT" + ], + "Server": [ + "1.0.6198.151", + "(rd_rdfe_stable.141024-2154)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3ca49042-782a-4cc9-89b5-ee1b487fe115" + } +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseUriInDogfood.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseUriInDogfood.json new file mode 100644 index 0000000000000..887344c85b6ee --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseUriInDogfood.json @@ -0,0 +1,46 @@ +{ + "Entries": [ + { + "RequestUri": "/ee39cb6d-d45b-4694-825a-f4d6f87ed72a/services/ServiceBus/CheckNamespaceAvailability?namespace=somenamespace", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2013-06-01" + ], + "User-Agent": [ + "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" + ] + }, + "ResponseBody": "<entry xmlns=\"http://www.w3.org/2005/Atom\">\r\n <id>uuid:6da37206-384c-45b0-b83e-fa08ffb16dc6;id=10758</id>\r\n <title type=\"text\"></title>\r\n <updated>2014-10-27T23:13:07Z</updated>\r\n <content type=\"application/xml\">\r\n <NamespaceAvailability xmlns=\"http://schemas.microsoft.com/netservices/2010/10/servicebus/connect\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n <Result>true</Result>\r\n <ReasonDetail i:nil=\"true\" />\r\n </NamespaceAvailability>\r\n </content>\r\n</entry>", + "ResponseHeaders": { + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/atom+xml; type=entry; charset=utf-8" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-request-id": [ + "9f782cadf2c82054959215bce4e22768" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Oct 2014 23:13:07 GMT" + ], + "Server": [ + "1.0.6195.371", + "(rd_rdfe_dhf1.141017-0400)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseuriEnvironmentInDogfood.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseuriEnvironmentInDogfood.json new file mode 100644 index 0000000000000..8f77f362c7852 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseuriEnvironmentInDogfood.json @@ -0,0 +1,46 @@ +{ + "Entries": [ + { + "RequestUri": "/ee39cb6d-d45b-4694-825a-f4d6f87ed72a/services/ServiceBus/CheckNamespaceAvailability?namespace=somenamespace", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2013-06-01" + ], + "User-Agent": [ + "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" + ] + }, + "ResponseBody": "<entry xmlns=\"http://www.w3.org/2005/Atom\">\r\n <id>uuid:6da37206-384c-45b0-b83e-fa08ffb16dc6;id=10756</id>\r\n <title type=\"text\"></title>\r\n <updated>2014-10-27T23:13:04Z</updated>\r\n <content type=\"application/xml\">\r\n <NamespaceAvailability xmlns=\"http://schemas.microsoft.com/netservices/2010/10/servicebus/connect\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n <Result>true</Result>\r\n <ReasonDetail i:nil=\"true\" />\r\n </NamespaceAvailability>\r\n </content>\r\n</entry>", + "ResponseHeaders": { + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/atom+xml; type=entry; charset=utf-8" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-request-id": [ + "ee7745f9537b22a6bee9224571b8dca4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Oct 2014 23:13:04 GMT" + ], + "Server": [ + "1.0.6195.371", + "(rd_rdfe_dhf1.141017-0400)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseuriInProd.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseuriInProd.json new file mode 100644 index 0000000000000..802e1ca641323 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthBaseuriInProd.json @@ -0,0 +1,49 @@ +{ + "Entries": [ + { + "RequestUri": "/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/services/ServiceBus/CheckNamespaceAvailability?namespace=somenamespace", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2013-06-01" + ], + "User-Agent": [ + "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" + ] + }, + "ResponseBody": "<entry xmlns=\"http://www.w3.org/2005/Atom\">\r\n <id>uuid:2a19ccb7-b227-4a9f-8fec-8aa0562d5852;id=2968075</id>\r\n <title type=\"text\"></title>\r\n <updated>2014-10-27T23:13:01Z</updated>\r\n <content type=\"application/xml\">\r\n <NamespaceAvailability xmlns=\"http://schemas.microsoft.com/netservices/2010/10/servicebus/connect\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n <Result>false</Result>\r\n <ReasonDetail>The specified service namespace is not available.</ReasonDetail>\r\n </NamespaceAvailability>\r\n </content>\r\n</entry>", + "ResponseHeaders": { + "Content-Length": [ + "533" + ], + "Content-Type": [ + "application/atom+xml; type=entry; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth2" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-request-id": [ + "06b7366cabec2b76ab3ea4cf3aee4430" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Oct 2014 23:13:00 GMT" + ], + "Server": [ + "1.0.6198.151", + "(rd_rdfe_stable.141024-2154)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthEnvironmentInDogfood.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthEnvironmentInDogfood.json new file mode 100644 index 0000000000000..887e7df6595e4 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/RdfeTestsWithCertAuthEnvironmentInDogfood.json @@ -0,0 +1,46 @@ +{ + "Entries": [ + { + "RequestUri": "/ee39cb6d-d45b-4694-825a-f4d6f87ed72a/services/ServiceBus/CheckNamespaceAvailability?namespace=somenamespace", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2013-06-01" + ], + "User-Agent": [ + "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" + ] + }, + "ResponseBody": "<entry xmlns=\"http://www.w3.org/2005/Atom\">\r\n <id>uuid:c7018f97-f05f-49fa-a933-cadec4399866;id=14858</id>\r\n <title type=\"text\"></title>\r\n <updated>2014-10-27T23:13:11Z</updated>\r\n <content type=\"application/xml\">\r\n <NamespaceAvailability xmlns=\"http://schemas.microsoft.com/netservices/2010/10/servicebus/connect\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n <Result>true</Result>\r\n <ReasonDetail i:nil=\"true\" />\r\n </NamespaceAvailability>\r\n </content>\r\n</entry>", + "ResponseHeaders": { + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/atom+xml; type=entry; charset=utf-8" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-request-id": [ + "211ec4ba84772b69913eea14a3236f5b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Oct 2014 23:13:11 GMT" + ], + "Server": [ + "1.0.6195.371", + "(rd_rdfe_dhf1.141017-0400)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheConnectionString.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheConnectionString.json new file mode 100644 index 0000000000000..20fdd12dd128e --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheConnectionString.json @@ -0,0 +1,48 @@ +{ + "Entries": [ + { + "RequestUri": "/ee39cb6d-d45b-4694-825a-f4d6f87ed72a/services/ServiceBus/CheckNamespaceAvailability?namespace=somenamespace", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2013-06-01" + ], + "User-Agent": [ + "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" + ] + }, + "ResponseBody": "<entry xmlns=\"http://www.w3.org/2005/Atom\">\r\n <id>uuid:6da37206-384c-45b0-b83e-fa08ffb16dc6;id=12660</id>\r\n <title type=\"text\"></title>\r\n <updated>2014-10-28T21:59:00Z</updated>\r\n <content type=\"application/xml\">\r\n <NamespaceAvailability xmlns=\"http://schemas.microsoft.com/netservices/2010/10/servicebus/connect\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n <Result>true</Result>\r\n <ReasonDetail i:nil=\"true\" />\r\n </NamespaceAvailability>\r\n </content>\r\n</entry>", + "ResponseHeaders": { + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/atom+xml; type=entry; charset=utf-8" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-request-id": [ + "466768c4888020bfa9ff09b5598402d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 28 Oct 2014 21:58:59 GMT" + ], + "Server": [ + "1.0.6190.4411", + "(rd_rdfe_n.141028-0100)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "ee39cb6d-d45b-4694-825a-f4d6f87ed72a" + } +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheTestFile.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheTestFile.json new file mode 100644 index 0000000000000..52c6c0c36d312 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheTestFile.json @@ -0,0 +1,51 @@ +{ + "Entries": [ + { + "RequestUri": "/0a496442-635f-4974-bda4-2d339b9a6b3c/services/ServiceBus/CheckNamespaceAvailability?namespace=somenamespace", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2013-06-01" + ], + "User-Agent": [ + "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" + ] + }, + "ResponseBody": "<entry xmlns=\"http://www.w3.org/2005/Atom\">\r\n <id>uuid:bcb2eb35-97d0-4a05-8b07-9f231bfdfe17;id=19996</id>\r\n <title type=\"text\"></title>\r\n <updated>2014-10-28T21:55:04Z</updated>\r\n <content type=\"application/xml\">\r\n <NamespaceAvailability xmlns=\"http://schemas.microsoft.com/netservices/2010/10/servicebus/connect\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n <Result>true</Result>\r\n <ReasonDetail i:nil=\"true\" />\r\n </NamespaceAvailability>\r\n </content>\r\n</entry>", + "ResponseHeaders": { + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/atom+xml; type=entry; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-request-id": [ + "91dc3f9192c52c35928caeead2c34dee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 28 Oct 2014 21:55:04 GMT" + ], + "Server": [ + "1.0.6190.4411", + "(rd_rdfe_n.141028-0100)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "0a496442-635f-4974-bda4-2d339b9a6b3c" + } +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config new file mode 100644 index 0000000000000..2073e41d3ad88 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<packages> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> + <package id="xunit" version="2.0.0" targetFramework="net45" /> + <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> + <package id="xunit.assert" version="2.0.0" targetFramework="net45" /> + <package id="xunit.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" /> +</packages> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj new file mode 100644 index 0000000000000..4e4ea7d29bfcf --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <PropertyGroup> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{F144A258-3C38-447A-993E-967F74A1A76C}</ProjectGuid> + <AutoRestProjects>true</AutoRestProjects> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>Microsoft.Rest.ClientRuntime.Azure.TestFramework</RootNamespace> + <AssemblyName>Microsoft.Rest.ClientRuntime.Azure.TestFramework</AssemblyName> + <OutputType>Library</OutputType> + <RestorePackages>true</RestorePackages> + </PropertyGroup> + <Import Project="..\..\..\tools\Library.Settings.targets" /> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="System.XML" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> + <HintPath>packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <Private>True</Private> + </Reference> + </ItemGroup> + <ItemGroup> + <Compile Include="CredManCache.cs" /> + <Compile Include="HttpRecorder\AssetNames.cs" /> + <Compile Include="HttpRecorder\HttpMockServer.cs" /> + <Compile Include="HttpRecorder\HttpRecorderMode.cs" /> + <Compile Include="HttpRecorder\IRecordMatcher.cs" /> + <Compile Include="HttpRecorder\RecordEntry.cs" /> + <Compile Include="HttpRecorder\RecordEntryPack.cs" /> + <Compile Include="HttpRecorder\Records.cs" /> + <Compile Include="HttpRecorder\SimpleRecordMatcher.cs" /> + <Compile Include="HttpRecorder\Utilities.cs" /> + <Compile Include="Properties\Resources.Designer.cs"> + <AutoGen>True</AutoGen> + <DesignTime>True</DesignTime> + <DependentUpon>Resources.resx</DependentUpon> + </Compile> + <Compile Include="ConnectionStringFields.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="SubscriptionInfo.cs" /> + <Compile Include="TestBase.cs" /> + <Compile Include="TestTraits.cs" /> + <Compile Include="TestEndpoints.cs" /> + <Compile Include="TestEnvironment.cs" /> + <Compile Include="TestEnvironmentFactory.cs" /> + <Compile Include="TestingTracingInterceptor.cs" /> + <Compile Include="TestUtilities.cs" /> + <Compile Include="MockContext.cs" /> + </ItemGroup> + <ItemGroup> + <None Include="Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj" /> + <None Include="Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec" /> + <None Include="MSSharedLibKey.snk" /> + <None Include="packages.config" /> + <None Include="Set-CredentialCache.ps1"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="Properties\Resources.resx"> + <Generator>ResXFileCodeGenerator</Generator> + <LastGenOutput>Resources.Designer.cs</LastGenOutput> + </EmbeddedResource> + </ItemGroup> + <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> + <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> +</Project> \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/ConnectionStringFields.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/ConnectionStringFields.cs new file mode 100644 index 0000000000000..a1d267416cfae --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/ConnectionStringFields.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + /// <summary> + /// Contains constant definitions for the fields that + /// are allowed in the test connection strings. + /// </summary> + public static class ConnectionStringFields + { + /// <summary> + /// The key inside the connection string for the management certificate + /// </summary> + public const string ManagementCertificate = "ManagementCertificate"; + + /// <summary> + /// The key inside the connection string for the subscription identifier + /// </summary> + public const string SubscriptionId = "SubscriptionId"; + + /// <summary> + /// AAD token Audience Uri + /// </summary> + public const string AADTokenAudienceUri = "AADTokenAudienceUri"; + + /// <summary> + /// The key inside the connection string for the base management URI + /// </summary> + public const string BaseUri = "BaseUri"; + + /// <summary> + /// The key inside the connection string for AD Graph URI + /// </summary> + public const string GraphUri = "GraphUri"; + + /// <summary> + /// The key inside the connection string for AD Gallery URI + /// </summary> + public const string GalleryUri = "GalleryUri"; + + /// <summary> + /// The key inside the connection string for the Ibiza Portal URI + /// </summary> + public const string IbizaPortalUri = "IbizaPortalUri"; + + /// <summary> + /// The key inside the connection string for the RDFE Portal URI + /// </summary> + public const string RdfePortalUri = "RdfePortalUri"; + + /// <summary> + /// The key inside the connection string for the DataLake FileSystem URI suffix + /// </summary> + public const string DataLakeServiceUri = "DataLakeServiceUri"; + + /// <summary> + /// The key inside the connection string for the Kona Catalog URI + /// </summary> + public const string KonaCatalogServiceUri = "KonaCatalogServiceUri"; + + /// <summary> + /// The key inside the connection string for a Microsoft ID (OrgId or LiveId) + /// </summary> + public const string UserId = "UserId"; + + /// <summary> + /// Service principal key + /// </summary> + public const string ServicePrincipal = "ServicePrincipal"; + + /// <summary> + /// The key inside the connection string for a user password matching the Microsoft ID + /// </summary> + public const string Password = "Password"; + + /// <summary> + /// A raw JWT token for AAD authentication + /// </summary> + public const string RawToken = "RawToken"; + + /// <summary> + /// The client ID to use when authenticating with AAD + /// </summary> + public const string AADClientId = "AADClientId"; + + /// <summary> + /// Endpoint to use for AAD authentication + /// </summary> + public const string AADAuthenticationEndpoint = "AADAuthEndpoint"; + + /// <summary> + /// If a tenant other than common is to be used with the subscription, specifies the tenant + /// </summary> + public const string AADTenant = "AADTenant"; + + /// <summary> + /// Environment name + /// </summary> + public const string Environment = "Environment"; + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/CredManCache.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/CredManCache.cs new file mode 100644 index 0000000000000..d01dddb555b88 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/CredManCache.cs @@ -0,0 +1,461 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.ConstrainedExecution; +using System.Runtime.InteropServices; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public class CredManCache : IDictionary<string, string> + { + public CredManCache(string appName) + { + UniqueApplicationString = appName; + } + + const int oneKB = 1024; + public static string UniqueApplicationString; + + public void Add(string key, string value) + { + // Split the value into 1K bytes length pieces into order to comply with the CredMan size limit on the (Credential Blob) size. + List<string> splitValues = Split(value); + + int count = 0; + + // Add an entry it CredMan for each 1K byte length string. + foreach (string val in splitValues) + { + // Key each string with the key ending with "-0", "-1" and so on... + AddCacheEntry(key + "-" + count, val); + count++; + } + } + + public void Add(KeyValuePair<string, string> item) + { + Add(item.Key, item.Value); + } + + public bool ContainsKey(string key) + { + string value; + return TryGetValue(key, out value); + } + + public void Clear() + { + int count; + IntPtr list; + + // Get the count and a pointer to the list of entries in CredMan. + if (NativeMethods.CredEnumerate(null, 0, out count, out list)) + { + try + { + for (int i = 0; i < count; i++) + { + IntPtr pCredential = Marshal.ReadIntPtr(list, i * Marshal.SizeOf(typeof(IntPtr))); + NativeMethods.Credential cred = (NativeMethods.Credential)Marshal.PtrToStructure(pCredential, typeof(NativeMethods.Credential)); + IntPtr credential; + + // check if the entry was created by this application by checking the userName and making sure that this application can Read the entry + if (cred.userName == UniqueApplicationString && NativeMethods.CredRead(cred.targetName, CredentialType.Generic, 0, out credential)) + { + try + { + // Call CredDelete to delete the entry in CredMan. + NativeMethods.CredDelete(cred.targetName, CredentialType.Generic, 0); + } + finally + { + NativeMethods.CredFree(credential); + } + } + + } + } + finally + { + NativeMethods.CredFree(list); + } + } + } + + public bool Contains(KeyValuePair<string, string> item) + { + string value; + + TryGetValue(item.Key, out value); + + if (value != null) + { + return (value.Equals(item.Value)); + } + return false; + } + + public void CopyTo(KeyValuePair<string, string>[] array, int arrayIndex) + { + throw new NotImplementedException(); + } + + public int Count + { + get { return Keys.Count; } + } + + public IEnumerator<KeyValuePair<string, string>> GetEnumerator() + { + foreach (string key in Keys) + { + yield return new KeyValuePair<string, string>(key, this[key]); + } + } + + public ICollection<string> Keys + { + get + { + int count; + IntPtr list; + HashSet<string> keysSet = new HashSet<string>(); + + // Get the count and a pointer to the list of entries in CredMan. + if (NativeMethods.CredEnumerate(null, 0, out count, out list)) + { + try + { + for (int i = 0; i < count; i++) + { + IntPtr pCredential = Marshal.ReadIntPtr(list, i * Marshal.SizeOf(typeof(IntPtr))); + NativeMethods.Credential credential = (NativeMethods.Credential)Marshal.PtrToStructure(pCredential, typeof(NativeMethods.Credential)); + + IntPtr cred; + + // check if the credential was created by this application. + if (credential.userName == UniqueApplicationString && NativeMethods.CredRead(credential.targetName, CredentialType.Generic, 0, out cred)) + { + try + { + // add the key (removing the suffix of -count, ex: -0, -1 etc. that were added in Add()) to the set of keys. + keysSet.Add(credential.targetName.Substring(0, credential.targetName.Length - 2)); + } + + finally + { + NativeMethods.CredFree(cred); + } + } + } + } + finally + { + NativeMethods.CredFree(list); + } + } + + return keysSet.ToList(); + } + } + + public bool Remove(string key) + { + int count; + IntPtr list; + + // Get the count and a pointer to the list of entries whose targetName starts with "key" in CredMan. + if (NativeMethods.CredEnumerate(key + "*", 0, out count, out list)) + { + try + { + for (int i = 0; i < count; i++) + { + IntPtr pCredential = Marshal.ReadIntPtr(list, i * Marshal.SizeOf(typeof(IntPtr))); + NativeMethods.Credential credential = (NativeMethods.Credential)Marshal.PtrToStructure(pCredential, typeof(NativeMethods.Credential)); + + // Delete the entry. + NativeMethods.CredDelete(credential.targetName, CredentialType.Generic, 0); + } + } + finally + { + NativeMethods.CredFree(list); + } + return true; + } + + return false; + } + + public bool Remove(KeyValuePair<string, string> item) + { + if (Contains(item)) + { + Remove(item.Key); + return true; + } + return false; + } + + public bool TryGetValue(string key, out string value) + { + value = null; + + int count; + IntPtr list; + IntPtr pCredential; + + // Get the count and a pointer to the list of entries whose targetName (key) begins with "key" + + if (NativeMethods.CredEnumerate(key + '*', 0, out count, out list)) + { + try + { + Dictionary<string, string> values = new Dictionary<string, string>(); + + for (int i = 0; i < count; i++) + { + // Read the Credential, only get the entries created by CredMan. + if (NativeMethods.CredRead(key + "-" + i, CredentialType.Generic, 0, out pCredential)) + { + try + { + NativeMethods.Credential cred = (NativeMethods.Credential)Marshal.PtrToStructure(pCredential, typeof(NativeMethods.Credential)); + + // Add the value to the list of values. + values.Add(cred.targetName, Marshal.PtrToStringUni(cred.credentialBlob, (int)(cred.credentialBlobSize - 1) / 2)); + } + finally + { + NativeMethods.CredFree(pCredential); + } + } + } + + // Stitch together the values to get the value, since they were split up during Add() + value = Merge(values); + + if (!string.IsNullOrEmpty(value)) + { + return true; + } + } + finally + { + NativeMethods.CredFree(list); + } + } + + return false; + } + + public ICollection<string> Values + { + get + { + List<string> values = new List<string>(); + + foreach (string key in Keys) + { + values.Add(this[key]); + } + + return values; + } + } + + public string this[string key] + { + get + { + string value; + TryGetValue(key, out value); + return value; + } + set + { + Add(key, value); + } + } + + public bool IsReadOnly + { + get { return false; } + } + + private void AddCacheEntry(string key, string value) + { + // Create a Credential to represent an entry in CredMan + NativeMethods.Credential credential = new NativeMethods.Credential(key, value); + + int size = Marshal.SizeOf(credential); + IntPtr ptr = Marshal.AllocHGlobal(size); + try + { + Marshal.StructureToPtr(credential, ptr, false); + if (!NativeMethods.CredWrite(ptr, 0)) + { + throw new Exception("Exception occurred while writing to cache. Error Code : " + Marshal.GetLastWin32Error()); + } + } + finally + { + Marshal.FreeHGlobal(ptr); + } + } + + /// <summary> + /// Splits a given string into substrings of 1KB length each, except the last substring which could be lesser than 1KB length + /// </summary> + List<string> Split(string s) + { + List<string> list = new List<string>(); + + int length = s.Length; + int index = 0; + + while (length > oneKB) + { + // Get a 1 KB length substring and add it to the list + list.Add(s.Substring(index, oneKB)); + index += oneKB; + length -= oneKB; + } + + // Add the remaining substring to the list. + list.Add(s.Substring(index)); + + return list; + } + + /// <summary> + /// Takes in a list of key, value pairs and stitches the values together and returns the stitched together value. + /// </summary> + string Merge(Dictionary<string, string> items) + { + string combinedValue = string.Empty; + string value; + + int count = items.Count; + string key; + + key = items.Keys.First(); + + if (string.IsNullOrEmpty(key)) + { + return null; + } + + // prune off the -digit suffix in the end. + key = key.Substring(0, key.Length - 2); + + // combine the values + for (int i = 0; i < count; i++) + { + // get the keys in the order of increasing suffix digits in the end. + if (items.TryGetValue(key + "-" + i, out value)) + { + combinedValue += value; + } + } + + return combinedValue; + } + + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } + + enum CredentialType + { + Generic = 1, + } + + class NativeMethods + { + [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] + internal extern static bool CredRead( + string targetName, + CredentialType type, + int flags, + [Out] out IntPtr pCredential + ); + + [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] + internal extern static bool CredEnumerate( + string targetName, + int flags, + [Out] out int count, + [Out] out IntPtr pCredential + ); + + [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] + internal extern static bool CredDelete( + string targetName, + CredentialType type, + int flags + ); + + [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] + internal extern static bool CredWrite( + IntPtr pCredential, + int flags + ); + + [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)] + [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] + internal extern static bool CredFree( + IntPtr pCredential + ); + + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] + internal struct Credential + { + public Credential(string key, string value) + { + this.flags = 0; + this.type = CredentialType.Generic; + + // set the key in the targetName + this.targetName = key; + + this.targetAlias = null; + this.comment = null; + this.lastWritten.dwHighDateTime = 0; + this.lastWritten.dwLowDateTime = 0; + + // set the value in credentialBlob. + this.credentialBlob = Marshal.StringToHGlobalUni(value); + this.credentialBlobSize = (uint)((value.Length + 1) * 2); + + this.persist = 1; + this.attibuteCount = 0; + this.attributes = IntPtr.Zero; + this.userName = CredManCache.UniqueApplicationString; + } + + internal uint flags; + internal CredentialType type; + internal string targetName; + internal string comment; + internal System.Runtime.InteropServices.ComTypes.FILETIME lastWritten; + internal uint credentialBlobSize; + internal IntPtr credentialBlob; + internal uint persist; + internal uint attibuteCount; + internal IntPtr attributes; + internal string targetAlias; + internal string userName; + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/AssetNames.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/AssetNames.cs new file mode 100644 index 0000000000000..7d4e82969920e --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/AssetNames.cs @@ -0,0 +1,85 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + /// <summary> + /// This data structure is used to record the asset names (like website name, etc..) + /// used when doing the record mode. Stored names will be used in the playback mode + /// to mock the exact behavior of the original test. + /// </summary> + [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable")] + public class AssetNames : IEnumerable<KeyValuePair<string, Queue<string>>> + { + public Dictionary<string, Queue<string>> Names { get; private set; } + + public AssetNames() + { + Names = new Dictionary<string, Queue<string>>(); + } + + /// <summary> + /// Initialize collection + /// </summary> + /// <param name="assetNames"></param> + public AssetNames(Dictionary<string, Queue<string>> assetNames) + { + Names = new Dictionary<string, Queue<string>>(assetNames); + } + + public void Enqueue(string testName, string assetName) + { + if (!Names.ContainsKey(testName)) + { + Names[testName] = new Queue<string>(); + } + Names[testName].Enqueue(assetName); + } + + public void Enqueue(string testName, string[] names) + { + if (!Names.ContainsKey(testName)) + { + Names[testName] = new Queue<string>(); + } + + names.ForEach(a => Names[testName].Enqueue(a)); + } + + public void EnqueueRange(Dictionary<string, string[]> names) + { + if (names != null) + { + foreach (KeyValuePair<string, string[]> item in names) + { + Enqueue(item.Key, item.Value); + } + } + } + + public Queue<string> this[string testName] + { + get { return Names[testName]; } + set { Names[testName] = value; } + } + + public bool ContainsKey(string testName) + { + return Names.ContainsKey(testName); + } + + public IEnumerator<KeyValuePair<string, Queue<string>>> GetEnumerator() + { + return Names.GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return Names.GetEnumerator(); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpMockServer.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpMockServer.cs new file mode 100644 index 0000000000000..695b1a45f2b04 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpMockServer.cs @@ -0,0 +1,251 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Rest; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + public class HttpMockServer : DelegatingHandler + { + // One of the enum values for HttpRecorderMode such as Record or Playback + private const string ModeEnvironmentVariableName = "AZURE_TEST_MODE"; + private static AssetNames names; + private static Records records; + private static List<HttpMockServer> servers; + private static bool initialized; + + public static HttpRecorderMode Mode { get; set; } + public static IRecordMatcher Matcher { get; set; } + public static string CallerIdentity { get; set; } + public static string TestIdentity { get; set; } + + static HttpMockServer() + { + Matcher = new SimpleRecordMatcher("x-ms-version"); + records = new Records(Matcher); + Variables = new Dictionary<string, string>(); + RecordsDirectory = "SessionRecords"; + } + + private HttpMockServer() { } + + public static void Initialize(Type callerIdentity, string testIdentity) + { + Initialize(callerIdentity, testIdentity, GetCurrentMode()); + } + + public static void Initialize(string callerIdentity, string testIdentity) + { + Initialize(callerIdentity, testIdentity, GetCurrentMode()); + } + + public static void Initialize(Type callerIdentity, string testIdentity, HttpRecorderMode mode) + { + Initialize(callerIdentity.Name, testIdentity, mode); + } + + public static void Initialize(string callerIdentity, string testIdentity, HttpRecorderMode mode) + { + CallerIdentity = callerIdentity; + TestIdentity = testIdentity; + Mode = mode; + names = new AssetNames(); + servers = new List<HttpMockServer>(); + records = new Records(Matcher); + Variables = new Dictionary<string, string>(); + + if (Mode == HttpRecorderMode.Playback) + { + string recordDir = Path.Combine(RecordsDirectory, CallerIdentity); + if (Directory.Exists(recordDir)) + { + foreach (string recordsFile in Directory.GetFiles(recordDir, testIdentity + ".json")) + { + RecordEntryPack pack = RecordEntryPack.Deserialize(recordsFile); + foreach (var entry in pack.Entries) + { + records.Enqueue(entry); + } + foreach (var func in pack.Names.Keys) + { + pack.Names[func].ForEach(n => names.Enqueue(func, n)); + } + Variables = pack.Variables; + if (Variables == null) + { + Variables = new Dictionary<string, string>(); + } + } + } + else + { + // if mock folder does not exist, switch execution back to HttpRecorderMode.None + throw new ArgumentException( + string.Format("Unable to find recorded mock directory '{0}'.", recordDir), "callerIdentity"); + } + } + + initialized = true; + } + + public static HttpMockServer CreateInstance() + { + if (!initialized) + { + throw new ApplicationException("HttpMockServer has not been initialized yet. Use HttpMockServer.Initialize() method to initialize the HttpMockServer."); + } + HttpMockServer server = new HttpMockServer(); + servers.Add(server); + return server; + } + + public static string RecordsDirectory { get; set; } + + protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + { + if (Mode == HttpRecorderMode.Playback) + { + // Will throw KeyNotFoundException if the request is not recorded + var result = records[Matcher.GetMatchingKey(request)].Dequeue().GetResponse(); + result.RequestMessage = request; + return Task.FromResult(result); + } + else + { + return base.SendAsync(request, cancellationToken).ContinueWith<HttpResponseMessage>(response => + { + HttpResponseMessage result = response.Result; + if (Mode == HttpRecorderMode.Record) + { + records.Enqueue(new RecordEntry(result)); + } + + return result; + }); + } + } + + private static Random randomGenerator = new Random(); + public static string GetAssetName(string testName, string prefix) + { + if (Mode == HttpRecorderMode.Playback) + { + return names[testName].Dequeue(); + } + else + { + string generated = prefix + randomGenerator.Next(9999); + + if (Mode == HttpRecorderMode.Record) + { + if (names.ContainsKey(testName)) + { + while (names[testName].Any(n => n.Equals(generated))) + { + generated = prefix + randomGenerator.Next(9999); + } + } + names.Enqueue(testName, generated); + } + + return generated; + } + } + + /// <summary> + /// Returns stored variable or variableValue if variableName is not found. + /// </summary> + /// <param name="variableName">Variable name</param> + /// <param name="variableValue">Variable value to be preserved in recording mode.</param> + /// <returns></returns> + public static string GetVariable(string variableName, string variableValue) + { + if (Mode == HttpRecorderMode.Record) + { + Variables[variableName] = variableValue; + return variableValue; + } + else + { + if (Variables.ContainsKey(variableName)) + { + return Variables[variableName]; + } + else + { + return variableValue; + } + } + } + + /// <summary> + /// Variables persistent across recording sessions. + /// </summary> + public static Dictionary<string, string> Variables { get; private set; } + + public void InjectRecordEntry(RecordEntry record) + { + if (Mode == HttpRecorderMode.Playback) + { + records.Enqueue(record); + } + } + + public static void Flush(string outputPath = null) + { + if (Mode == HttpRecorderMode.Record && records.Count > 0) + { + RecordEntryPack pack = new RecordEntryPack(); + + foreach (RecordEntry recordEntry in records.GetAllEntities()) + { + recordEntry.RequestHeaders.Remove("Authorization"); + recordEntry.RequestUri = new Uri(recordEntry.RequestUri).PathAndQuery; + pack.Entries.Add(recordEntry); + } + + pack.Variables = Variables; + + string fileDirectory = outputPath ?? RecordsDirectory; + string fileName = (TestIdentity ?? "record") + ".json"; + + fileDirectory = Path.Combine(fileDirectory, CallerIdentity); + + Utilities.EnsureDirectoryExists(fileDirectory); + + pack.Names = names.Names; + + fileName = Path.Combine(fileDirectory, fileName); + + pack.Serialize(fileName); + } + + servers.ForEach(s => s.Dispose()); + } + + public static HttpRecorderMode GetCurrentMode() + { + string input = Environment.GetEnvironmentVariable(ModeEnvironmentVariableName); + HttpRecorderMode mode; + + if (string.IsNullOrEmpty(input)) + { + mode = HttpRecorderMode.Playback; + } + else + { + mode = (HttpRecorderMode)Enum.Parse(typeof(HttpRecorderMode), input, true); + } + + return mode; + } + + } +} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpRecorderMode.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpRecorderMode.cs new file mode 100644 index 0000000000000..b50c0f18e06dc --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpRecorderMode.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + /// <summary> + /// Enum that holds possible modes for the http recorder. + /// </summary> + public enum HttpRecorderMode + { + /// <summary> + /// In this mode the mock server watches the out-going requests and records + /// their corresponding responses. + /// </summary> + Record, + + /// <summary> + /// The playback mode should always be after a successful record session. + /// The mock server matches the given requests and return their stored + /// corresponding responses. + /// </summary> + Playback, + + /// <summary> + /// The mock server does not do anything. + /// </summary> + None + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/IRecordMatcher.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/IRecordMatcher.cs new file mode 100644 index 0000000000000..d8b1b15b3b7a2 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/IRecordMatcher.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Net.Http; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + /// <summary> + /// Interface that used by the mock server for mapping a request with it's corresponding response. + /// </summary> + public interface IRecordMatcher + { + /// <summary> + /// Gets the key used for mapping a given RecordEntry request's with its response. + /// </summary> + /// <param name="recordEntry">The record entry containing the request info</param> + /// <returns>The key used for the mapping</returns> + string GetMatchingKey(RecordEntry recordEntry); + + /// <summary> + /// Gets the key mapping for the given request. + /// </summary> + /// <param name="request">The request to be mapped</param> + /// <returns>The key corresponding to this request</returns> + string GetMatchingKey(HttpRequestMessage request); + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/RecordEntry.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/RecordEntry.cs new file mode 100644 index 0000000000000..8d6e1b45019e0 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/RecordEntry.cs @@ -0,0 +1,80 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Http; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + public class RecordEntry + { + public string RequestUri { get; set; } + + /// <summary> + /// The request URi as a base64 string - removes encoding issues in matching + /// </summary> + public string EncodedRequestUri { get; set; } + + public string RequestMethod { get; set; } + + public string RequestBody { get; set; } + + public Dictionary<string, List<string>> RequestHeaders { get; set; } + + public string ResponseBody { get; set; } + + public Dictionary<string, List<string>> ResponseHeaders { get; set; } + + public HttpStatusCode StatusCode { get; set; } + + public RecordEntry() + { + + } + + public RecordEntry(HttpResponseMessage response) + { + HttpRequestMessage request = response.RequestMessage; + RequestUri = request.RequestUri.ToString(); + EncodedRequestUri = Utilities.EncodeUriAsBase64(request.RequestUri); + RequestMethod = request.Method.Method; + RequestHeaders = new Dictionary<string, List<string>>(); + if (request.Content != null) + { + RequestBody = Utilities.FormatString(request.Content.ReadAsStringAsync().Result); + request.Content.Headers.ForEach(h => RequestHeaders.Add(h.Key, h.Value.ToList())); + } + else + { + RequestBody = string.Empty; + } + request.Headers.ForEach(h => RequestHeaders.Add(h.Key, h.Value.ToList())); + + ResponseHeaders = new Dictionary<string, List<string>>(); + if (response.Content != null) + { + ResponseBody = Utilities.FormatString(response.Content.ReadAsStringAsync().Result); + response.Content.Headers.ForEach(h => ResponseHeaders.Add(h.Key, h.Value.ToList())); + } + else + { + ResponseBody = string.Empty; + } + response.Headers.ForEach(h => ResponseHeaders.Add(h.Key, h.Value.ToList())); + + StatusCode = response.StatusCode; + } + + public HttpResponseMessage GetResponse() + { + HttpResponseMessage response = new HttpResponseMessage(); + response.StatusCode = StatusCode; + ResponseHeaders.ForEach(h => response.Headers.TryAddWithoutValidation(h.Key, h.Value)); + response.Content = new StringContent(ResponseBody); + + return response; + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/RecordEntryPack.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/RecordEntryPack.cs new file mode 100644 index 0000000000000..f579dad05f96a --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/RecordEntryPack.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Collections.Generic; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + public class RecordEntryPack + { + public List<RecordEntry> Entries { get; set; } + public Dictionary<string, Queue<string>> Names { get; set; } + public Dictionary<string, string> Variables { get; set; } + + public RecordEntryPack() + { + Entries = new List<RecordEntry>(); + } + + public static RecordEntryPack Deserialize(string path) + { + return Utilities.DeserializeJson<RecordEntryPack>(path); + } + + public void Serialize(string path) + { + Utilities.SerializeJson(this, path); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/Records.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/Records.cs new file mode 100644 index 0000000000000..93d2df077c5ec --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/Records.cs @@ -0,0 +1,112 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Collections.Generic; +using System.Diagnostics; +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Runtime.CompilerServices; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable")] + public class Records + { + private Dictionary<string, Queue<RecordEntry>> sessionRecords; + + private IRecordMatcher matcher; + + public Records(IRecordMatcher matcher) + : this(new Dictionary<string, Queue<RecordEntry>>(), matcher) { } + + public Records(Dictionary<string, Queue<RecordEntry>> records, IRecordMatcher matcher) + { + this.sessionRecords = new Dictionary<string, Queue<RecordEntry>>(records); + this.matcher = matcher; + } + + public void Enqueue(RecordEntry record) + { + string recordKey = matcher.GetMatchingKey(record); + if (!sessionRecords.ContainsKey(recordKey)) + { + sessionRecords[recordKey] = new Queue<RecordEntry>(); + } + sessionRecords[recordKey].Enqueue(record); + } + + public Queue<RecordEntry> this[string key] + { + get + { + if (sessionRecords.ContainsKey(key)) + { + return sessionRecords[key]; + } + else + { + throw new KeyNotFoundException( + string.Format("Unable to find a matching HTTP request for URL '{0}'. Calling method {1}().", + Utilities.DecodeBase64AsUri(key), + GetCallingMethodName())); + } + } + set { sessionRecords[key] = value; } + } + + public IEnumerable<RecordEntry> GetAllEntities() + { + foreach (var queues in sessionRecords.Values) + { + while (queues.Count > 0) + { + yield return queues.Dequeue(); + } + } + } + + public int Count + { + get { return sessionRecords.Values.Select(q => q.Count).Sum(); } + } + + public void EnqueueRange(List<RecordEntry> records) + { + foreach (RecordEntry recordEntry in records) + { + Enqueue(recordEntry); + } + } + + private string GetCallingMethodName() + { + StackTrace st = new StackTrace(); + int depth = 3; + StackFrame sf = st.GetFrame(depth); + string methodName = string.Empty; + bool foundSendAsync = false; + while (sf != null) + { + depth++; + sf = st.GetFrame(depth); + if (sf != null) + { + methodName = sf.GetMethod().Name; + } + if (methodName == "SendAsync") + { + foundSendAsync = true; + } + if (foundSendAsync && + methodName != "MoveNext" && + methodName != "SendAsync" && + methodName != "Start") + { + break; + } + } + + return methodName; + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/SimpleRecordMatcher.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/SimpleRecordMatcher.cs new file mode 100644 index 0000000000000..ba4a02489a43c --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/SimpleRecordMatcher.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Text; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + /// <summary> + /// This class does a simple mapping between given request and responses. + /// The hashing algorithm works by combining the HTTP method of the request + /// plus the request uri together. Optionally a key-value pair of headers + /// can be added to the key. + /// </summary> + public class SimpleRecordMatcher : IRecordMatcher + { + public HashSet<string> MatchingHeaders { get; private set; } + + public SimpleRecordMatcher() + { + MatchingHeaders = new HashSet<string>(StringComparer.InvariantCultureIgnoreCase); + } + + public SimpleRecordMatcher(params string[] matchingHeaders) + { + MatchingHeaders = new HashSet<string>(matchingHeaders, StringComparer.InvariantCultureIgnoreCase); + } + + private string GetMatchingKey(string httpMethod, string requestUri, Dictionary<string, List<string>> requestHeaders) + { + StringBuilder key = new StringBuilder(string.Format("{0} {1}", httpMethod, requestUri)); + + if (requestHeaders != null) + { + foreach (var requestHeader in requestHeaders.OrderBy(h => h.Key)) + { + if (MatchingHeaders.Contains(requestHeader.Key)) + { + key.AppendFormat(" ({0}={1})", requestHeader.Key, string.Join(",", requestHeader.Value)); + } + } + } + + return key.ToString(); + } + + public string GetMatchingKey(RecordEntry recordEntry) + { + return GetMatchingKey(recordEntry.RequestMethod, + (recordEntry.EncodedRequestUri?? Utilities.EncodeUriAsBase64(recordEntry.RequestUri)), + recordEntry.RequestHeaders); + } + + public string GetMatchingKey(HttpRequestMessage request) + { + var requestHeaders = new Dictionary<string, List<string>>(); + request.Headers.ForEach(h => requestHeaders.Add(h.Key, h.Value.ToList())); + if (request.Content != null) + { + request.Content.Headers.ForEach(h => requestHeaders.Add(h.Key, h.Value.ToList())); + } + return GetMatchingKey(request.Method.Method, Utilities.EncodeUriAsBase64(request.RequestUri), requestHeaders); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/Utilities.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/Utilities.cs new file mode 100644 index 0000000000000..6458fca8412b8 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/Utilities.cs @@ -0,0 +1,176 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Diagnostics.CodeAnalysis; +using System.IO; +using System.Linq; +using System.Runtime.CompilerServices; +using System.Runtime.Serialization.Formatters; +using System.Text; +using System.Xml.Linq; +using Newtonsoft.Json; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder +{ + public static class Utilities + { + public static string FormatString(string content) + { + if (IsXml(content)) + { + return TryFormatXml(content); + } + else if (IsJson(content)) + { + return TryFormatJson(content); + } + else + { + return content; + } + } + + /// <summary> + /// Formats the given XML into indented way. + /// </summary> + /// <param name="content">The input xml string</param> + /// <returns>The formatted xml string</returns> + public static string TryFormatXml(string content) + { + try + { + XDocument doc = XDocument.Parse(content); + return doc.ToString(); + } + catch (Exception) + { + return content; + } + } + + /// <summary> + /// Checks if the content is valid XML or not. + /// </summary> + /// <param name="content">The text to check</param> + /// <returns>True if XML, false otherwise</returns> + public static bool IsXml(string content) + { + try + { + XDocument doc = XDocument.Parse(content); + return true; + } + catch (Exception) + { + return false; + } + } + + [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "Handling the failure by returning the original string.")] + public static string TryFormatJson(string str) + { + try + { + object parsedJson = JsonConvert.DeserializeObject(str); + return JsonConvert.SerializeObject(parsedJson, Formatting.Indented); + } + catch + { + // can't parse JSON, return the original string + return str; + } + } + + public static bool IsJson(string content) + { + content = content.Trim(); + return content.StartsWith("{") && content.EndsWith("}") + || content.StartsWith("[") && content.EndsWith("]"); + } + + /// <summary> + /// Perform an action on each element of a sequence. + /// </summary> + /// <typeparam name="T">Type of elements in the sequence.</typeparam> + /// <param name="sequence">The sequence.</param> + /// <param name="action">The action to perform.</param> + public static void ForEach<T>(this IEnumerable<T> sequence, Action<T> action) + { + Debug.Assert(sequence != null, "sequence cannot be null!"); + Debug.Assert(action != null, "action cannot be null!"); + + foreach (T element in sequence) + { + action(element); + } + } + + public static void SerializeJson<T>(T data, string path) + { + File.WriteAllText(path, JsonConvert.SerializeObject(data, Formatting.Indented, new JsonSerializerSettings + { + TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple, + TypeNameHandling = TypeNameHandling.None + })); + } + + public static T DeserializeJson<T>(string path) + { + string json = File.ReadAllText(path); + return JsonConvert.DeserializeObject<T>(json, new JsonSerializerSettings + { + TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple, + TypeNameHandling = TypeNameHandling.None + }); + } + + public static void CleanDirectory(string dir) + { + if (Directory.Exists(dir)) + { + foreach (string file in Directory.GetFiles(dir, "*.*", SearchOption.AllDirectories)) File.Delete(file); + foreach (string subDirectory in Directory.GetDirectories(dir, "*", SearchOption.AllDirectories)) Directory.Delete(subDirectory, true); + } + } + + public static void EnsureDirectoryExists(string dir) + { + if (!Directory.Exists(dir)) + { + Directory.CreateDirectory(dir); + } + } + + public static string EncodeUriAsBase64(Uri requestUri) + { + return Utilities.EncodeUriAsBase64(requestUri.PathAndQuery); + } + public static string EncodeUriAsBase64(string uriToEncode) + { + byte[] encodedUri = Encoding.UTF8.GetBytes(uriToEncode); + return Convert.ToBase64String(encodedUri); + } + public static string DecodeBase64AsUri(string uriToDecode) + { + if (string.IsNullOrEmpty(uriToDecode)) + { + return uriToDecode; + } + string[] uriSplit = uriToDecode.Split(new[] {' '}, StringSplitOptions.RemoveEmptyEntries); + if (uriSplit.Length < 2) + { + return uriToDecode; + } + string headers = string.Empty; + if (uriSplit.Length > 2) + { + headers = " " + string.Join(" ", uriSplit.Skip(2)); + } + byte[] encodedUri = Convert.FromBase64String(uriSplit[1]); + return string.Format("{0} {1}{2}", uriSplit[0], Encoding.UTF8.GetString(encodedUri), headers); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/MSSharedLibKey.snk b/src/ClientRuntime.Azure.TestFramework/TestFramework/MSSharedLibKey.snk new file mode 100644 index 0000000000000000000000000000000000000000..695f1b38774e839e5b90059bfb7f32df1dff4223 GIT binary patch literal 160 zcmV;R0AK$ABme*efB*oL000060ssI2Bme+XQ$aBR1ONa50098C{E+7Ye`kjtcRG*W zi8#m|)B?I?xgZ^2Sw5D;l4Tx<oWVa773;M>tPwG;3)3^j?qDHjEteSTF{rM+4WI`v zCD?tsZ^;k+S&r1&HRMb=j738S=;J$tCKNrc$@P|lZ<omTM^NRLTx8-HpGDsEYbq-e ON3FwUEA_(&1zo9`W<Mza literal 0 HcmV?d00001 diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj new file mode 100644 index 0000000000000..8f468c751afde --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup> + <!-- + Microsoft.Rest.ClientRuntime.Azure.TestFramework + --> + <SdkNuGetPackage Include="Microsoft.Rest.ClientRuntime.Azure.TestFramework"> + <PackageVersion>0.9.0-preview</PackageVersion> + <Folder>$(MSBuildThisFileDirectory)</Folder> + </SdkNuGetPackage> + </ItemGroup> +</Project> \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec new file mode 100644 index 0000000000000..3142d043a925a --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec @@ -0,0 +1,26 @@ +<?xml version="1.0"?> +<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> + <metadata minClientVersion="2.5"> + <id>Microsoft.Rest.ClientRuntime.Azure.TestFramework</id> + <releaseNotes>__BASELINE_RELEASE_NOTES__</releaseNotes> + <version>$version$</version> + <authors>Microsoft</authors> + <owners>azure-sdk, Microsoft</owners> + <licenseUrl>https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE</licenseUrl> + <projectUrl>https://github.com/Azure/azure-sdk-for-net</projectUrl> + <iconUrl>http://go.microsoft.com/fwlink/?LinkID=288890</iconUrl> + <requireLicenseAcceptance>false</requireLicenseAcceptance> + <summary>Test framework for AutoRest generated Azure management clients.</summary> + <description>Test utilities for xunit test suites for AutoRest generated Azure clients</description> + <releaseNotes>Experimental prerelease</releaseNotes> + <copyright>Copyright 2015</copyright> + <dependencies> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview, 1.0.15-preview)" /> + </dependencies> + </metadata> + <files> + <file src="..\..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll" target="lib\net45" /> + <file src="..\..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.pdb" target="lib\net45" /> + <file src="..\..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.xml" target="lib\net45" /> + </files> +</package> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/MockContext.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/MockContext.cs new file mode 100644 index 0000000000000..dab1802514d53 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/MockContext.cs @@ -0,0 +1,82 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + /// <summary> + /// A coordinator for tracking and undoing WAML operations. Usage pattern is + /// using(MockContext.Create()) + /// { + /// maml stuff + /// } + /// You can also manually call the Dispose() or UndoAll() methods to undo all 'undoable' operations since the + /// UndoContext was created. + /// Call: MockContext.Commit() to remove all undo information + /// </summary> + public class MockContext : IDisposable + { + //prevent multiple dispose events + protected bool disposed = false; + + /// <summary> + /// Return a new UndoContext + /// </summary> + /// <returns></returns> + public static MockContext Start(int currentMethodStackDepth = 2) + { + var className = TestUtilities.GetCallingClass(currentMethodStackDepth); + var methodName = TestUtilities.GetCurrentMethodName(currentMethodStackDepth); + return Start(className, methodName); + } + + /// <summary> + /// Return a new UndoContext + /// </summary> + /// <returns></returns> + public static MockContext Start(string className, string methodName) + { + var context = new MockContext(); + + HttpMockServer.Initialize(className, methodName); + if (HttpMockServer.Mode != HttpRecorderMode.Playback) + { + context.disposed = false; + } + + return context; + } + + /// <summary> + /// Stop recording and Discard all undo information + /// </summary> + public void Stop() + { + HttpMockServer.Flush(); + } + + /// <summary> + /// Dispose only if we have not previously been disposed + /// </summary> + /// <param name="disposing">true if we should dispose, otherwise false</param> + protected virtual void Dispose(bool disposing) + { + if (disposing && !this.disposed) + { + this.Stop(); + this.disposed = true; + } + } + + /// <summary> + /// Dispose the object + /// </summary> + public void Dispose() + { + this.Dispose(true); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000000..b3fe029a1bf39 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft.Rest.ClientRuntime.Azure.TestFramework.Framework")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Microsoft.Rest.ClientRuntime.Azure.TestFramework.Framework")] +[assembly: AssemblyCopyright("Microsoft (c) 2015")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("6eb355e3-e1e1-4f46-bcfa-737812ccff87")] +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.0.0")] diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/Resources.Designer.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/Resources.Designer.cs new file mode 100644 index 0000000000000..7abed24b8e317 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/Resources.Designer.cs @@ -0,0 +1,63 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.34014 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework.Properties { + using System; + + + /// <summary> + /// A strongly-typed resource class, for looking up localized strings, etc. + /// </summary> + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// <summary> + /// Returns the cached ResourceManager instance used by this class. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Rest.ClientRuntime.Azure.TestFramework.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// <summary> + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/Resources.resx b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/Resources.resx new file mode 100644 index 0000000000000..4fdb1b6aff69b --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/Resources.resx @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 1.3 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">1.3</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1">this is my long string</data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + [base64 mime encoded serialized .NET Framework object] + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + [base64 mime encoded string representing a byte array form of the .NET Framework object] + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>1.3</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root> \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Set-CredentialCache.ps1 b/src/ClientRuntime.Azure.TestFramework/TestFramework/Set-CredentialCache.ps1 new file mode 100644 index 0000000000000..5d6fd4fad3069 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Set-CredentialCache.ps1 @@ -0,0 +1,4 @@ +Add-Type -Path Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll +$cache = New-Object Microsoft.Rest.ClientRuntime.Azure.TestFramework.Authentication.CredManCache "SpecTestSupport" +$credential = Get-Credential +$cache[$credential.UserName] = $credential.GetNetworkCredential().Password \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/SubscriptionInfo.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/SubscriptionInfo.cs new file mode 100644 index 0000000000000..c2038a7e450c9 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/SubscriptionInfo.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public class SubscriptionInfo + { + public SubscriptionInfo(JObject resultObject) + { + Id = (string)(resultObject["id"]); + SubscriptionId = (string)(resultObject["subscriptionId"]); + DisplayName = (string)(resultObject["displayName"]); + State = (string)(resultObject["state"]); + } + + public string Id { get; set; } + + public string SubscriptionId { get; set; } + + public string DisplayName { get; set; } + + public string State { get; set; } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestBase.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestBase.cs new file mode 100644 index 0000000000000..6d293cd2e5b54 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestBase.cs @@ -0,0 +1,120 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; +using System; +using System.Collections.Generic; +using System.Net.Http; +using System.Reflection; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public partial class TestBase + { + static TestBase() + { + ServiceClientTracing.AddTracingInterceptor( + new TestingTracingInterceptor()); + } + + /// <summary> + /// Get a test environment using default options + /// </summary> + /// <typeparam name="T">The type of the service client to return</typeparam> + /// <returns>A Service client using credentials and base uri from the current environment</returns> + public static T GetServiceClient<T>(params DelegatingHandler[] handlers) + where T : ServiceClient<T>, IAzureClient + { + return TestBase.GetServiceClient<T>(TestEnvironmentFactory.GetTestEnvironment(), handlers); + } + + /// <summary> + /// Get a test environment, allowing the test to customize the creation options + /// </summary> + /// <typeparam name="T"></typeparam> + /// <param name="handlers">Delegating existingHandlers</param> + /// <returns></returns> + public static T GetServiceClient<T>(TestEnvironment currentEnvironment, params DelegatingHandler[] handlers) + where T : ServiceClient<T>, IAzureClient + { + T client; + handlers = AddMockHandler(handlers); + + if (currentEnvironment.UsesCustomUri()) + { + ConstructorInfo constructor = typeof(T).GetConstructor(new Type[] + { + typeof(Uri), + typeof(ServiceClientCredentials), + typeof(DelegatingHandler[]) + }); + client = constructor.Invoke(new object[] + { + currentEnvironment.BaseUri, + currentEnvironment.Credentials, + handlers + }) as T; + } + else + { + ConstructorInfo constructor = typeof(T).GetConstructor(new Type[] + { + typeof(ServiceClientCredentials), + typeof(DelegatingHandler[]) + }); + client = constructor.Invoke(new object[] + { + currentEnvironment.Credentials, + handlers + }) as T; + } + + var subscriptionId = typeof(T).GetProperty("SubscriptionId"); + if (subscriptionId != null && currentEnvironment.SubscriptionId != null) + { + subscriptionId.SetValue(client, currentEnvironment.SubscriptionId); + } + + var tenantId = typeof(T).GetProperty("TenantId"); + if (tenantId != null && currentEnvironment.Tenant != null) + { + tenantId.SetValue(client, currentEnvironment.Tenant); + } + SetLongRunningOperationTimeouts(client); + return client; + } + + private static void SetLongRunningOperationTimeouts<T>(T client) where T : class + { + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + PropertyInfo retryTimeout = typeof(T).GetProperty("LongRunningOperationRetryTimeout"); + if (retryTimeout != null) + { + retryTimeout.SetValue(client, 0); + } + } + } + + protected static DelegatingHandler[] AddMockHandler(params DelegatingHandler[] existingHandlers) + { + HttpMockServer server; + + try + { + server = HttpMockServer.CreateInstance(); + } + catch (ApplicationException) + { + // mock server has never been initialized, we will need to initialize it. + HttpMockServer.Initialize("TestEnvironment", "InitialCreation"); + server = HttpMockServer.CreateInstance(); + } + + var handlers = new List<DelegatingHandler>(existingHandlers); + handlers.Add(server); + return handlers.ToArray(); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEndpoints.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEndpoints.cs new file mode 100644 index 0000000000000..c821e9975db4f --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEndpoints.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public enum EnvironmentNames + { + Prod, + Dogfood, + Next, + Current + } + + public class TestEndpoints + { + //TestEnvironment Name + public EnvironmentNames Name { get; set; } + + //managementEndpointUrl - rdfe + public Uri ServiceManagementUri { get; set; } + + //resourceManagerEndpointUrl - csm + public Uri ResourceManagementUri { get; set; } + + //activeDirectoryGraphResourceId + public Uri GraphUri { get; set; } + + //galleryEndpointUrl + public Uri GalleryUri { get; set; } + + //activeDirectoryEndpointUrl + public Uri AADAuthUri { get; set; } + + //portalUrl - rdfe + public Uri RdfePortalUri { get; set; } + + // portal url - csm + public Uri IbizaPortalUri { get; set; } + + // the DNS suffix for the DataLake Filesystem service + public Uri DataLakeServiceUri { get; set; } + + // the Kona catalog front end url + public Uri KonaJobAndCatalogServiceUri { get; set; } + + // AAD Token Audience + public Uri AADTokenAudienceUri { get; set; } + + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs new file mode 100644 index 0000000000000..5081559d62b5f --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs @@ -0,0 +1,324 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Rest; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public class TestEnvironment + { + /// <summary> + /// The key inside the connection string for the management certificate + /// </summary> + public const string ManagementCertificateKey = ConnectionStringFields.ManagementCertificate; + + /// <summary> + /// The key inside the connection string for the subscription identifier + /// </summary> + public const string SubscriptionIdKey = ConnectionStringFields.SubscriptionId; + + /// <summary> + /// The key inside the connection string for the base uri + /// </summary> + public const string BaseUriKey = ConnectionStringFields.BaseUri; + + /// <summary> + /// The service management endpoint name + /// </summary> + public const string ServiceManagementUri = "ServiceManagementUri"; + + /// <summary> + /// The resource management endpoint name + /// </summary> + public const string ResourceManagementUri = "ResourceManagementUri"; + + /// <summary> + /// Service principal key + /// </summary> + public const string ServicePrincipalKey = ConnectionStringFields.ServicePrincipal; + + /// <summary> + /// The key inside the connection string for the userId identifier + /// </summary> + public const string UserIdKey = ConnectionStringFields.UserId; + public const string UserIdDefault = "user@example.com"; + + /// <summary> + /// The key inside the connection string for the AADPassword identifier + /// </summary> + public const string AADPasswordKey = ConnectionStringFields.Password; + + public const string EnvironmentKey = ConnectionStringFields.Environment; + public const EnvironmentNames EnvironmentDefault = EnvironmentNames.Prod; + + /// <summary> + /// The key inside the connection string for the AAD client ID" + /// </summary> + public const string ClientIdKey = ConnectionStringFields.AADClientId; + public const string ClientIdDefault = "1950a258-227b-4e31-a9cf-717495945fc2"; + + /// <summary> + /// The key inside the connection string for the AAD Tenant + /// </summary> + public const string AADTenantKey = ConnectionStringFields.AADTenant; + public const string AADTenantDefault = "common"; + + /// <summary> + /// A raw token to be used for authentication with the give subscription ID + /// </summary> + public const string RawToken = ConnectionStringFields.RawToken; + public static string RawTokenDefault = Guid.NewGuid().ToString(); + + public TestEndpoints Endpoints { get; set; } + + public static IDictionary<EnvironmentNames, TestEndpoints> EnvEndpoints; + + static TestEnvironment() + { + EnvEndpoints = new Dictionary<EnvironmentNames, TestEndpoints>(); + EnvEndpoints.Add(EnvironmentNames.Prod, new TestEndpoints + { + Name = EnvironmentNames.Prod, + AADAuthUri = new Uri("https://login.windows.net"), + GalleryUri = new Uri("https://gallery.azure.com/"), + GraphUri = new Uri("https://graph.windows.net/"), + IbizaPortalUri = new Uri("https://portal.azure.com/"), + RdfePortalUri = new Uri("http://go.microsoft.com/fwlink/?LinkId=254433"), + ResourceManagementUri = new Uri("https://management.azure.com/"), + ServiceManagementUri = new Uri("https://management.core.windows.net"), + AADTokenAudienceUri = new Uri("https://management.core.windows.net"), + DataLakeServiceUri = new Uri("https://caboaccountdogfood.net"), // TODO: change once a "prod" environment is published + KonaJobAndCatalogServiceUri = new Uri("https://konaaccountdogfood.net") // TODO: change once a "prod" environment is published + }); + EnvEndpoints.Add(EnvironmentNames.Dogfood, new TestEndpoints + { + Name = EnvironmentNames.Dogfood, + AADAuthUri = new Uri("https://login.windows-ppe.net"), + GalleryUri = new Uri("https://df.gallery.azure-test.net/"), + GraphUri = new Uri("https://graph.ppe.windows.net/"), + IbizaPortalUri = new Uri("http://df.onecloud.azure-test.net"), + RdfePortalUri = new Uri("https://windows.azure-test.net"), + ResourceManagementUri = new Uri("https://api-dogfood.resources.windows-int.net/"), + ServiceManagementUri = new Uri("https://management-preview.core.windows-int.net"), + AADTokenAudienceUri = new Uri("https://management.core.windows.net"), + DataLakeServiceUri = new Uri("https://caboaccountdogfood.net"), + KonaJobAndCatalogServiceUri = new Uri("https://konaaccountdogfood.net") + }); + EnvEndpoints.Add(EnvironmentNames.Next, new TestEndpoints + { + Name = EnvironmentNames.Next, + AADAuthUri = new Uri("https://login.windows-ppe.net"), + GalleryUri = new Uri("https://next.gallery.azure-test.net/"), + GraphUri = new Uri("https://graph.ppe.windows.net/"), + IbizaPortalUri = new Uri("http://next.onecloud.azure-test.net"), + RdfePortalUri = new Uri("https://auxnext.windows.azure-test.net"), + ResourceManagementUri = new Uri("https://api-next.resources.windows-int.net/"), + ServiceManagementUri = new Uri("https://managementnext.rdfetest.dnsdemo4.com"), + AADTokenAudienceUri = new Uri("https://management.core.windows.net"), + DataLakeServiceUri = new Uri("https://caboaccountdogfood.net"), // TODO: change once a "next" environment is published + KonaJobAndCatalogServiceUri = new Uri("https://konaaccountdogfood.net") // TODO: change once a "next" environment is published + }); + EnvEndpoints.Add(EnvironmentNames.Current, new TestEndpoints + { + Name = EnvironmentNames.Current, + AADAuthUri = new Uri("https://login.windows-ppe.net"), + GalleryUri = new Uri("https://current.gallery.azure-test.net/"), + GraphUri = new Uri("https://graph.ppe.windows.net/"), + IbizaPortalUri = new Uri("http://current.onecloud.azure-test.net"), + RdfePortalUri = new Uri("https://auxcurrent.windows.azure-test.net"), + ResourceManagementUri = new Uri("https://api-current.resources.windows-int.net/"), + ServiceManagementUri = new Uri("https://management.rdfetest.dnsdemo4.com"), + AADTokenAudienceUri = new Uri("https://management.core.windows.net"), + DataLakeServiceUri = new Uri("https://caboaccountdogfood.net"), // TODO: change once a "Current" environment is published + KonaJobAndCatalogServiceUri = new Uri("https://konaaccountdogfood.net") // TODO: change once a "Current" environment is published + }); + } + + public TestEnvironment() + : this(null) + { + } + + public TestEnvironment(IDictionary<string, string> connection) + { + // Instantiate dictionary of parameters + RawParameters = new Dictionary<string, string>(); + // By default set env to Prod + this.Endpoints = TestEnvironment.EnvEndpoints[EnvironmentDefault]; + + this.BaseUri = this.Endpoints.ResourceManagementUri; + this.ClientId = TestEnvironment.ClientIdDefault; + this.Tenant = TestEnvironment.AADTenantDefault; + + if (connection != null) + { + if (connection.ContainsKey(TestEnvironment.UserIdKey)) + { + this.UserName = connection[TestEnvironment.UserIdKey]; + } + if (connection.ContainsKey(TestEnvironment.ServicePrincipalKey)) + { + this.ServicePrincipal = connection[TestEnvironment.ServicePrincipalKey]; + } + if (connection.ContainsKey(TestEnvironment.AADTenantKey)) + { + this.Tenant = connection[TestEnvironment.AADTenantKey]; + } + if (connection.ContainsKey(TestEnvironment.SubscriptionIdKey)) + { + this.SubscriptionId = connection[TestEnvironment.SubscriptionIdKey]; + } + if (connection.ContainsKey(TestEnvironment.ClientIdKey)) + { + this.ClientId = connection[TestEnvironment.ClientIdKey]; + } + if (connection.ContainsKey(TestEnvironment.EnvironmentKey)) + { + if (ConnectionStringContainsEndpoint(connection)) + { + throw new ArgumentException("Invalid connection string, can contain endpoints or environment but not both", + "connection"); + } + + var envNameString = connection[TestEnvironment.EnvironmentKey]; + + EnvironmentNames envName; + if(!Enum.TryParse<EnvironmentNames>(envNameString, out envName)) + { + throw new Exception( + string.Format("Environment \"{0}\" is not valid", envNameString)); + } + + this.Endpoints = TestEnvironment.EnvEndpoints[envName]; + //need to set the right baseUri + this.BaseUri = this.Endpoints.ResourceManagementUri; + } + if (connection.ContainsKey(TestEnvironment.BaseUriKey)) + { + var baseUriString = connection[TestEnvironment.BaseUriKey]; + this.BaseUri = new Uri(baseUriString); + if (!connection.ContainsKey(TestEnvironment.EnvironmentKey)) + { + EnvironmentNames envName = LookupEnvironmentFromBaseUri(baseUriString); + this.Endpoints = TestEnvironment.EnvEndpoints[envName]; + } + } + if (connection.ContainsKey(ConnectionStringFields.AADAuthenticationEndpoint)) + { + this.Endpoints.AADAuthUri = new Uri(connection[ConnectionStringFields.AADAuthenticationEndpoint]); + } + if (connection.ContainsKey(ConnectionStringFields.GraphUri)) + { + this.Endpoints.GraphUri = new Uri(connection[ConnectionStringFields.GraphUri]); + } + if (connection.ContainsKey(ConnectionStringFields.GalleryUri)) + { + this.Endpoints.GalleryUri = new Uri(connection[ConnectionStringFields.GalleryUri]); + } + if (connection.ContainsKey(ConnectionStringFields.IbizaPortalUri)) + { + this.Endpoints.IbizaPortalUri = new Uri(connection[ConnectionStringFields.IbizaPortalUri]); + } + if (connection.ContainsKey(ConnectionStringFields.RdfePortalUri)) + { + this.Endpoints.RdfePortalUri = new Uri(connection[ConnectionStringFields.RdfePortalUri]); + } + if (connection.ContainsKey(ConnectionStringFields.DataLakeServiceUri)) + { + this.Endpoints.DataLakeServiceUri = new Uri(connection[ConnectionStringFields.DataLakeServiceUri]); + } + if (connection.ContainsKey(ConnectionStringFields.KonaCatalogServiceUri)) + { + this.Endpoints.KonaJobAndCatalogServiceUri = new Uri(connection[ConnectionStringFields.KonaCatalogServiceUri]); + } + RawParameters = connection; + } + + } + + private bool ConnectionStringContainsEndpoint(IDictionary<string, string> connection) + { + return new[] + { + ConnectionStringFields.BaseUri, + ConnectionStringFields.GraphUri, + ConnectionStringFields.GalleryUri, + ConnectionStringFields.AADAuthenticationEndpoint, + ConnectionStringFields.IbizaPortalUri, + ConnectionStringFields.RdfePortalUri, + ConnectionStringFields.DataLakeServiceUri, + ConnectionStringFields.KonaCatalogServiceUri, + ConnectionStringFields.AADTokenAudienceUri + }.Any(connection.ContainsKey); + } + + private bool CustomUri = false; + private Uri _BaseUri; + + public Uri BaseUri + { + get + { + return this._BaseUri; + } + + set + { + this.CustomUri = true; + this._BaseUri = value; + } + } + + public ServiceClientCredentials Credentials { get; set; } + + public string ServicePrincipal { get; set; } + + public string UserName { get; set; } + + public string Tenant { get; set; } + + public string ClientId { get; set; } + + public string SubscriptionId { get; set; } + + public string UserDomain { get; set; } + + public IDictionary<string, string> RawParameters { get; set; } + + public bool UsesCustomUri() + { + return this.CustomUri; + } + + public EnvironmentNames LookupEnvironmentFromBaseUri(string endpointValue) + { + foreach(TestEndpoints testEndpoint in EnvEndpoints.Values) + { + if (MatchEnvironmentBaseUri(testEndpoint, endpointValue)) + { + return testEndpoint.Name; + } + } + return EnvironmentNames.Prod; + } + + private static bool MatchEnvironmentBaseUri(TestEndpoints testEndpoint, string endpointValue) + { + endpointValue = EnsureTrailingSlash(endpointValue); + return string.Equals(testEndpoint.ResourceManagementUri.ToString(), endpointValue, StringComparison.OrdinalIgnoreCase); + } + + private static string EnsureTrailingSlash(string uri) + { + if(uri.EndsWith("/")) + { + return uri; + } + + return string.Format("{0}/", uri); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs new file mode 100644 index 0000000000000..c03c89d2ddf98 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs @@ -0,0 +1,199 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; +using Microsoft.Rest; +using System.Net.Http; +using Newtonsoft.Json.Linq; +using Microsoft.Azure.Authentication; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public static class TestEnvironmentFactory + { + /// <summary> + /// The environment variable name for CSM OrgId authentication + /// + /// Sample Value 1 - Get token from user and password: + /// TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId={subscription-id};BaseUri=https://api-next.resources.windows-int.net/;UserId={user-id};Password={password} + /// + /// Sample Value 2 - Prompt for login credentials: + /// TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId={subscription-id};AADAuthEndpoint=https://login.windows-ppe.net/;BaseUri=https://api-next.resources.windows-int.net/ + /// </summary> + const string TestCSMOrgIdConnectionStringKey = "TEST_CSM_ORGID_AUTHENTICATION"; + + /// <summary> + /// Custom values that should override environment variables during runtime + /// </summary> + public static Dictionary<string, string> CustomEnvValues = new Dictionary<string, string>(); + + /// <summary> + /// Return test credentials and URI using AAD auth for an OrgID account. Use this method with caution, it may take a dependency on ADAL + /// </summary> + /// <returns>The test credentials, or null if the appropriate environment variable is not set.</returns> + public static TestEnvironment GetTestEnvironment() + { + string connectionString = Environment.GetEnvironmentVariable(TestCSMOrgIdConnectionStringKey); + TestEnvironment testEnv = new TestEnvironment(TestUtilities.ParseConnectionString(connectionString)); + string token = null; + CredManCache credCache = new CredManCache("SpecTestSupport"); + + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + token = TestEnvironment.RawTokenDefault; + testEnv.UserName = TestEnvironment.UserIdDefault; + SetEnvironmentSubscriptionId(testEnv, connectionString); + testEnv.Credentials = new TokenCredentials(token); + } + else //Record or None + { + if (!string.IsNullOrEmpty(connectionString)) + { + IDictionary<string, string> parsedConnection = TestUtilities.ParseConnectionString(connectionString); + + foreach (var keyVal in CustomEnvValues) + { + parsedConnection[keyVal.Key] = keyVal.Value; + } + testEnv = new TestEnvironment(parsedConnection); + + if (parsedConnection.ContainsKey(TestEnvironment.RawToken)) + { + token = parsedConnection[TestEnvironment.RawToken]; + testEnv.Credentials = new TokenCredentials(token); + } + else + { + string password = null; + if(!parsedConnection.TryGetValue(TestEnvironment.AADPasswordKey, out password)) + { + credCache.TryGetValue(testEnv.UserName, out password); + } + + if (testEnv.UserName != null && password != null) + { + ServiceClientTracing.Information("Using AAD auth with username and password combination"); + testEnv.Credentials = new UserTokenCredentials(testEnv.ClientId, + testEnv.UserDomain, testEnv.UserName, password, testEnv.AsAzureEnvironment()); + } + else if (testEnv.ServicePrincipal != null && password != null) + { + ServiceClientTracing.Information("Using AAD auth with service principal and password combination"); + testEnv.Credentials = new ApplicationTokenCredentials(testEnv.ServicePrincipal, + testEnv.UserDomain, password, testEnv.AsAzureEnvironment()); + } + } + }//end-of-if connectionString present + + if (testEnv.Credentials == null) + { + //will authenticate the user if the connection string is nullOrEmpty and the mode is not playback + ServiceClientTracing.Information("Using AAD auth with pop-up dialog using default environment..."); + testEnv.Credentials = new UserTokenCredentials(testEnv.ClientId, + testEnv.UserDomain, testEnv.AsAzureEnvironment()); + } + + //Getting subscriptions from server + var subscriptions = ListSubscriptions( + testEnv.BaseUri.ToString(), + token); + + if (subscriptions.Count == 0) + { + throw new Exception("Logged in account had no associated subscriptions. We are in " + + testEnv.Endpoints.Name + " environment and the tenant is " + + testEnv.Tenant + ". Please check if the subscription is in the " + + "correct tenant and environment. You can set the envt. variable - " + + "TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId=<subscription-id>;" + + "Environment=<Env-name>;Tenant=<tenant-id>"); + } + + bool matchingSubscription = false; + //SubscriptionId is provided in envt. variable + if (testEnv.SubscriptionId != null) + { + matchingSubscription = subscriptions.Any(item => item.SubscriptionId == testEnv.SubscriptionId); + if (!matchingSubscription) + { + throw new Exception("The provided SubscriptionId in the envt. variable - \"" + testEnv.SubscriptionId + + "\" does not match the list of subscriptions associated with this account."); + } + } + else + { + if (subscriptions.Count > 1) + { + throw new Exception("There are multiple subscriptions associated with the logged in account. " + + "Please specify the subscription to use in the connection string. Please set " + + "the envt. variable - TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId=<subscription-id>"); + } + testEnv.SubscriptionId = subscriptions[0].SubscriptionId; + } + + if (testEnv.SubscriptionId == null) + { + throw new Exception("Subscription Id was not provided in environment variable. " + "Please set " + + "the envt. variable - TEST_CSM_ORGID_AUTHENTICATION=SubscriptionId=<subscription-id>"); + } + + SetEnvironmentSubscriptionId(testEnv, connectionString); + } + + return testEnv; + } + + public static void SetEnvironmentSubscriptionId(TestEnvironment testEnv, string connectionString) + { + if (HttpMockServer.Mode == HttpRecorderMode.Playback) + { + if (HttpMockServer.Variables.ContainsKey(TestEnvironment.SubscriptionIdKey)) + { + testEnv.SubscriptionId = HttpMockServer.Variables[TestEnvironment.SubscriptionIdKey]; + } + else if (!string.IsNullOrEmpty(connectionString)) + { + IDictionary<string, string> parsedConnection = TestUtilities.ParseConnectionString(connectionString); + if (!parsedConnection.ContainsKey(TestEnvironment.SubscriptionIdKey)) + { + throw new Exception( + "Subscription ID is not present in the recorded mock or in environment variables."); + } + testEnv.SubscriptionId = parsedConnection[TestEnvironment.SubscriptionIdKey]; + } + else + { + throw new Exception( + "Subscription ID is not present in the recorded mock or in environment variables."); + } + } + else //Record or None + { + // Preserve/restore subscription ID + HttpMockServer.Variables[TestEnvironment.SubscriptionIdKey] = testEnv.SubscriptionId; + } + } + + public static List<SubscriptionInfo> ListSubscriptions(string baseuri, string accessToken) + { + var request = new HttpRequestMessage + { + RequestUri = new Uri(string.Format("{0}/subscriptions?api-version=2014-04-01-preview", baseuri)) + }; + + request.Headers.Add("Authorization", string.Format("Bearer {0}", accessToken)); + + HttpClient client = new HttpClient(); + HttpResponseMessage response = client.SendAsync(request).Result; + response.EnsureSuccessStatusCode(); + + string jsonString = response.Content.ReadAsStringAsync().Result; + + var jsonResult = JObject.Parse(jsonString); + var results = ((JArray)jsonResult["value"]).Select(item => new SubscriptionInfo((JObject)item)).ToList(); + return results; + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestTraits.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestTraits.cs new file mode 100644 index 0000000000000..3887ee1146b58 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestTraits.cs @@ -0,0 +1,13 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public static class TestTraits + { + public const string AcceptanceType = "AcceptanceType"; + public const string CheckIn = "CheckIn"; + public const string LiveBVT = "LiveBVT"; + public const string MockedBVT = "MockedBVT"; + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs new file mode 100644 index 0000000000000..999eaed657223 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs @@ -0,0 +1,159 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Net; +using System.Runtime.CompilerServices; +using System.Text; +using System.Threading; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; +using Microsoft.Azure.Authentication; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public static partial class TestUtilities + { + public static AzureEnvironment AsAzureEnvironment(this TestEnvironment env) + { + return new AzureEnvironment { + AuthenticationEndpoint = env.Endpoints.AADAuthUri, + TokenAudience = env.Endpoints.AADTokenAudienceUri, + ValidateAuthority = false + }; + } + + /// <summary> + /// Simply function determining retry policy - retry on any internal server error + /// </summary> + public static Func<HttpStatusCode, bool> RetryOnHttp500 = (s => HttpStatusCode.InternalServerError == s); + + /// <summary> + /// Generate a name to be used in azure + /// </summary> + /// <returns></returns> + public static string GenerateName(string prefix = "azsmnet") + { + return HttpMockServer.GetAssetName(GetCurrentMethodName(2), prefix); + } + + /// <summary> + /// Used for mthod traces - format method arguments as a string for output or tracing + /// </summary> + /// <param name="parameters">A dictionary representing the parameters of a method call</param> + /// <returns>A string representation of the parameters</returns> + public static string AsFormattedString(this IDictionary<string, object> parameters) + { + StringBuilder builder = new StringBuilder("("); + if (parameters != null) + { + for (int i = 0; i < parameters.Keys.Count; ++i) + { + string key = parameters.Keys.ElementAt(i); + object value = parameters[key]; + builder.AppendFormat("{0}:{1}", key, value); + if (i < parameters.Keys.Count - 1) + { + builder.Append(", "); + } + } + } + + builder.Append(")"); + return builder.ToString(); + } + + /// <summary> + /// End a test, flushing mocks as appropriate + /// </summary> + public static void EndTest() + { + HttpMockServer.Flush(); + } + + /// <summary> + /// Wait for the specified number of milliseconds unless we are in mock playback mode + /// </summary> + /// <param name="milliseconds">The number of milliseconds to wait</param> + public static void Wait(int milliseconds) + { + Wait(TimeSpan.FromMilliseconds(milliseconds)); + } + + /// <summary> + /// Wait for the specified span unless we are in mock playback mode + /// </summary> + /// <param name="timeout">The span of time to wait for</param> + public static void Wait(TimeSpan timeout) + { + if (HttpMockServer.Mode != HttpRecorderMode.Playback) + { + Thread.Sleep(timeout); + } + } + + /// <summary> + /// Get the method name of the calling method + /// </summary> + /// <param name="index">How deep into the stack trace to look - here we want the caller's caller.</param> + /// <returns>The name of the declaring method</returns> + [MethodImpl(MethodImplOptions.NoInlining)] + public static string GetCurrentMethodName(int index = 1) + { + StackTrace st = new StackTrace(); + StackFrame sf = st.GetFrame(index); + + return sf.GetMethod().Name; + } + + /// <summary> + /// Get the typename of the calling class + /// </summary> + /// <param name="index">How deep into the stack trace to look - here we want the caller's caller.</param> + /// <returns>The name of the declaring type</returns> + [MethodImpl(MethodImplOptions.NoInlining)] + public static string GetCallingClass(int index = 1) + { + StackTrace st = new StackTrace(); + StackFrame sf = st.GetFrame(index); + + return sf.GetMethod().ReflectedType.ToString(); + } + + /// <summary> + /// Break up the connection string into key-value pairs + /// </summary> + /// <param name="connectionString">The connection string to parse</param> + /// <returns>A dictionary of keys and values from the connection string</returns> + public static IDictionary<string, string> ParseConnectionString(string connectionString) + { + // Temporary connection string parser. We should replace with more robust one + IDictionary<string, string> settings = new Dictionary<string, string>(); + if (!string.IsNullOrEmpty(connectionString)) + { + string[] pairs = connectionString.Split(new char[] {';'}, StringSplitOptions.RemoveEmptyEntries); + try + { + foreach (string pair in pairs) + { + string[] keyValue = pair.Split(new char[] {'='}, 2); + string key = keyValue[0].Trim(); + string value = keyValue[1].Trim(); + settings[key] = value; + } + + } + catch (NullReferenceException ex) + { + throw new ArgumentException( + string.Format("Connection string \"{0}\" is invalid", connectionString), + "connectionString", ex); + } + } + return settings; + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestingTracingInterceptor.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestingTracingInterceptor.cs new file mode 100644 index 0000000000000..3ddc4b940c1cd --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestingTracingInterceptor.cs @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Net.Http; +using Microsoft.Rest; + +namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework +{ + public class TestingTracingInterceptor : IServiceClientTracingInterceptor + { + public TestingTracingInterceptor() + { + Debug.Listeners.Add(new DefaultTraceListener()); + } + + private void Write(string message, params object[] arguments) + { + if (arguments == null || arguments.Length == 0) + { + Console.WriteLine(message); + Debug.WriteLine(message); + } + else + { + Console.WriteLine(message, arguments); + Debug.WriteLine(message, arguments); + } + } + + public void Information(string message) + { + Write(message); + } + + public void Configuration(string source, string name, string value) + { + } + + public void SendRequest(string invocationId, HttpRequestMessage request) + { + Write("{0} - {1}", invocationId, request.AsFormattedString()); + } + + public void ReceiveResponse(string invocationId, HttpResponseMessage response) + { + Write("{0} - {1}", invocationId, response.AsFormattedString()); + } + + public void EnterMethod(string invocationId, object instance, string method, IDictionary<string, object> parameters) + { + Write("{0} - [{1}]: Entered method {2} with arguments: {3}", invocationId, instance, method, parameters.AsFormattedString()); + } + + public void ExitMethod(string invocationId, object returnValue) + { + Write("{0} - Exited method with result: {1}", invocationId, returnValue); + } + + public void TraceError(string invocationId, Exception exception) + { + Write("{0} - Error: {1}", invocationId, exception); + } + } +} diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config new file mode 100644 index 0000000000000..d95bcce0ef121 --- /dev/null +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<packages> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> +</packages> \ No newline at end of file From fcabd3c552d3e347cb53764ce7058f252f3bf3db Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 07:47:13 -0700 Subject: [PATCH 07/34] Moving TestFramework to repo - work in progress --- ...ntRuntime.Azure.TestFramework.Tests.csproj | 13 +- .../HttpRecorder/HttpMockServerTests.cs | 3 + .../ClientRuntime.Azure.TestFramework.csproj | 2 - .../HttpRecorder/HttpMockServer.cs | 7 +- .../TestFramework/TestUtilities.cs | 8 - .../Compute.Tests/Compute.Tests.csproj | 53 ++--- .../Compute/Compute.Tests/packages.config | 16 +- .../ComputeManagement.csproj | 14 +- .../Microsoft.Azure.Management.Compute.nuspec | 4 +- .../Compute/ComputeManagement/packages.config | 4 +- .../Helpers/NetworkManagementTestUtilities.cs | 10 +- .../ResourcesManagementTestUtilities.cs | 12 +- .../Network.Tests/Network.Tests.csproj | 39 ++-- .../Network.Tests/Properties/AssemblyInfo.cs | 2 + .../Tests/ApplicationGatewayTests.cs | 5 +- .../Tests/CheckDnsAvailabilityTests.cs | 5 +- .../Tests/GatewayOperationsTests.cs | 17 +- .../Network.Tests/Tests/LoadBalancerTests.cs | 29 +-- .../Tests/NetworkInterfaceTests.cs | 9 +- .../Tests/NetworkSecurityGroupTests.cs | 9 +- .../Tests/PublicIpAddressTests.cs | 9 +- .../Network.Tests/Tests/SecurityRuleTests.cs | 5 +- .../Network.Tests/Tests/SubnetTests.cs | 5 +- .../Network/Network.Tests/Tests/UsageTests.cs | 5 +- .../Tests/VirtualNetworkTests.cs | 5 +- .../Network/Network.Tests/packages.config | 16 +- src/ResourceManagement/Network/Network.sln | 10 + .../Microsoft.Azure.Management.Network.nuspec | 2 +- .../NetworkManagement.csproj | 10 +- .../Network/NetworkManagement/packages.config | 4 +- src/ResourceManagement/Resource/Resource.sln | 10 + ...icrosoft.Azure.Management.Resources.nuspec | 2 +- .../ResourceManagement.csproj | 14 +- .../ResourceManagement/packages.config | 2 +- .../InMemoryTests/FeatureTests.InMemory.cs | 6 +- .../Properties/AssemblyInfo.cs | 2 + .../Resources.Tests/Resources.Tests.csproj | 39 ++-- .../DeploymentTests.ScenarioTests.cs | 25 +-- .../ProviderTests.ScenarioTests.cs | 206 +++++++++--------- .../ResourceGroupTests.ScenarioTests.cs | 96 ++++---- .../ResourceTests.ScenarioTests.cs | 25 +-- .../SubscriptionTests.ScenarioTests.cs | 18 +- .../ScenarioTests/TagTests.ScenarioTests.cs | 17 +- .../TenantTests.ScenarioTests.cs | 9 +- .../ResourcesManagementTestUtilities.cs | 19 +- .../Resource/Resources.Tests/packages.config | 16 +- .../Helpers/StorageManagementTestUtilities.cs | 13 +- .../Storage.Tests/Properties/AssemblyInfo.cs | 2 + .../Storage.Tests/Storage.Tests.csproj | 65 +++--- .../Tests/StorageAccountTests.cs | 38 +--- .../Storage/Storage.Tests/packages.config | 14 +- src/ResourceManagement/Storage/Storage.sln | 10 + .../Microsoft.Azure.Management.Storage.nuspec | 2 +- .../StorageManagement.csproj | 10 +- .../Storage/StorageManagement/packages.config | 4 +- 55 files changed, 478 insertions(+), 518 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj index 108f30c93a428..8b65bdbef7ecf 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj @@ -1,5 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')"/> + <Import Project="..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')"/> <PropertyGroup> <SDKTestProject>true</SDKTestProject> <AutoRestProjects>true</AutoRestProjects> @@ -11,8 +13,10 @@ <ProjectGuid>{87DE439E-2F37-4A45-B3BE-E33747FB9401}</ProjectGuid> <RootNamespace>Microsoft.Rest.ClientRuntime.Azure.TestFramework.Tests</RootNamespace> <AssemblyName>Microsoft.Rest.ClientRuntime.Azure.TestFramework.Tests</AssemblyName> + <NuGetPackageImportStamp>72f49e9d</NuGetPackageImportStamp> </PropertyGroup> <Import Project="..\..\..\tools\Library.Settings.targets" /> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <ItemGroup> <Reference Include="System" /> <Reference Include="System.Core" /> @@ -46,15 +50,15 @@ <Private>True</Private> </Reference> <Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> - <HintPath>$(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> + <HintPath>..\..\..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="xunit.assert, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> - <HintPath>$(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath> + <HintPath>..\..\..\packages\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="xunit.core, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> - <HintPath>$(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> + <HintPath>..\..\..\packages\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> <Private>True</Private> </Reference> </ItemGroup> @@ -112,7 +116,4 @@ <Name>ClientRuntime.Azure.TestFramework</Name> </ProjectReference> </ItemGroup> - <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> - <Import Project="$(LibraryNugetPackageFolder)\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> - <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" /> </Project> \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/HttpMockServerTests.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/HttpMockServerTests.cs index 47ede0ef3be4d..489941bf976df 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/HttpMockServerTests.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/HttpRecorder/HttpMockServerTests.cs @@ -349,6 +349,7 @@ public void TestRecordingWithExplicitDir() HttpMockServer.Flush(); Assert.True(File.Exists(Path.Combine(Path.GetTempPath(), this.GetType().Name, TestUtilities.GetCurrentMethodName(1) + ".json"))); + HttpMockServer.RecordsDirectory = currentDir; } [Fact] @@ -389,6 +390,8 @@ public void Dispose() { Directory.Delete(outputDir, true); } + + HttpMockServer.RecordsDirectory = "SessionRecords"; } } } diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj index 4e4ea7d29bfcf..678cbd27c3de8 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj @@ -79,7 +79,5 @@ <LastGenOutput>Resources.Designer.cs</LastGenOutput> </EmbeddedResource> </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> - <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> </Project> \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpMockServer.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpMockServer.cs index 695b1a45f2b04..3eda951afec0a 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpMockServer.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/HttpRecorder/HttpMockServer.cs @@ -34,13 +34,10 @@ static HttpMockServer() RecordsDirectory = "SessionRecords"; } - private HttpMockServer() { } - - public static void Initialize(Type callerIdentity, string testIdentity) + private HttpMockServer() { - Initialize(callerIdentity, testIdentity, GetCurrentMode()); } - + public static void Initialize(string callerIdentity, string testIdentity) { Initialize(callerIdentity, testIdentity, GetCurrentMode()); diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs index 999eaed657223..9a63bc01d34c4 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs @@ -66,14 +66,6 @@ public static string AsFormattedString(this IDictionary<string, object> paramete return builder.ToString(); } - /// <summary> - /// End a test, flushing mocks as appropriate - /// </summary> - public static void EndTest() - { - HttpMockServer.Flush(); - } - /// <summary> /// Wait for the specified number of milliseconds unless we are in mock playback mode /// </summary> diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index 155af54d895aa..4a6759b590aa7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -120,23 +120,6 @@ <Reference Include="System" /> <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> - <Reference Include="Newtonsoft.Json"> - <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Azure.Test.Framework"> - <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.Azure.Test.HttpRecorder"> - <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll</HintPath> - <Private>True</Private> - </Reference> <ProjectReference Include="..\..\Resource\ResourceManagement\ResourceManagement.csproj"> <Project>{165ef660-235b-45af-83cb-0d32bef4c1a2}</Project> <Name>ResourceManagement</Name> @@ -159,33 +142,43 @@ </ProjectReference> </ItemGroup> <ItemGroup> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.0.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.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.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + <Reference Include="xunit.assert, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="xunit"> - <HintPath>$(LibraryNugetPackageFolder)\xunit.1.9.2\lib\net20\xunit.dll</HintPath> + <Reference Include="xunit.core, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> <ItemGroup> <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> - <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props')" /> + <Import Project="$(LibraryNugetPackageFolder)\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> + <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" /> </Project> \ 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 489a60961cc1d..2073e41d3ad88 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/packages.config +++ b/src/ResourceManagement/Compute/Compute.Tests/packages.config @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <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.3" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" 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" /> + <package id="xunit" version="2.0.0" targetFramework="net45" /> + <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> + <package id="xunit.assert" version="2.0.0" targetFramework="net45" /> + <package id="xunit.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" /> </packages> diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj index fd4414cf0d26c..cc3526a8bcc7a 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj @@ -28,16 +28,6 @@ <SubType>Designer</SubType> </None> </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.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.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - <Private>True</Private> - </Reference> - </ItemGroup> <Choose> <When Condition=" '$(LibraryFxTarget)' == 'portable' "> <ItemGroup> @@ -48,7 +38,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> @@ -66,7 +56,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec index 83aa7b855ebba..7564651c6cf22 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec +++ b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec @@ -1,4 +1,4 @@ -<?xml version="1.0"?> +<?xml version="1.0"?> <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> <metadata minClientVersion="2.5"> <id>Microsoft.Azure.Management.Compute</id> @@ -27,7 +27,7 @@ Note: This client library is for Virtual Machines under Azure Resource Manager.< </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.12,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Compute/ComputeManagement/packages.config b/src/ResourceManagement/Compute/ComputeManagement/packages.config index 3e47763a38835..c018c8ac848f0 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/packages.config +++ b/src/ResourceManagement/Compute/ComputeManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <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="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/Network.Tests/Helpers/NetworkManagementTestUtilities.cs b/src/ResourceManagement/Network/Network.Tests/Helpers/NetworkManagementTestUtilities.cs index 39089dc0f5b17..14af2d2532d85 100644 --- a/src/ResourceManagement/Network/Network.Tests/Helpers/NetworkManagementTestUtilities.cs +++ b/src/ResourceManagement/Network/Network.Tests/Helpers/NetworkManagementTestUtilities.cs @@ -5,6 +5,7 @@ using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test; using ResourceGroups.Tests; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests.Helpers { @@ -18,14 +19,7 @@ public static class NetworkManagementTestUtilities public static NetworkResourceProviderClient GetNetworkResourceProviderClient(RecordedDelegatingHandler handler) { handler.IsPassThrough = true; - var env = new CSMTestEnvironmentFactory(); - var client = TestBase.GetServiceClient<NetworkResourceProviderClient>(env, handler); - client.SubscriptionId = env.GetTestEnvironment().SubscriptionId; - if (Environment.GetEnvironmentVariable("AZURE_TEST_MODE") == null || - Environment.GetEnvironmentVariable("AZURE_TEST_MODE") == "Playback") - { - client.LongRunningOperationRetryTimeout = 0; - } + var client = TestBase.GetServiceClient<NetworkResourceProviderClient>(handler); return client; } diff --git a/src/ResourceManagement/Network/Network.Tests/Helpers/ResourcesManagementTestUtilities.cs b/src/ResourceManagement/Network/Network.Tests/Helpers/ResourcesManagementTestUtilities.cs index 2273f68dff8cc..335232db80972 100644 --- a/src/ResourceManagement/Network/Network.Tests/Helpers/ResourcesManagementTestUtilities.cs +++ b/src/ResourceManagement/Network/Network.Tests/Helpers/ResourcesManagementTestUtilities.cs @@ -20,6 +20,7 @@ namespace Microsoft.Azure.Test { using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Linq; @@ -33,14 +34,7 @@ public static class ResourcesManagementTestUtilities public static ResourceManagementClient GetResourceManagementClientWithHandler(RecordedDelegatingHandler handler) { handler.IsPassThrough = true; - var env = new CSMTestEnvironmentFactory(); - var client = TestBase.GetServiceClient<ResourceManagementClient>(env, handler); - client.SubscriptionId = env.GetTestEnvironment().SubscriptionId; - if (Environment.GetEnvironmentVariable("AZURE_TEST_MODE") == null || - Environment.GetEnvironmentVariable("AZURE_TEST_MODE") == "Playback") - { - client.LongRunningOperationRetryTimeout = 0; - } + var client = TestBase.GetServiceClient<ResourceManagementClient>(handler); return client; } @@ -67,7 +61,7 @@ public static string GetResourceLocation(ResourceManagementClient client, string } /// <summary> - /// Equality comparison for locatiosn returned by resource management + /// Equality comparison for locations returned by resource management /// </summary> /// <param name="expected">The expected location</param> /// <param name="actual">The actual location returned by resource management</param> diff --git a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj index ad0c26c67c0af..1b915d0ed2bd0 100644 --- a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj +++ b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj @@ -1,5 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> + <Import Project="..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" /> <PropertyGroup> <AutoRestProjects>true</AutoRestProjects> <SDKTestProject>true</SDKTestProject> @@ -112,39 +114,47 @@ <Reference Include="System" /> <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> - <Reference Include="Newtonsoft.Json"> - <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Azure.Test.Framework"> - <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.Azure.Test.HttpRecorder"> - <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll</HintPath> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Reference Include="xunit.assert, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="xunit"> - <HintPath>$(LibraryNugetPackageFolder)\xunit.1.9.2\lib\net20\xunit.dll</HintPath> + <Reference Include="xunit.core, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> <ItemGroup> <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> </ItemGroup> <ItemGroup> + <ProjectReference Include="..\..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj"> + <Project>{f144a258-3c38-447a-993e-967f74a1a76c}</Project> + <Name>ClientRuntime.Azure.TestFramework</Name> + </ProjectReference> <ProjectReference Include="..\..\Resource\ResourceManagement\ResourceManagement.csproj"> <Project>{165ef660-235b-45af-83cb-0d32bef4c1a2}</Project> <Name>ResourceManagement</Name> @@ -157,5 +167,4 @@ </ProjectReference> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> - <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props')" /> </Project> \ No newline at end of file diff --git a/src/ResourceManagement/Network/Network.Tests/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Network.Tests/Properties/AssemblyInfo.cs index 342c9b65092c4..d4d6fae13b8c0 100644 --- a/src/ResourceManagement/Network/Network.Tests/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Network.Tests/Properties/AssemblyInfo.cs @@ -1,6 +1,7 @@ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +using Xunit; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information @@ -34,3 +35,4 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: CollectionBehavior(DisableTestParallelization = true, MaxParallelThreads = 1)] diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 467a086ba788e..c808c20d8eea4 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -12,6 +12,7 @@ using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -349,9 +350,9 @@ public void ApplicationGatewayApiTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/CheckDnsAvailabilityTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/CheckDnsAvailabilityTests.cs index 7473725b893a0..ccb5f173c93d8 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/CheckDnsAvailabilityTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/CheckDnsAvailabilityTests.cs @@ -5,6 +5,7 @@ using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -15,9 +16,9 @@ public void CheckDnsAvailabilityTest() { var handler = new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs index a3d4255167e07..76575dd2b2aa3 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs @@ -11,6 +11,7 @@ using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -22,9 +23,9 @@ public void VirtualNetworkGatewayOperationsApisTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -134,9 +135,9 @@ public void LocalNettworkGatewayOperationsApisTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -228,9 +229,9 @@ public void VirtualNetworkGatewayConnectionOperationsApisTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -394,9 +395,9 @@ public void VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs index 483874375155d..8bf707fffe970 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs @@ -14,6 +14,7 @@ namespace Networks.Tests { using System; using System.Linq; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; public class LoadBalancerTests { @@ -22,9 +23,9 @@ public void LoadBalancerApiTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); var location = NetworkManagementTestUtilities.GetResourceLocation(resourcesClient, "Microsoft.Network/loadBalancers"); @@ -211,9 +212,9 @@ public void LoadBalancerApiTestWithDynamicIp() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -392,9 +393,9 @@ public void LoadBalancerApiTestWithStaticIp() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -575,9 +576,9 @@ public void LoadBalancerApiTestWithDistributionPolicy() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -766,9 +767,9 @@ public void CreateEmptyLoadBalancer() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -819,9 +820,9 @@ public void UpdateLoadBalancerRule() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -969,9 +970,9 @@ public void LoadBalancerApiNicAssociationTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs index a51fab6054061..aaac52b86f905 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs @@ -10,6 +10,7 @@ using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -20,9 +21,9 @@ public void NetworkInterfaceApiTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -171,9 +172,9 @@ public void NetworkInterfaceDnsSettingsTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs index 96b9b47f8a9b4..062a45d9427f6 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkSecurityGroupTests.cs @@ -9,6 +9,7 @@ using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -19,9 +20,9 @@ public void NetworkSecurityGroupApiTest() { var handler = new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -109,9 +110,9 @@ public void NetworkSecurityGroupWithRulesApiTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/PublicIpAddressTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/PublicIpAddressTests.cs index d9fb90cf979e0..3c9a49255b5ed 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/PublicIpAddressTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/PublicIpAddressTests.cs @@ -9,6 +9,7 @@ using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -19,9 +20,9 @@ public void PublicIpAddressApiTest() { var handler = new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); @@ -85,9 +86,9 @@ public void PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/SecurityRuleTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/SecurityRuleTests.cs index b8f1d9b3337c2..a6c0d98dad297 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/SecurityRuleTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/SecurityRuleTests.cs @@ -9,6 +9,7 @@ using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -19,9 +20,9 @@ public void SecurityRuleWithRulesApiTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/SubnetTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/SubnetTests.cs index 294354a9d2763..a7e2e7fec4917 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/SubnetTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/SubnetTests.cs @@ -9,6 +9,7 @@ using Networks.Tests.Helpers; using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -19,9 +20,9 @@ public void SubnetApiTest() { var handler = new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/UsageTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/UsageTests.cs index d86f932898ce6..65605c996418e 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/UsageTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/UsageTests.cs @@ -11,6 +11,7 @@ namespace Networks.Tests { using System.Linq; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; public class UsageTests { @@ -19,9 +20,9 @@ public void UsageTest() { var handler = new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/VirtualNetworkTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/VirtualNetworkTests.cs index 35e973dd4af68..d5859c70d55df 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/VirtualNetworkTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/VirtualNetworkTests.cs @@ -25,6 +25,7 @@ using ResourceGroups.Tests; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Networks.Tests { @@ -35,9 +36,9 @@ public void VirtualNetworkApiTest() { var handler = new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + var resourcesClient = ResourcesManagementTestUtilities.GetResourceManagementClientWithHandler(handler); var networkResourceProviderClient = NetworkManagementTestUtilities.GetNetworkResourceProviderClient(handler); diff --git a/src/ResourceManagement/Network/Network.Tests/packages.config b/src/ResourceManagement/Network/Network.Tests/packages.config index 489a60961cc1d..2073e41d3ad88 100644 --- a/src/ResourceManagement/Network/Network.Tests/packages.config +++ b/src/ResourceManagement/Network/Network.Tests/packages.config @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <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.3" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" 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" /> + <package id="xunit" version="2.0.0" targetFramework="net45" /> + <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> + <package id="xunit.assert" version="2.0.0" targetFramework="net45" /> + <package id="xunit.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" /> </packages> diff --git a/src/ResourceManagement/Network/Network.sln b/src/ResourceManagement/Network/Network.sln index 8e05ed875dc78..6ea209c67b234 100644 --- a/src/ResourceManagement/Network/Network.sln +++ b/src/ResourceManagement/Network/Network.sln @@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Network.Tests", "Network.Te EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceManagement", "..\Resource\ResourceManagement\ResourceManagement.csproj", "{165EF660-235B-45AF-83CB-0D32BEF4C1A2}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientRuntime.Azure.TestFramework", "..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj", "{F144A258-3C38-447A-993E-967F74A1A76C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Net45-Debug|Any CPU = Net45-Debug|Any CPU @@ -37,6 +39,14 @@ Global {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec b/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec index e2a697a7eec8c..51332dbb47fb8 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec +++ b/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec @@ -28,7 +28,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.12,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj index 60e182bb3d1c6..90d51d2d5b837 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj @@ -24,12 +24,12 @@ <None Include="packages.config" /> </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.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.1.0\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.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> </ItemGroup> @@ -43,7 +43,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Network/NetworkManagement/packages.config b/src/ResourceManagement/Network/NetworkManagement/packages.config index 3e47763a38835..c018c8ac848f0 100644 --- a/src/ResourceManagement/Network/NetworkManagement/packages.config +++ b/src/ResourceManagement/Network/NetworkManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <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="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/Resource.sln b/src/ResourceManagement/Resource/Resource.sln index 0631e08016d49..10c00f3482923 100644 --- a/src/ResourceManagement/Resource/Resource.sln +++ b/src/ResourceManagement/Resource/Resource.sln @@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceManagement", "Resou EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Resources.Tests", "Resources.Tests\Resources.Tests.csproj", "{BE9D7270-27CB-45EB-BD26-FEA68087E835}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientRuntime.Azure.TestFramework", "..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj", "{F144A258-3C38-447A-993E-967F74A1A76C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Net45-Debug|Any CPU = Net45-Debug|Any CPU @@ -29,6 +31,14 @@ Global {BE9D7270-27CB-45EB-BD26-FEA68087E835}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {BE9D7270-27CB-45EB-BD26-FEA68087E835}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {BE9D7270-27CB-45EB-BD26-FEA68087E835}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec index 2a7d1b4847023..dd95d8471fa95 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec +++ b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec @@ -24,7 +24,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.13,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index 0b7ad90c182ef..6a1af25853672 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -24,16 +24,6 @@ <None Include="Microsoft.Azure.Management.Resources.nuget.proj" /> <None Include="packages.config" /> </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.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.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - <Private>True</Private> - </Reference> - </ItemGroup> <Choose> <When Condition=" '$(LibraryFxTarget)' == 'portable' "> @@ -45,7 +35,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> @@ -63,7 +53,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Resource/ResourceManagement/packages.config b/src/ResourceManagement/Resource/ResourceManagement/packages.config index ca8ae74a13c89..c018c8ac848f0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/packages.config +++ b/src/ResourceManagement/Resource/ResourceManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.13" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/FeatureTests.InMemory.cs b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/FeatureTests.InMemory.cs index d89550a15eb5f..bb91de5ac087f 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/FeatureTests.InMemory.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/FeatureTests.InMemory.cs @@ -13,12 +13,12 @@ // limitations under the License. // +using Microsoft.Azure.Management.Resources; +using Microsoft.Rest; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; using System; using System.Net; using System.Net.Http; -using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Test.HttpRecorder; -using Microsoft.Rest; using Xunit; diff --git a/src/ResourceManagement/Resource/Resources.Tests/Properties/AssemblyInfo.cs b/src/ResourceManagement/Resource/Resources.Tests/Properties/AssemblyInfo.cs index 5355addf7eade..3e9990eb661b6 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/Properties/AssemblyInfo.cs @@ -1,6 +1,7 @@ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +using Xunit; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information @@ -34,3 +35,4 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: CollectionBehavior(DisableTestParallelization = true, MaxParallelThreads = 1)] diff --git a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj index b5142b3a8e8b6..8e494f92e8fb1 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj +++ b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj @@ -1,5 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')"/> + <Import Project="..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')"/> <PropertyGroup> <SDKTestProject>true</SDKTestProject> <AutoRestProjects>true</AutoRestProjects> @@ -156,39 +158,47 @@ <Reference Include="System" /> <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> - <Reference Include="Newtonsoft.Json"> - <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Azure.Test.Framework, Version=2.0.5658.29898, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.Azure.Test.HttpRecorder, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Azure.Test.HttpRecorder.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll</HintPath> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Reference Include="xunit.assert, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath> <Private>True</Private> </Reference> - <Reference Include="xunit"> - <HintPath>$(LibraryNugetPackageFolder)\xunit.1.9.2\lib\net20\xunit.dll</HintPath> + <Reference Include="xunit.core, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> <ItemGroup> <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> </ItemGroup> <ItemGroup> + <ProjectReference Include="..\..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj"> + <Project>{f144a258-3c38-447a-993e-967f74a1a76c}</Project> + <Name>ClientRuntime.Azure.TestFramework</Name> + </ProjectReference> <ProjectReference Include="..\ResourceManagement\ResourceManagement.csproj"> <Project>{165ef660-235b-45af-83cb-0d32bef4c1a2}</Project> <Name>ResourceManagement</Name> @@ -196,5 +206,4 @@ </ProjectReference> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> - <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props')" /> </Project> \ No newline at end of file diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs index 1ccd64a0bcfc2..c5455d056fbaa 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs @@ -24,6 +24,7 @@ using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { @@ -64,9 +65,8 @@ public void CreateDummyDeploymentTemplateWorks() TypeNameHandling = TypeNameHandling.None }); - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); var parameters = new Deployment { @@ -97,9 +97,8 @@ public void CreateDeploymentAndValidateProperties() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); string resourceName = TestUtilities.GenerateName("csmr"); @@ -148,9 +147,8 @@ public void ValidateGoodDeployment() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); string groupName = TestUtilities.GenerateName("csmrg"); string deploymentName = TestUtilities.GenerateName("csmd"); @@ -188,9 +186,8 @@ public void ValidateGoodDeploymentWithInlineTemplate() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); string groupName = TestUtilities.GenerateName("csmrg"); string deploymentName = TestUtilities.GenerateName("csmd"); @@ -225,9 +222,8 @@ public void ValidateBadDeployment() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); string groupName = TestUtilities.GenerateName("csmrg"); @@ -277,9 +273,8 @@ public void CreateDummyDeploymentProducesOperations() TypeNameHandling = TypeNameHandling.None }); - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); var parameters = new Deployment { @@ -317,9 +312,8 @@ public void ListDeploymentsWorksWithFilter() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); string resourceName = TestUtilities.GenerateName("csmr"); @@ -366,9 +360,8 @@ public void ListDeploymentsWorksWithFilter() public void CreateLargeWebDeploymentTemplateWorks() { var handler = new RecordedDelegatingHandler(); - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); string resourceName = TestUtilities.GenerateName("csmr"); string groupName = TestUtilities.GenerateName("csmrg"); string deploymentName = TestUtilities.GenerateName("csmd"); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs index 0d3782feda7eb..722821f571253 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs @@ -23,6 +23,7 @@ using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { @@ -38,70 +39,71 @@ public ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHa [Fact] public void ProviderGetValidateMessage() { - TestUtilities.StartTest(); - var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; + using (MockContext context = MockContext.Start()) + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - var client = GetResourceManagementClient(handler); + var client = GetResourceManagementClient(handler); - var reg = client.Providers.Register(ProviderName); - Assert.NotNull(reg); + var reg = client.Providers.Register(ProviderName); + Assert.NotNull(reg); - var result = client.Providers.Get(ProviderName); + var result = client.Providers.Get(ProviderName); - // Validate headers - Assert.Equal(HttpMethod.Get, handler.Method); - Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); + // Validate headers + Assert.Equal(HttpMethod.Get, handler.Method); + Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); - // Validate result - Assert.NotNull(result); - Assert.NotEmpty(result.Id); - Assert.Equal(ProviderName, result.NamespaceProperty); - Assert.True("Registered" == result.RegistrationState || - "Registering" == result.RegistrationState, - string.Format("Provider registration state was not 'Registered' or 'Registering', instead it was '{0}'", result.RegistrationState)); - Assert.NotEmpty(result.ResourceTypes); - Assert.NotEmpty(result.ResourceTypes[0].Locations); - TestUtilities.EndTest(); + // Validate result + Assert.NotNull(result); + Assert.NotEmpty(result.Id); + Assert.Equal(ProviderName, result.NamespaceProperty); + Assert.True("Registered" == result.RegistrationState || + "Registering" == result.RegistrationState, + string.Format("Provider registration state was not 'Registered' or 'Registering', instead it was '{0}'", result.RegistrationState)); + Assert.NotEmpty(result.ResourceTypes); + Assert.NotEmpty(result.ResourceTypes[0].Locations); + } } [Fact] public void ProviderListValidateMessage() { - TestUtilities.StartTest(); - var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - - var client = GetResourceManagementClient(handler); - - var reg = client.Providers.Register(ProviderName); - Assert.NotNull(reg); - - var result = client.Providers.List(null); - - // Validate headers - Assert.Equal(HttpMethod.Get, handler.Method); - Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); - - // Validate result - Assert.True(result.Any()); - var websiteProvider = - result.First( - p => p.NamespaceProperty.Equals(ProviderName, StringComparison.InvariantCultureIgnoreCase)); - Assert.Equal(ProviderName, websiteProvider.NamespaceProperty); - Assert.True("Registered" == websiteProvider.RegistrationState || - "Registering" == websiteProvider.RegistrationState, - string.Format("Provider registration state was not 'Registered' or 'Registering', instead it was '{0}'", websiteProvider.RegistrationState)); - Assert.NotEmpty(websiteProvider.ResourceTypes); - Assert.NotEmpty(websiteProvider.ResourceTypes[0].Locations); - TestUtilities.EndTest(); + using (MockContext context = MockContext.Start()) + { + var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; + + var client = GetResourceManagementClient(handler); + + var reg = client.Providers.Register(ProviderName); + Assert.NotNull(reg); + + var result = client.Providers.List(null); + + // Validate headers + Assert.Equal(HttpMethod.Get, handler.Method); + Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); + + // Validate result + Assert.True(result.Any()); + var websiteProvider = + result.First( + p => p.NamespaceProperty.Equals(ProviderName, StringComparison.InvariantCultureIgnoreCase)); + Assert.Equal(ProviderName, websiteProvider.NamespaceProperty); + Assert.True("Registered" == websiteProvider.RegistrationState || + "Registering" == websiteProvider.RegistrationState, + string.Format("Provider registration state was not 'Registered' or 'Registering', instead it was '{0}'", websiteProvider.RegistrationState)); + Assert.NotEmpty(websiteProvider.ResourceTypes); + Assert.NotEmpty(websiteProvider.ResourceTypes[0].Locations); + } } [Fact] public void VerifyProviderRegister() { var handler = new RecordedDelegatingHandler() {StatusCodeToReturn = HttpStatusCode.OK}; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); client.Providers.Register(ProviderName); @@ -116,9 +118,8 @@ public void VerifyProviderRegister() public void VerifyProviderUnregister() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); var registerResult = client.Providers.Register(ProviderName); @@ -140,62 +141,63 @@ public void VerifyProviderUnregister() [Fact] public void ProviderOperationsList() { - TestUtilities.StartTest(); - const string DefaultApiVersion = "2014-06-01"; - - var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - - var client = GetResourceManagementClient(handler); - var insightsProvider = client.Providers.Get(ProviderName); - - // Validate result - Assert.True(insightsProvider != null); + using (MockContext context = MockContext.Start()) + { + const string DefaultApiVersion = "2014-06-01"; - // Validate headers - Assert.Equal(HttpMethod.Get, handler.Method); - Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); + var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - Assert.NotEmpty(insightsProvider.ResourceTypes); - var operationResourceType = insightsProvider.ResourceTypes.Single(x => x.ResourceType == "operations"); - IList<string> operationsSupportedApiVersions = operationResourceType.ApiVersions; - string latestSupportedApiVersion = DefaultApiVersion; - - if (operationsSupportedApiVersions != null && operationsSupportedApiVersions.Any()) - { - latestSupportedApiVersion = operationsSupportedApiVersions.First(); + var client = GetResourceManagementClient(handler); + var insightsProvider = client.Providers.Get(ProviderName); + + // Validate result + Assert.True(insightsProvider != null); + + // Validate headers + Assert.Equal(HttpMethod.Get, handler.Method); + Assert.NotNull(handler.RequestHeaders.GetValues("Authorization")); + + Assert.NotEmpty(insightsProvider.ResourceTypes); + var operationResourceType = insightsProvider.ResourceTypes.Single(x => x.ResourceType == "operations"); + IList<string> operationsSupportedApiVersions = operationResourceType.ApiVersions; + string latestSupportedApiVersion = DefaultApiVersion; + + if (operationsSupportedApiVersions != null && operationsSupportedApiVersions.Any()) + { + latestSupportedApiVersion = operationsSupportedApiVersions.First(); + } + + ResourceIdentity identity = new ResourceIdentity + { + ResourceName = string.Empty, + ResourceType = "operations", + ResourceProviderNamespace = ProviderName, + ResourceProviderApiVersion = latestSupportedApiVersion + }; + + var operations = client.ResourceProviderOperationDetails.List(identity.ResourceProviderNamespace, identity.ResourceProviderApiVersion); + + Assert.NotNull(operations); + Assert.NotEmpty(operations.Value); + Assert.NotEmpty(operations.Value.First().Name); + Assert.NotNull(operations.Value.First().Display); + IEnumerable<ResourceProviderOperationDefinition> definitions = + operations.Value.Where(op => string.Equals(op.Name, "Microsoft.Insights/AlertRules/Write", StringComparison.InvariantCultureIgnoreCase)); + Assert.NotNull(definitions); + Assert.NotEmpty(definitions); + Assert.Equal(1, definitions.Count()); + + // Negative case with unsupported api version + identity = new ResourceIdentity + { + ResourceName = string.Empty, + ResourceType = "operations", + ResourceProviderNamespace = ProviderName, + ResourceProviderApiVersion = "2015-01-01" + }; + + Assert.Throws<CloudException>(() => client.ResourceProviderOperationDetails.List(identity.ResourceProviderNamespace, identity.ResourceProviderApiVersion)); } - - ResourceIdentity identity = new ResourceIdentity - { - ResourceName = string.Empty, - ResourceType = "operations", - ResourceProviderNamespace = ProviderName, - ResourceProviderApiVersion = latestSupportedApiVersion - }; - - var operations = client.ResourceProviderOperationDetails.List(identity.ResourceProviderNamespace, identity.ResourceProviderApiVersion); - - Assert.NotNull(operations); - Assert.NotEmpty(operations.Value); - Assert.NotEmpty(operations.Value.First().Name); - Assert.NotNull(operations.Value.First().Display); - IEnumerable<ResourceProviderOperationDefinition> definitions = - operations.Value.Where(op => string.Equals(op.Name, "Microsoft.Insights/AlertRules/Write", StringComparison.InvariantCultureIgnoreCase)); - Assert.NotNull(definitions); - Assert.NotEmpty(definitions); - Assert.Equal(1, definitions.Count()); - - // Negative case with unsupported api version - identity = new ResourceIdentity - { - ResourceName = string.Empty, - ResourceType = "operations", - ResourceProviderNamespace = ProviderName, - ResourceProviderApiVersion = "2015-01-01" - }; - - Assert.Throws<CloudException>(() => client.ResourceProviderOperationDetails.List(identity.ResourceProviderNamespace, identity.ResourceProviderApiVersion)); - TestUtilities.EndTest(); } } } diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs index 425bf50ce518f..80aa10d4b0a9d 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs @@ -21,9 +21,9 @@ using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; -using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.TransientFaultHandling; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { @@ -35,54 +35,48 @@ public ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHa { handler.IsPassThrough = true; var client = this.GetResourceManagementClientWithHandler(handler); - - if (HttpMockServer.Mode == HttpRecorderMode.Playback) - { - client.LongRunningOperationRetryTimeout = 0; - } - return client; } [Fact] public void DeleteResourceGroupRemovesGroupResources() { - TestUtilities.StartTest(); - var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; - - var client = GetResourceManagementClient(handler); - string location = ResourcesManagementTestUtilities.GetResourceLocation(client, "Microsoft.Web/sites"); - var resourceGroupName = TestUtilities.GenerateName("csmrg"); - var resourceName = TestUtilities.GenerateName("csmr"); - var createResult = client.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location }); - var createResourceResult = client.Resources.CreateOrUpdate( - resourceGroupName, - "Microsoft.Web", - string.Empty, - "sites", - resourceName, - "2014-04-01", - new GenericResource - { - Location = location, - Properties = "{'name':'" + resourceName + "','siteMode': 'Standard','computeMode':'Shared'}" - }); - - client.ResourceGroups.Delete(resourceGroupName); - var listGroupsResult = client.ResourceGroups.List(null); - - Assert.Throws<CloudException>(() => client.ResourceGroups.ListResources(resourceGroupName)); - - Assert.False(listGroupsResult.Any(rg => rg.Name == resourceGroupName)); - TestUtilities.EndTest(); + using (MockContext context = MockContext.Start()) + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; + + var client = GetResourceManagementClient(handler); + string location = ResourcesManagementTestUtilities.GetResourceLocation(client, "Microsoft.Web/sites"); + var resourceGroupName = TestUtilities.GenerateName("csmrg"); + var resourceName = TestUtilities.GenerateName("csmr"); + var createResult = client.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location }); + var createResourceResult = client.Resources.CreateOrUpdate( + resourceGroupName, + "Microsoft.Web", + string.Empty, + "sites", + resourceName, + "2014-04-01", + new GenericResource + { + Location = location, + Properties = "{'name':'" + resourceName + "','siteMode': 'Standard','computeMode':'Shared'}" + }); + + client.ResourceGroups.Delete(resourceGroupName); + var listGroupsResult = client.ResourceGroups.List(null); + + Assert.Throws<CloudException>(() => client.ResourceGroups.ListResources(resourceGroupName)); + + Assert.False(listGroupsResult.Any(rg => rg.Name == resourceGroupName)); + } } [Fact] public void CanCreateResourceGroup() { - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); string groupName = TestUtilities.GenerateName("csmrg"); ResourceManagementClient client = this.GetResourceManagementClient(new RecordedDelegatingHandler()); var result = client.ResourceGroups.CreateOrUpdate(groupName, @@ -111,9 +105,8 @@ public void CheckExistenceReturnsCorrectValue() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); string groupName = TestUtilities.GenerateName("csmrg"); var client = GetResourceManagementClient(handler); client.SetRetryPolicy(new RetryPolicy<HttpStatusCodeErrorDetectionStrategy>(1)); @@ -132,21 +125,22 @@ public void CheckExistenceReturnsCorrectValue() [Fact] public void DeleteResourceGroupRemovesGroup() { - TestUtilities.StartTest(); - var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; + using (MockContext context = MockContext.Start()) + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; - var client = GetResourceManagementClient(handler); + var client = GetResourceManagementClient(handler); - var resourceGroupName = TestUtilities.GenerateName("csmrg"); - var createResult = client.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = DefaultLocation }); - var getResult = client.ResourceGroups.Get(resourceGroupName); - var deleteResult = - client.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName).Result; - var listResult = client.ResourceGroups.List(null); + var resourceGroupName = TestUtilities.GenerateName("csmrg"); + var createResult = client.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = DefaultLocation }); + var getResult = client.ResourceGroups.Get(resourceGroupName); + var deleteResult = + client.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName).Result; + var listResult = client.ResourceGroups.List(null); - Assert.Equal(HttpStatusCode.OK, deleteResult.Response.StatusCode); - Assert.False(listResult.Any(rg => rg.Name == resourceGroupName && rg.Properties.ProvisioningState != "Deleting")); - TestUtilities.EndTest(); + Assert.Equal(HttpStatusCode.OK, deleteResult.Response.StatusCode); + Assert.False(listResult.Any(rg => rg.Name == resourceGroupName && rg.Properties.ProvisioningState != "Deleting")); + } } } } diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs index 36e148493e7d4..3a559cdee249d 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs @@ -22,6 +22,7 @@ using Microsoft.Azure.Test; using Microsoft.Rest.TransientFaultHandling; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { @@ -62,9 +63,8 @@ public void CleanupAllResources() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetResourceManagementClient(handler); client.SetRetryPolicy(new RetryPolicy<HttpStatusCodeErrorDetectionStrategy>(1)); @@ -92,10 +92,8 @@ public void CreateResourceWithPlan() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - - context.Start(); string groupName = TestUtilities.GenerateName("csmrg"); string resourceName = TestUtilities.GenerateName("csmr"); var client = GetResourceManagementClient(handler); @@ -143,9 +141,8 @@ public void CreatedResourceIsAvailableInList() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); string groupName = TestUtilities.GenerateName("csmrg"); string resourceName = TestUtilities.GenerateName("csmr"); var client = GetResourceManagementClient(handler); @@ -191,10 +188,8 @@ public void CreatedResourceIsAvailableInListFilteredByTagName() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - - context.Start(); string groupName = TestUtilities.GenerateName("csmrg"); string resourceName = TestUtilities.GenerateName("csmr"); string resourceNameNoTags = TestUtilities.GenerateName("csmr"); @@ -254,10 +249,8 @@ public void CreatedResourceIsAvailableInListFilteredByTagNameAndValue() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - - context.Start(); string groupName = TestUtilities.GenerateName("csmrg"); string resourceName = TestUtilities.GenerateName("csmr"); string resourceNameNoTags = TestUtilities.GenerateName("csmr"); @@ -321,9 +314,8 @@ public void CreatedAndDeleteResource() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); string groupName = TestUtilities.GenerateName("csmrg"); string resourceName = TestUtilities.GenerateName("csmr"); var client = GetResourceManagementClient(handler); @@ -364,9 +356,8 @@ public void CreatedAndListResource() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); string groupName = TestUtilities.GenerateName("csmrg"); string resourceName = TestUtilities.GenerateName("csmr"); var client = GetResourceManagementClient(handler); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs index bac42adaa94f9..a5ea6a8dd35c2 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs @@ -18,9 +18,9 @@ using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Subscriptions; using Microsoft.Azure.Test; -using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.TransientFaultHandling; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { @@ -30,11 +30,6 @@ public ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHa { handler.IsPassThrough = true; var client = this.GetResourceManagementClientWithHandler(handler); - if (HttpMockServer.Mode == HttpRecorderMode.Playback) - { - client.LongRunningOperationRetryTimeout = 0; - } - return client; } @@ -42,11 +37,6 @@ public SubscriptionClient GetSubscriptionClient(RecordedDelegatingHandler handle { handler.IsPassThrough = true; var client = this.GetSubscriptionClientWithHandler(handler); - if (HttpMockServer.Mode == HttpRecorderMode.Playback) - { - client.LongRunningOperationRetryTimeout = 0; - } - return client; } @@ -55,9 +45,8 @@ public void ListSubscriptions() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetSubscriptionClient(handler); client.SetRetryPolicy(new RetryPolicy<HttpStatusCodeErrorDetectionStrategy>(1)); @@ -77,9 +66,8 @@ public void GetSubscriptionDetails() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetSubscriptionClient(handler); var rmclient = GetResourceManagementClient(handler); client.SetRetryPolicy(new RetryPolicy<HttpStatusCodeErrorDetectionStrategy>(1)); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs index 77012e5ab0bf4..5d7a33d721a4a 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs @@ -18,8 +18,9 @@ using Microsoft.Azure; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test; -using Microsoft.Azure.Test.HttpRecorder; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; namespace ResourceGroups.Tests { @@ -43,11 +44,9 @@ public ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHa public void CreateListAndDeleteSubscriptionTag() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - - using (UndoContext context = UndoContext.Current) - { - context.Start(); + using (MockContext context = MockContext.Start()) + { string tagName = TestUtilities.GenerateName("csmtg"); var client = GetResourceManagementClient(handler); @@ -67,10 +66,8 @@ public void CreateListAndDeleteSubscriptionTagValue() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - string tagName = TestUtilities.GenerateName("csmtg"); string tagValue = TestUtilities.GenerateName("csmtgv"); @@ -94,10 +91,8 @@ public void CreateTagValueWithoutCreatingTag() { var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - string tagName = TestUtilities.GenerateName("csmtg"); string tagValue = TestUtilities.GenerateName("csmtgv"); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs index 49d29e4ab1db8..c3486bca02eb7 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs @@ -17,9 +17,9 @@ using System.Net; using Microsoft.Azure.Subscriptions; using Microsoft.Azure.Test; -using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.TransientFaultHandling; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { @@ -29,10 +29,6 @@ public SubscriptionClient GetSubscriptionClient(RecordedDelegatingHandler handle { handler.IsPassThrough = true; var client = this.GetSubscriptionClientWithHandler(handler); - if (HttpMockServer.Mode == HttpRecorderMode.Playback) - { - client.LongRunningOperationRetryTimeout = 0; - } return client; } @@ -44,9 +40,8 @@ public void ListTenants() var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK }; - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var client = GetSubscriptionClient(handler); client.SetRetryPolicy(new RetryPolicy<HttpStatusCodeErrorDetectionStrategy>(1)); diff --git a/src/ResourceManagement/Resource/Resources.Tests/SpecTestSupport.Resources/ResourcesManagementTestUtilities.cs b/src/ResourceManagement/Resource/Resources.Tests/SpecTestSupport.Resources/ResourcesManagementTestUtilities.cs index 9565d37d51637..9667394da0c54 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/SpecTestSupport.Resources/ResourcesManagementTestUtilities.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/SpecTestSupport.Resources/ResourcesManagementTestUtilities.cs @@ -20,6 +20,7 @@ namespace Microsoft.Azure.Test { using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Linq; @@ -32,9 +33,7 @@ public static class ResourcesManagementTestUtilities /// <returns>A resource management client, created from the current context (environment variables)</returns> public static ResourceManagementClient GetResourceManagementClient(this TestBase testBase) { - var env = new CSMTestEnvironmentFactory(); - var client = TestBase.GetServiceClient<ResourceManagementClient>(env); - client.SubscriptionId = env.GetTestEnvironment().SubscriptionId; + var client = TestBase.GetServiceClient<ResourceManagementClient>(); return client; } @@ -45,10 +44,8 @@ public static ResourceManagementClient GetResourceManagementClient(this TestBase /// <returns>A resource management client, created from the current context (environment variables)</returns> public static ResourceManagementClient GetResourceManagementClientWithHandler(this TestBase testBase, RecordedDelegatingHandler handler) { - var env = new CSMTestEnvironmentFactory(); handler.IsPassThrough = true; - var client = TestBase.GetServiceClient<ResourceManagementClient>(env, handler); - client.SubscriptionId = env.GetTestEnvironment().SubscriptionId; + var client = TestBase.GetServiceClient<ResourceManagementClient>(handler); return client; } @@ -59,9 +56,7 @@ public static ResourceManagementClient GetResourceManagementClientWithHandler(th /// <returns>A subscription client, created from the current context (environment variables)</returns> public static SubscriptionClient GetSubscriptionClient(this TestBase testBase) { - var env = new CSMTestEnvironmentFactory(); - var client = TestBase.GetServiceClient<SubscriptionClient>(env); - client.SubscriptionId = env.GetTestEnvironment().SubscriptionId; + var client = TestBase.GetServiceClient<SubscriptionClient>(); return client; } @@ -73,9 +68,7 @@ public static SubscriptionClient GetSubscriptionClient(this TestBase testBase) public static SubscriptionClient GetSubscriptionClientWithHandler(this TestBase testBase, RecordedDelegatingHandler handler) { handler.IsPassThrough = true; - var env = new CSMTestEnvironmentFactory(); - var client = TestBase.GetServiceClient<SubscriptionClient>(env, handler); - client.SubscriptionId = env.GetTestEnvironment().SubscriptionId; + var client = TestBase.GetServiceClient<SubscriptionClient>(handler); return client; } @@ -103,7 +96,7 @@ public static string GetResourceLocation(ResourceManagementClient client, string } /// <summary> - /// Equality comparison for locatiosn returned by resource management + /// Equality comparison for locations returned by resource management /// </summary> /// <param name="expected">The expected location</param> /// <param name="actual">The actual location returned by resource management</param> diff --git a/src/ResourceManagement/Resource/Resources.Tests/packages.config b/src/ResourceManagement/Resource/Resources.Tests/packages.config index 489a60961cc1d..2073e41d3ad88 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/packages.config +++ b/src/ResourceManagement/Resource/Resources.Tests/packages.config @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <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.3" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" 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" /> + <package id="xunit" version="2.0.0" targetFramework="net45" /> + <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> + <package id="xunit.assert" version="2.0.0" targetFramework="net45" /> + <package id="xunit.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" /> </packages> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Helpers/StorageManagementTestUtilities.cs b/src/ResourceManagement/Storage/Storage.Tests/Helpers/StorageManagementTestUtilities.cs index ea7118221b079..966b89e97400a 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Helpers/StorageManagementTestUtilities.cs +++ b/src/ResourceManagement/Storage/Storage.Tests/Helpers/StorageManagementTestUtilities.cs @@ -18,8 +18,8 @@ using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; -using Microsoft.Azure.Test; using Microsoft.Rest; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using ResourceGroups.Tests; using System; using System.Collections.Generic; @@ -48,7 +48,6 @@ public static class StorageManagementTestUtilities public static ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHandler handler) { - var env = new CSMTestEnvironmentFactory(); ResourceManagementClient resourcesClient; if (IsTestTenant) { @@ -57,16 +56,13 @@ public static ResourceManagementClient GetResourceManagementClient(RecordedDeleg else { handler.IsPassThrough = true; - resourcesClient = TestBase.GetServiceClient<ResourceManagementClient>(env, handler); + resourcesClient = TestBase.GetServiceClient<ResourceManagementClient>(handler); } - resourcesClient.SubscriptionId = env.GetTestEnvironment().SubscriptionId; - resourcesClient.LongRunningOperationRetryTimeout = 0; return resourcesClient; } public static StorageManagementClient GetStorageManagementClient(RecordedDelegatingHandler handler) { - var env = new CSMTestEnvironmentFactory(); StorageManagementClient storageClient; if (IsTestTenant) { @@ -75,11 +71,8 @@ public static StorageManagementClient GetStorageManagementClient(RecordedDelegat else { handler.IsPassThrough = true; - storageClient = TestBase.GetServiceClient<StorageManagementClient>(env, handler); + storageClient = TestBase.GetServiceClient<StorageManagementClient>(handler); } - - storageClient.LongRunningOperationRetryTimeout = 0; - storageClient.SubscriptionId = env.GetTestEnvironment().SubscriptionId; return storageClient; } diff --git a/src/ResourceManagement/Storage/Storage.Tests/Properties/AssemblyInfo.cs b/src/ResourceManagement/Storage/Storage.Tests/Properties/AssemblyInfo.cs index 36acc2537f57d..41cb4f433a59f 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Storage/Storage.Tests/Properties/AssemblyInfo.cs @@ -1,6 +1,7 @@ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +using Xunit; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information @@ -34,3 +35,4 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: CollectionBehavior(DisableTestParallelization = true, MaxParallelThreads = 1)] diff --git a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj index 7bf8705c0581a..95655cbee661a 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj +++ b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj @@ -1,5 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')"/> + <Import Project="..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')"/> <PropertyGroup> <AutoRestProjects>true</AutoRestProjects> <SDKTestProject>true</SDKTestProject> @@ -49,6 +51,10 @@ </None> </ItemGroup> <ItemGroup> + <ProjectReference Include="..\..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj"> + <Project>{f144a258-3c38-447a-993e-967f74a1a76c}</Project> + <Name>ClientRuntime.Azure.TestFramework</Name> + </ProjectReference> <ProjectReference Include="..\..\Resource\ResourceManagement\ResourceManagement.csproj"> <Project>{165ef660-235b-45af-83cb-0d32bef4c1a2}</Project> <Name>ResourceManagement</Name> @@ -64,23 +70,6 @@ <Reference Include="System" /> <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> - <Reference Include="Newtonsoft.Json"> - <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Azure.Test.Framework, Version=2.0.5658.29898, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.Framework.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.Azure.Test.HttpRecorder, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.2.0.5658.29898-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll</HintPath> - <Private>True</Private> - </Reference> <Reference Include="Microsoft.Data.Edm, Version=5.6.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Data.Edm.5.6.2\lib\net40\Microsoft.Data.Edm.dll</HintPath> @@ -93,14 +82,6 @@ <SpecificVersion>False</SpecificVersion> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Data.Services.Client.5.6.2\lib\net40\Microsoft.Data.Services.Client.dll</HintPath> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> - <Private>True</Private> - </Reference> <Reference Include="Microsoft.WindowsAzure.Configuration, Version=1.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.WindowsAzure.ConfigurationManager.1.8.0.0\lib\net35-full\Microsoft.WindowsAzure.Configuration.dll</HintPath> @@ -113,13 +94,41 @@ <SpecificVersion>False</SpecificVersion> <HintPath>$(LibraryNugetPackageFolder)\System.Spatial.5.6.2\lib\net40\System.Spatial.dll</HintPath> </Reference> - <Reference Include="xunit"> - <HintPath>$(LibraryNugetPackageFolder)\xunit.1.9.2\lib\net20\xunit.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.assert, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.core, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> <ItemGroup> <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> - <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props')" /> </Project> \ No newline at end of file diff --git a/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs b/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs index 787e9c6a6ed75..cc6eae27f443e 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs +++ b/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs @@ -20,10 +20,10 @@ using Microsoft.Azure; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; -using Microsoft.Azure.Test; using ResourceGroups.Tests; using Storage.Tests.Helpers; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Storage.Tests { @@ -34,10 +34,8 @@ public void StorageAccountCreateTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var resourcesClient = StorageManagementTestUtilities.GetResourceManagementClient(handler); var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); @@ -79,10 +77,8 @@ public void StorageAccountDeleteTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var resourcesClient = StorageManagementTestUtilities.GetResourceManagementClient(handler); var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); @@ -108,10 +104,8 @@ public void StorageAccountGetTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var resourcesClient = StorageManagementTestUtilities.GetResourceManagementClient(handler); var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); @@ -163,10 +157,8 @@ public void StorageAccountListByResourceGroupTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var resourcesClient = StorageManagementTestUtilities.GetResourceManagementClient(handler); var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); @@ -193,10 +185,8 @@ public void StorageAccountListBySubscriptionTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var resourcesClient = StorageManagementTestUtilities.GetResourceManagementClient(handler); var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); @@ -226,10 +216,8 @@ public void StorageAccountListKeysTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var resourcesClient = StorageManagementTestUtilities.GetResourceManagementClient(handler); var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); @@ -260,10 +248,8 @@ public void StorageAccountRegenerateKeyTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var resourcesClient = StorageManagementTestUtilities.GetResourceManagementClient(handler); var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); @@ -296,10 +282,8 @@ public void StorageAccountCheckNameTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); // Check valid name @@ -334,10 +318,8 @@ public void StorageAccountUpdateTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - var resourcesClient = StorageManagementTestUtilities.GetResourceManagementClient(handler); var storageMgmtClient = StorageManagementTestUtilities.GetStorageManagementClient(handler); diff --git a/src/ResourceManagement/Storage/Storage.Tests/packages.config b/src/ResourceManagement/Storage/Storage.Tests/packages.config index 81fe9d90c9af2..8e774ba15cbbf 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/packages.config +++ b/src/ResourceManagement/Storage/Storage.Tests/packages.config @@ -2,18 +2,20 @@ <packages> <package id="FakeItEasy" version="1.22.0" targetFramework="net451" /> <package id="Microsoft.AspNet.WebApi.Client" version="5.2.2" targetFramework="net451" /> - <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.Data.Edm" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.Data.OData" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.Data.Services.Client" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" 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="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> <package id="Microsoft.WindowsAzure.ConfigurationManager" version="1.8.0.0" targetFramework="net451" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net451" /> <package id="System.Spatial" version="5.6.2" targetFramework="net451" /> <package id="WindowsAzure.Storage" version="4.3.0" targetFramework="net451" /> - <package id="xunit" version="1.9.2" targetFramework="net451" /> - <package id="xunit.runner.visualstudio" version="0.99.9-build1021" targetFramework="net451" /> + <package id="xunit" version="2.0.0" targetFramework="net45" /> + <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> + <package id="xunit.assert" version="2.0.0" targetFramework="net45" /> + <package id="xunit.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" /> </packages> diff --git a/src/ResourceManagement/Storage/Storage.sln b/src/ResourceManagement/Storage/Storage.sln index 176c412b6fdfb..babb545559cc0 100644 --- a/src/ResourceManagement/Storage/Storage.sln +++ b/src/ResourceManagement/Storage/Storage.sln @@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Storage.Tests", "Storage.Te EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceManagement", "..\Resource\ResourceManagement\ResourceManagement.csproj", "{165EF660-235B-45AF-83CB-0D32BEF4C1A2}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientRuntime.Azure.TestFramework", "..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj", "{F144A258-3C38-447A-993E-967F74A1A76C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Net45-Debug|Any CPU = Net45-Debug|Any CPU @@ -37,6 +39,14 @@ Global {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec b/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec index c197e65a4bef1..23c940a79bc61 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec +++ b/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec @@ -28,7 +28,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.12,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj index 9e3fc3fa738c3..5b8b301ccff6e 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj @@ -23,12 +23,12 @@ <None Include="packages.config" /> </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.3\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.1.0\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.12\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <None Include="packages.config"> @@ -45,7 +45,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Storage/StorageManagement/packages.config b/src/ResourceManagement/Storage/StorageManagement/packages.config index 3e47763a38835..c018c8ac848f0 100644 --- a/src/ResourceManagement/Storage/StorageManagement/packages.config +++ b/src/ResourceManagement/Storage/StorageManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <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="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> From d9f347f7a6b0a2242fc9418f8bf9c83528bf28b1 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 13:35:02 -0700 Subject: [PATCH 08/34] Fixed compute tests. --- .../Compute.Tests/Compute.Tests.csproj | 18 +++++--- .../Helpers/ComputeManagementTestUtilities.cs | 46 ++++--------------- .../Compute.Tests/Properties/AssemblyInfo.cs | 27 +++++++++++ .../ScenarioTests/AvailabilitySetTests.cs | 6 +-- .../ScenarioTests/ExtImgTests.cs | 22 ++++----- .../ScenarioTests/ExtensionTests.cs | 5 +- .../ScenarioTests/ListVMTests.cs | 5 +- .../ScenarioTests/OSProfileTests.cs | 9 ++-- .../ScenarioTests/UndoContext.cs | 1 + .../Compute.Tests/ScenarioTests/UsageTests.cs | 5 +- .../ScenarioTests/VMCertificateTests.cs | 5 +- .../ScenarioTests/VMDataDiskTests.cs | 5 +- .../ScenarioTests/VMImageTests.cs | 23 ++++------ .../ScenarioTests/VMMarketplaceTest.cs | 5 +- .../ScenarioTests/VMNetworkInterfaceTests.cs | 8 ++-- .../ScenarioTests/VMOperationalTests.cs | 5 +- .../ScenarioTests/VMScenarioTests.cs | 5 +- .../ScenarioTests/VMSizesTests.cs | 5 +- .../Compute.Tests/ScenarioTests/VMTestBase.cs | 2 +- src/ResourceManagement/Compute/Compute.sln | 10 ++++ .../Microsoft.Azure.Management.Compute.nuspec | 2 +- .../Network.Tests/Tests/LoadBalancerTests.cs | 2 +- 22 files changed, 108 insertions(+), 113 deletions(-) create mode 100644 src/ResourceManagement/Compute/Compute.Tests/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UndoContext.cs diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index 4a6759b590aa7..577854dab1aca 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -1,5 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> + <Import Project="..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" /> <PropertyGroup> <AutoRestProjects>true</AutoRestProjects> <SDKTestProject>true</SDKTestProject> @@ -14,12 +16,14 @@ </PropertyGroup> <Import Project="..\..\..\..\tools\Library.Settings.targets" /> <ItemGroup> + <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Helpers\ApiConstants.cs" /> <Compile Include="Helpers\ComputeManagementTestUtilities.cs" /> <Compile Include="Helpers\Helpers.cs" /> <Compile Include="Helpers\RecordedDelegatingHandler.cs" /> <Compile Include="Helpers\VaultCertComparer.cs" /> <Compile Include="ScenarioTests\AvailabilitySetTests.cs" /> + <Compile Include="ScenarioTests\UndoContext.cs" /> <Compile Include="ScenarioTests\VMMarketplaceTest.cs" /> <Compile Include="ScenarioTests\VMNetworkInterfaceTests.cs" /> <Compile Include="ScenarioTests\ListVMTests.cs" /> @@ -120,6 +124,10 @@ <Reference Include="System" /> <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> + <ProjectReference Include="..\..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj"> + <Project>{f144a258-3c38-447a-993e-967f74a1a76c}</Project> + <Name>ClientRuntime.Azure.TestFramework</Name> + </ProjectReference> <ProjectReference Include="..\..\Resource\ResourceManagement\ResourceManagement.csproj"> <Project>{165ef660-235b-45af-83cb-0d32bef4c1a2}</Project> <Name>ResourceManagement</Name> @@ -142,10 +150,10 @@ </ProjectReference> </ItemGroup> <ItemGroup> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - <Private>True</Private> - </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> <Private>True</Private> @@ -179,6 +187,4 @@ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> - <Import Project="$(LibraryNugetPackageFolder)\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> - <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" /> </Project> \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/Helpers/ComputeManagementTestUtilities.cs b/src/ResourceManagement/Compute/Compute.Tests/Helpers/ComputeManagementTestUtilities.cs index ac1491232c484..1a2e400feac43 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Helpers/ComputeManagementTestUtilities.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/Helpers/ComputeManagementTestUtilities.cs @@ -17,8 +17,8 @@ using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Storage; -using Microsoft.Azure.Test; -using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; using System; using System.Net; @@ -30,58 +30,32 @@ public static class ComputeManagementTestUtilities public static ComputeManagementClient GetComputeManagementClient(RecordedDelegatingHandler handler = null) { - return GetComputeManagementClient(new CSMTestEnvironmentFactory(), - handler ?? new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); - } - - public static ComputeManagementClient GetComputeManagementClient(TestEnvironmentFactory factory, RecordedDelegatingHandler handler) - { - handler.IsPassThrough = true; - var client = TestBase.GetServiceClient<ComputeManagementClient>(factory, handler); - if (HttpMockServer.Mode == HttpRecorderMode.Playback) + if (handler != null) { - client.LongRunningOperationRetryTimeout = 0; + handler.IsPassThrough = true; } - client.SubscriptionId = factory.GetTestEnvironment().SubscriptionId; - return client; + return TestBase.GetServiceClient<ComputeManagementClient>( + handler ?? new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); } - + public static ResourceManagementClient GetResourceManagementClient(RecordedDelegatingHandler handler) { handler.IsPassThrough = true; - var factory = new CSMTestEnvironmentFactory(); - var client = TestBase.GetServiceClient<ResourceManagementClient>(factory, handler); - if (HttpMockServer.Mode == HttpRecorderMode.Playback) - { - client.LongRunningOperationRetryTimeout = 0; - } - client.SubscriptionId = factory.GetTestEnvironment().SubscriptionId; + var client = TestBase.GetServiceClient<ResourceManagementClient>(handler); return client; } public static NetworkResourceProviderClient GetNetworkResourceProviderClient(RecordedDelegatingHandler handler) { handler.IsPassThrough = true; - var factory = new CSMTestEnvironmentFactory(); - var client = TestBase.GetServiceClient<NetworkResourceProviderClient>(factory, handler); - if (HttpMockServer.Mode == HttpRecorderMode.Playback) - { - client.LongRunningOperationRetryTimeout = 0; - } - client.SubscriptionId = factory.GetTestEnvironment().SubscriptionId; + var client = TestBase.GetServiceClient<NetworkResourceProviderClient>(handler); return client; } public static StorageManagementClient GetStorageManagementClient(RecordedDelegatingHandler handler) { handler.IsPassThrough = true; - var factory = new CSMTestEnvironmentFactory(); - var client = TestBase.GetServiceClient<StorageManagementClient>(factory, handler); - if (HttpMockServer.Mode == HttpRecorderMode.Playback) - { - client.LongRunningOperationRetryTimeout = 0; - } - client.SubscriptionId = factory.GetTestEnvironment().SubscriptionId; + var client = TestBase.GetServiceClient<StorageManagementClient>(handler); return client; } diff --git a/src/ResourceManagement/Compute/Compute.Tests/Properties/AssemblyInfo.cs b/src/ResourceManagement/Compute/Compute.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000000..f722db9ed3d00 --- /dev/null +++ b/src/ResourceManagement/Compute/Compute.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,27 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Xunit; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Compute.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Compute.Tests")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("1050e361-5461-40c6-a866-6b90e01aac9c")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: CollectionBehavior(DisableTestParallelization = true, MaxParallelThreads = 1)] diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs index 14f75a9e5e4d0..a4695d0d208a3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs @@ -22,8 +22,8 @@ using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; -using Microsoft.Azure.Test; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -58,10 +58,8 @@ public class AvailabilitySetTests [Fact(Skip = "TODO: AutoRest")] public void TestOperations() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); - Initialize(); try diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs index b8af82afc639a..393f93d1dd80d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs @@ -19,8 +19,8 @@ using Microsoft.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; -using Microsoft.Azure.Test; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -86,11 +86,10 @@ private class VirtualMachineExtensionImageGetParameters [Fact] public void TestExtImgGet() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); ComputeManagementClient _pirClient = - ComputeManagementTestUtilities.GetComputeManagementClient(new CSMTestEnvironmentFactory(), + ComputeManagementTestUtilities.GetComputeManagementClient( new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}); var vmimageext = _pirClient.VirtualMachineExtensionImages.Get( @@ -113,11 +112,10 @@ public void TestExtImgGet() [Fact] public void TestExtImgListTypes() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); ComputeManagementClient _pirClient = - ComputeManagementTestUtilities.GetComputeManagementClient(new CSMTestEnvironmentFactory(), + ComputeManagementTestUtilities.GetComputeManagementClient( new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}); var vmextimg = _pirClient.VirtualMachineExtensionImages.ListTypes( @@ -132,11 +130,10 @@ public void TestExtImgListTypes() [Fact] public void TestExtImgListVersionsNoFilter() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); ComputeManagementClient _pirClient = - ComputeManagementTestUtilities.GetComputeManagementClient(new CSMTestEnvironmentFactory(), + ComputeManagementTestUtilities.GetComputeManagementClient( new RecordedDelegatingHandler {StatusCodeToReturn = HttpStatusCode.OK}); var vmextimg = _pirClient.VirtualMachineExtensionImages.ListVersions( @@ -152,11 +149,10 @@ public void TestExtImgListVersionsNoFilter() [Fact(Skip="TODO: AutoRest")] public void TestExtImgListVersionsFilters() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); ComputeManagementClient _pirClient = - ComputeManagementTestUtilities.GetComputeManagementClient(new CSMTestEnvironmentFactory(), + ComputeManagementTestUtilities.GetComputeManagementClient( new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); // Filter: startswith - Positive Test diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs index 37ecc42f2196e..515423cf54042 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs @@ -17,12 +17,12 @@ using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Test; using System.Collections.Generic; using System.Linq; using System.Net; using Microsoft.Azure; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -50,9 +50,8 @@ VirtualMachineExtension GetTestVMExtension() [Fact(Skip = "TODO: AutoRest")] public void TestVMExtensionOperations() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs index db0358f1e69f8..382cdc16d2d75 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs @@ -17,8 +17,8 @@ using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Test; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -27,9 +27,8 @@ public class ListVMTests: VMTestBase [Fact(Skip = "TODO: AutoRest")] public void TestListVMInSubscription() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs index 78f620c04be45..9e831ec601c67 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs @@ -22,14 +22,13 @@ using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; -using Microsoft.Azure.Test; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; -using Microsoft.Azure.Test.HttpRecorder; using System.Threading.Tasks; using Xunit; @@ -178,9 +177,8 @@ private void ValidateWinRMCustomDataAndUnattendContent(string winRMCertificateUr [Fact(Skip = "TODO: AutoRest")] public void TestVMWithWindowsOSProfile() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); string rgName = TestUtilities.GenerateName(TestPrefix); @@ -218,9 +216,8 @@ public void TestVMWithWindowsOSProfile() [Fact(Skip = "TODO: AutoRest")] public void TestVMWithLinuxOSProfile() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); string rgName = TestUtilities.GenerateName(TestPrefix); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UndoContext.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UndoContext.cs new file mode 100644 index 0000000000000..5f282702bb03e --- /dev/null +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UndoContext.cs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs index 60a851f5cec6d..42d13d0cf8b7b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs @@ -19,9 +19,9 @@ using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Storage.Models; -using Microsoft.Azure.Test; using System.Net; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -41,9 +41,8 @@ public class UsageTests : VMTestBase [Fact(Skip = "TODO: AutoRest")] public void TestListUsages() { - using (UndoContext context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs index 5fbe0e363d1ff..4adb42a7db778 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs @@ -17,13 +17,13 @@ using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Storage.Models; -using Microsoft.Azure.Test; using System.Linq; using System.Net; using Xunit; using System; using System.Collections.Generic; using Microsoft.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -42,9 +42,8 @@ public class VMCertificateTests : VMTestBase [Fact(Skip = "TODO: Wait for KMS Client")] public void TestVMCertificatesOperations() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs index f7e34af2c4736..950516dd43134 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs @@ -18,7 +18,7 @@ using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Storage.Models; -using Microsoft.Azure.Test; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Collections.Generic; using System.Linq; @@ -32,9 +32,8 @@ public class VMDataDiskTests : VMTestBase [Fact(Skip = "TODO: AutoRest")] public void TestVMDataDiskScenario() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imgageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs index df8b444b99a65..475499c5a0196 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs @@ -18,8 +18,8 @@ using System.Net; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; -using Microsoft.Azure.Test; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -30,9 +30,8 @@ public class VMImagesTests [Fact] public void TestVMImageGet() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); var vmimage = _pirClient.VirtualMachineImages.Get( @@ -62,9 +61,8 @@ public void TestVMImageGet() [Fact] public void TestVMImageListNoFilter() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); var vmimages = _pirClient.VirtualMachineImages.List( @@ -82,9 +80,8 @@ public void TestVMImageListNoFilter() [Fact(Skip = "TODO: AutoRest")] public void TestVMImageListFilters() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); // Filter: top - Negative Test @@ -167,9 +164,9 @@ public void TestVMImageListFilters() [Fact] public void TestVMImageListPublishers() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); var publishers = _pirClient.VirtualMachineImages.ListPublishers( @@ -183,9 +180,9 @@ public void TestVMImageListPublishers() [Fact] public void TestVMImageListOffers() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); var offers = _pirClient.VirtualMachineImages.ListOffers( @@ -200,9 +197,9 @@ public void TestVMImageListOffers() [Fact] public void TestVMImageListSkus() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); var skus = _pirClient.VirtualMachineImages.ListSkus( diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs index 2803db60fd332..0bf0ad428af75 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs @@ -18,7 +18,7 @@ using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Storage.Models; -using Microsoft.Azure.Test; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Collections.Generic; using System.Linq; @@ -43,9 +43,8 @@ public VirtualMachineImage GetMarketplaceImage() [Fact(Skip = "TODO: AutoRest")] public void TestVMMarketplace() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference dummyImageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMNetworkInterfaceTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMNetworkInterfaceTests.cs index 20605ec21e8c0..7a69ea9790a28 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMNetworkInterfaceTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMNetworkInterfaceTests.cs @@ -20,8 +20,8 @@ using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; -using Microsoft.Azure.Test; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -30,9 +30,8 @@ public class VMNetworkInterfaceTests : VMTestBase [Fact(Skip = "TODO: AutoRest")] public void TestNicVirtualMachineReference() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); @@ -93,9 +92,8 @@ public void TestNicVirtualMachineReference() [Fact(Skip = "TODO: AutoRest")] public void TestMultiNicVirtualMachineReference() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs index 26b922240e7e5..d83f1965e06ba 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs @@ -15,11 +15,11 @@ using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; -using Microsoft.Azure.Test; using System.Net; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Storage.Models; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -43,9 +43,8 @@ public class VMOperationalTests : VMTestBase [Fact(Skip = "TODO: AutoRest")] public void TestVMOperations() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs index 164ee31e391cf..b465c65079a80 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs @@ -19,8 +19,8 @@ using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Test; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { @@ -44,9 +44,8 @@ public class VMScenarioTests : VMTestBase [Trait("Name", "TestVMScenarioOperations")] public void TestVMScenarioOperations() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); EnsureClientsInitialized(); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMSizesTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMSizesTests.cs index d369a87135286..a68b470d4d9a6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMSizesTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMSizesTests.cs @@ -15,7 +15,7 @@ using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; -using Microsoft.Azure.Test; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System.Net; using Xunit; @@ -26,9 +26,8 @@ public class VMSizesTests [Fact] public void TestListVMSizes() { - using (var context = UndoContext.Current) + using (MockContext context = MockContext.Start()) { - context.Start(); var computeClient = ComputeManagementTestUtilities.GetComputeManagementClient(); string location = ComputeManagementTestUtilities.DefaultLocation.Replace(" ", ""); diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs index 685673b2327d8..9439a19d47fe5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs @@ -27,9 +27,9 @@ using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; -using Microsoft.Azure.Test; using Xunit; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests { diff --git a/src/ResourceManagement/Compute/Compute.sln b/src/ResourceManagement/Compute/Compute.sln index a82a436695465..fd3e572adbef9 100644 --- a/src/ResourceManagement/Compute/Compute.sln +++ b/src/ResourceManagement/Compute/Compute.sln @@ -13,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StorageManagement", "..\Sto EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceManagement", "..\Resource\ResourceManagement\ResourceManagement.csproj", "{165EF660-235B-45AF-83CB-0D32BEF4C1A2}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientRuntime.Azure.TestFramework", "..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj", "{F144A258-3C38-447A-993E-967F74A1A76C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Net45-Debug|Any CPU = Net45-Debug|Any CPU @@ -53,6 +55,14 @@ Global {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU {165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec index 7564651c6cf22..c55adb5d15247 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec +++ b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec @@ -1,4 +1,4 @@ -<?xml version="1.0"?> +<?xml version="1.0"?> <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> <metadata minClientVersion="2.5"> <id>Microsoft.Azure.Management.Compute</id> diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs index 8bf707fffe970..d0841d0d87fc8 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs @@ -762,7 +762,7 @@ public void LoadBalancerApiTestWithDistributionPolicy() } } - [Fact] + [Fact(Skip="Skipped due to Page<T> null enumerator fix. Open the test once CLientRuntime.Azure version 1.0.16-preview will be referenced")] public void CreateEmptyLoadBalancer() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; From 46b050ed9ff83e69d6fb444903ea1cffc536bd44 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 14:38:17 -0700 Subject: [PATCH 09/34] Referenced latest ClientRuntime.Azure and fixed tests. --- .../ClientRuntime.Azure.TestFramework.csproj | 2 +- ...t.ClientRuntime.Azure.TestFramework.nuspec | 2 +- .../TestFramework/packages.config | 2 +- .../Compute.Tests/Compute.Tests.csproj | 2 +- .../ScenarioTests/VMImageTests.cs | 23 +++++++++++-------- .../ScenarioTests/VMSizesTests.cs | 3 ++- .../Compute/Compute.Tests/packages.config | 2 +- .../ComputeManagement.csproj | 4 ++-- .../Microsoft.Azure.Management.Compute.nuspec | 2 +- .../Compute/ComputeManagement/packages.config | 2 +- .../Network.Tests/Network.Tests.csproj | 2 +- .../Network.Tests/Tests/LoadBalancerTests.cs | 8 +++++-- .../Network/Network.Tests/packages.config | 2 +- .../Microsoft.Azure.Management.Network.nuspec | 2 +- .../NetworkManagement.csproj | 4 ++-- .../Network/NetworkManagement/packages.config | 2 +- ...icrosoft.Azure.Management.Resources.nuspec | 2 +- .../ResourceManagement.csproj | 4 ++-- .../ResourceManagement/packages.config | 2 +- .../Resources.Tests/Resources.Tests.csproj | 2 +- .../Resource/Resources.Tests/packages.config | 2 +- .../Storage.Tests/Storage.Tests.csproj | 2 +- .../Storage/Storage.Tests/packages.config | 2 +- .../Microsoft.Azure.Management.Storage.nuspec | 2 +- .../StorageManagement.csproj | 23 +++---------------- .../Storage/StorageManagement/packages.config | 2 +- 26 files changed, 50 insertions(+), 57 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj index 678cbd27c3de8..7526f9dbc5685 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj @@ -25,7 +25,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> <HintPath>packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec index 3142d043a925a..76ba68e3e3f97 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec @@ -15,7 +15,7 @@ <releaseNotes>Experimental prerelease</releaseNotes> <copyright>Copyright 2015</copyright> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview, 1.0.15-preview)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview, 1.0.16-preview)" /> </dependencies> </metadata> <files> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config index d95bcce0ef121..d5b60e9ff87ea 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config @@ -2,6 +2,6 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index 577854dab1aca..c140ddcc63e7e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -163,7 +163,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs index 475499c5a0196..e0f0330e1c41c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMImageTests.cs @@ -32,7 +32,8 @@ public void TestVMImageGet() { using (MockContext context = MockContext.Start()) { - ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient( + new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); var vmimage = _pirClient.VirtualMachineImages.Get( ComputeManagementTestUtilities.DefaultLocation, @@ -63,7 +64,8 @@ public void TestVMImageListNoFilter() { using (MockContext context = MockContext.Start()) { - ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient( + new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); var vmimages = _pirClient.VirtualMachineImages.List( ComputeManagementTestUtilities.DefaultLocation, @@ -82,7 +84,8 @@ public void TestVMImageListFilters() { using (MockContext context = MockContext.Start()) { - ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient( + new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); // Filter: top - Negative Test var vmimages = _pirClient.VirtualMachineImages.List( @@ -166,8 +169,9 @@ public void TestVMImageListPublishers() { using (MockContext context = MockContext.Start()) { - - ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); + + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient( + new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); var publishers = _pirClient.VirtualMachineImages.ListPublishers( ComputeManagementTestUtilities.DefaultLocation); @@ -182,8 +186,8 @@ public void TestVMImageListOffers() { using (MockContext context = MockContext.Start()) { - - ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient( + new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); var offers = _pirClient.VirtualMachineImages.ListOffers( ComputeManagementTestUtilities.DefaultLocation, @@ -199,8 +203,9 @@ public void TestVMImageListSkus() { using (MockContext context = MockContext.Start()) { - - ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient(); + + ComputeManagementClient _pirClient = ComputeManagementTestUtilities.GetComputeManagementClient( + new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); var skus = _pirClient.VirtualMachineImages.ListSkus( ComputeManagementTestUtilities.DefaultLocation, diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMSizesTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMSizesTests.cs index a68b470d4d9a6..a5e2860914689 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMSizesTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMSizesTests.cs @@ -28,7 +28,8 @@ public void TestListVMSizes() { using (MockContext context = MockContext.Start()) { - var computeClient = ComputeManagementTestUtilities.GetComputeManagementClient(); + var computeClient = ComputeManagementTestUtilities.GetComputeManagementClient( + new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); string location = ComputeManagementTestUtilities.DefaultLocation.Replace(" ", ""); var virtualMachineSizeListResponse = computeClient.VirtualMachineSizes.List(location); diff --git a/src/ResourceManagement/Compute/Compute.Tests/packages.config b/src/ResourceManagement/Compute/Compute.Tests/packages.config index 2073e41d3ad88..5b31193adf60c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/packages.config +++ b/src/ResourceManagement/Compute/Compute.Tests/packages.config @@ -2,7 +2,7 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj index cc3526a8bcc7a..3dc364feca1bb 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj @@ -38,7 +38,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> @@ -56,7 +56,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec index c55adb5d15247..e1c4a3a04bd96 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec +++ b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec @@ -27,7 +27,7 @@ Note: This client library is for Virtual Machines under Azure Resource Manager.< </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Compute/ComputeManagement/packages.config b/src/ResourceManagement/Compute/ComputeManagement/packages.config index c018c8ac848f0..433f0dd1e0c7a 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/packages.config +++ b/src/ResourceManagement/Compute/ComputeManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj index 1b915d0ed2bd0..a099e6f509f3d 100644 --- a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj +++ b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj @@ -127,7 +127,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs index d0841d0d87fc8..d387d8ebc6e18 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs @@ -762,7 +762,7 @@ public void LoadBalancerApiTestWithDistributionPolicy() } } - [Fact(Skip="Skipped due to Page<T> null enumerator fix. Open the test once CLientRuntime.Azure version 1.0.16-preview will be referenced")] + [Fact] public void CreateEmptyLoadBalancer() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; @@ -811,7 +811,11 @@ public void CreateEmptyLoadBalancer() // Verify Delete var listLoadBalancer = networkResourceProviderClient.LoadBalancers.List(resourceGroupName); - Assert.Null(listLoadBalancer); + + Assert.NotNull(listLoadBalancer); + + Assert.Equal(0, listLoadBalancer.Count()); + Assert.True(string.IsNullOrEmpty(listLoadBalancer.NextPageLink)); } } diff --git a/src/ResourceManagement/Network/Network.Tests/packages.config b/src/ResourceManagement/Network/Network.Tests/packages.config index 2073e41d3ad88..5b31193adf60c 100644 --- a/src/ResourceManagement/Network/Network.Tests/packages.config +++ b/src/ResourceManagement/Network/Network.Tests/packages.config @@ -2,7 +2,7 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec b/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec index 51332dbb47fb8..958c41a1c1f8c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec +++ b/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec @@ -28,7 +28,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj index 90d51d2d5b837..40165f75b2af5 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj @@ -29,7 +29,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> </ItemGroup> @@ -43,7 +43,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Network/NetworkManagement/packages.config b/src/ResourceManagement/Network/NetworkManagement/packages.config index c018c8ac848f0..433f0dd1e0c7a 100644 --- a/src/ResourceManagement/Network/NetworkManagement/packages.config +++ b/src/ResourceManagement/Network/NetworkManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec index dd95d8471fa95..0aa191131d796 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec +++ b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec @@ -24,7 +24,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index 6a1af25853672..59eda593b5ebd 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -35,7 +35,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> @@ -53,7 +53,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Resource/ResourceManagement/packages.config b/src/ResourceManagement/Resource/ResourceManagement/packages.config index c018c8ac848f0..433f0dd1e0c7a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/packages.config +++ b/src/ResourceManagement/Resource/ResourceManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj index 8e494f92e8fb1..316653aee3a2e 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj +++ b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj @@ -171,7 +171,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Resource/Resources.Tests/packages.config b/src/ResourceManagement/Resource/Resources.Tests/packages.config index 2073e41d3ad88..5b31193adf60c 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/packages.config +++ b/src/ResourceManagement/Resource/Resources.Tests/packages.config @@ -2,7 +2,7 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj index 95655cbee661a..4df72db074280 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj +++ b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj @@ -107,7 +107,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Storage/Storage.Tests/packages.config b/src/ResourceManagement/Storage/Storage.Tests/packages.config index 8e774ba15cbbf..2299ff45d9598 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/packages.config +++ b/src/ResourceManagement/Storage/Storage.Tests/packages.config @@ -7,7 +7,7 @@ <package id="Microsoft.Data.Services.Client" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Microsoft.WindowsAzure.ConfigurationManager" version="1.8.0.0" targetFramework="net451" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net451" /> <package id="System.Spatial" version="5.6.2" targetFramework="net451" /> diff --git a/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec b/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec index 23c940a79bc61..292b061513943 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec +++ b/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec @@ -28,7 +28,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.15-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj index 5b8b301ccff6e..c0bfccff2baf2 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj @@ -17,24 +17,7 @@ <Compile Include="Generated\**\*.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> - <ItemGroup> - <None Include="Microsoft.Azure.Management.Storage.nuspec" /> - <None Include="Microsoft.Azure.Management.Storage.nuget.proj" /> - <None Include="packages.config" /> - </ItemGroup> - <ItemGroup> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - <Private>True</Private> - </Reference> - <None Include="packages.config"> - <SubType>Designer</SubType> - </None> - </ItemGroup> + <Choose> <When Condition=" '$(LibraryFxTarget)' == 'portable' "> <ItemGroup> @@ -45,7 +28,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> @@ -63,7 +46,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Storage/StorageManagement/packages.config b/src/ResourceManagement/Storage/StorageManagement/packages.config index c018c8ac848f0..433f0dd1e0c7a 100644 --- a/src/ResourceManagement/Storage/StorageManagement/packages.config +++ b/src/ResourceManagement/Storage/StorageManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> From cbf957a7456ac85092002c626ff23f5429ddae8b Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 15:05:04 -0700 Subject: [PATCH 10/34] Regenerated clients with new AutoRest and removed stale files. --- .../ComputeManagementClient.json | 10 +++---- .../Models/VirtualMachineListResult.cs | 28 ------------------- .../VirtualMachineExtensionsOperations.cs | 2 +- .../Generated/VirtualMachinesOperations.cs | 2 +- .../Models/ApplicationGatewayListResult.cs | 27 ------------------ .../Models/LoadBalancerListResult.cs | 27 ------------------ .../Models/LocalNetworkGatewayListResult.cs | 27 ------------------ .../Models/NetworkInterfaceListResult.cs | 27 ------------------ .../Models/NetworkSecurityGroupListResult.cs | 27 ------------------ .../Models/PublicIpAddressListResult.cs | 27 ------------------ .../Models/SecurityRuleListResult.cs | 27 ------------------ .../Generated/Models/SubnetListResult.cs | 27 ------------------ ...rtualNetworkGatewayConnectionListResult.cs | 28 ------------------- .../Models/VirtualNetworkGatewayListResult.cs | 27 ------------------ .../Models/VirtualNetworkListResult.cs | 27 ------------------ .../Generated/Models/DeploymentListResult.cs | 27 ------------------ .../Models/DeploymentOperationsListResult.cs | 27 ------------------ .../Models/FeatureOperationsListResult.cs | 27 ------------------ .../Models/ManagementLockListResult.cs | 27 ------------------ .../Generated/Models/ProviderListResult.cs | 27 ------------------ .../Models/ResourceGroupListResult.cs | 27 ------------------ .../Generated/Models/ResourceListResult.cs | 27 ------------------ .../Models/SubscriptionListResult.cs | 27 ------------------ .../Generated/Models/TagsListResult.cs | 27 ------------------ .../Generated/Models/TenantListResult.cs | 27 ------------------ .../Models/StorageAccountListResult.cs | 28 ------------------- 26 files changed, 7 insertions(+), 631 deletions(-) delete mode 100644 src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancerListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/LocalNetworkGatewayListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkSecurityGroupListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddressListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/SubnetListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnectionListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayListResult.cs delete mode 100644 src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationsListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureOperationsListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/SubscriptionListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagsListResult.cs delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantListResult.cs delete mode 100644 src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountListResult.cs diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json index 4ddf76573abc6..b3bcabde903a6 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json @@ -743,10 +743,10 @@ } ], "responses": { - "200": { + "204": { "description": "" }, - "204": { + "200": { "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/Models/VirtualMachineListResult.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineListResult.cs deleted file mode 100644 index a0d65ea9359f1..0000000000000 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineListResult.cs +++ /dev/null @@ -1,28 +0,0 @@ -namespace Microsoft.Azure.Management.Compute.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class VirtualMachineListResult - { - /// <summary> - /// Gets or sets the list of virtual machines. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<VirtualMachine> Value { get; set; } - - /// <summary> - /// Gets or sets the uri to fetch the next page of VMs. Call - /// ListNext() with this to fetch the next page of Virtual Machines. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs index 42b62a8c878f2..2942ceec4d922 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs @@ -381,7 +381,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || 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)); ex.Request = httpRequest; diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs index bf2d830b9915b..b49cbb5f14012 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs @@ -179,7 +179,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayListResult.cs deleted file mode 100644 index a2b73f508a631..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class ApplicationGatewayListResult - { - /// <summary> - /// Gets a list of ApplicationGateways in a resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<ApplicationGateway> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancerListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancerListResult.cs deleted file mode 100644 index 51821840bb2f4..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancerListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class LoadBalancerListResult - { - /// <summary> - /// Gets a list of LoadBalancers in a resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<LoadBalancer> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LocalNetworkGatewayListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LocalNetworkGatewayListResult.cs deleted file mode 100644 index 3f8a8c5b58948..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LocalNetworkGatewayListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class LocalNetworkGatewayListResult - { - /// <summary> - /// Gets List of LocalNetworkGateways that exists in a resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<LocalNetworkGateway> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceListResult.cs deleted file mode 100644 index bb6a9ba5e1580..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class NetworkInterfaceListResult - { - /// <summary> - /// Gets or sets list of NetworkInterfaces in a resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<NetworkInterface> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkSecurityGroupListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkSecurityGroupListResult.cs deleted file mode 100644 index 2f9db0e0e7b48..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkSecurityGroupListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class NetworkSecurityGroupListResult - { - /// <summary> - /// Gets List of NetworkSecurityGroups in a resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<NetworkSecurityGroup> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddressListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddressListResult.cs deleted file mode 100644 index 99bd60fa4788e..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddressListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class PublicIpAddressListResult - { - /// <summary> - /// Gets List of publicIP addresses that exists in a resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<PublicIpAddress> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleListResult.cs deleted file mode 100644 index 6271b147a022d..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRuleListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class SecurityRuleListResult - { - /// <summary> - /// Gets security rules in a network security group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<SecurityRule> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SubnetListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SubnetListResult.cs deleted file mode 100644 index db97a893bbf98..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SubnetListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class SubnetListResult - { - /// <summary> - /// Gets the subnets in a virtual network - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<Subnet> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnectionListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnectionListResult.cs deleted file mode 100644 index 6d92c054128f2..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnectionListResult.cs +++ /dev/null @@ -1,28 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class VirtualNetworkGatewayConnectionListResult - { - /// <summary> - /// Gets List of VirtualNetworkGatewayConnections that exists in a - /// resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<VirtualNetworkGatewayConnection> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayListResult.cs deleted file mode 100644 index bed6166e77f57..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class VirtualNetworkGatewayListResult - { - /// <summary> - /// Gets List of VirtualNetworkGateways that exists in a resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<VirtualNetworkGateway> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkListResult.cs deleted file mode 100644 index 903eedec9a557..0000000000000 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Network.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class VirtualNetworkListResult - { - /// <summary> - /// Gets list of VirtualNetworks in a resource group - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<VirtualNetwork> Value { get; set; } - - /// <summary> - /// Gets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentListResult.cs deleted file mode 100644 index b4806b84643fe..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class DeploymentListResult - { - /// <summary> - /// Gets or sets the list of deployments. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<DeploymentExtended> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationsListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationsListResult.cs deleted file mode 100644 index 043f7186f45d4..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationsListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class DeploymentOperationsListResult - { - /// <summary> - /// Gets or sets the list of deployments. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<DeploymentOperation> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureOperationsListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureOperationsListResult.cs deleted file mode 100644 index b5cf0fe7d4cad..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureOperationsListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class FeatureOperationsListResult - { - /// <summary> - /// Gets or sets the list of Features. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<FeatureResult> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockListResult.cs deleted file mode 100644 index bbc3850c01616..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class ManagementLockListResult - { - /// <summary> - /// Gets or sets the list of locks. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<ManagementLockObject> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderListResult.cs deleted file mode 100644 index 2bfa7d0748ccd..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class ProviderListResult - { - /// <summary> - /// Gets or sets the list of resource providers. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<Provider> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupListResult.cs deleted file mode 100644 index c35e940062053..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class ResourceGroupListResult - { - /// <summary> - /// Gets or sets the list of resource groups. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<ResourceGroupExtended> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceListResult.cs deleted file mode 100644 index b69122a961c25..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class ResourceListResult - { - /// <summary> - /// Gets or sets the list of resource groups. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<GenericResource> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/SubscriptionListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/SubscriptionListResult.cs deleted file mode 100644 index 3f9176434011a..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/SubscriptionListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Subscriptions.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class SubscriptionListResult - { - /// <summary> - /// Gets or sets subscriptions. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<Subscription> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagsListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagsListResult.cs deleted file mode 100644 index 0b380eef32933..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagsListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class TagsListResult - { - /// <summary> - /// Gets or sets the list of tags. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<TagDetails> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantListResult.cs deleted file mode 100644 index ecbd40472becf..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantListResult.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace Microsoft.Azure.Subscriptions.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class TenantListResult - { - /// <summary> - /// Gets or sets tenant Ids. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<TenantIdDescription> Value { get; set; } - - /// <summary> - /// Gets or sets the URL to get the next set of results. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountListResult.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountListResult.cs deleted file mode 100644 index e071f0b4d9b67..0000000000000 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountListResult.cs +++ /dev/null @@ -1,28 +0,0 @@ -namespace Microsoft.Azure.Management.Storage.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Azure; - - /// <summary> - /// </summary> - public partial class StorageAccountListResult - { - /// <summary> - /// Gets the list of storage accounts and their properties. - /// </summary> - [JsonProperty(PropertyName = "value")] - public IList<StorageAccount> Value { get; set; } - - /// <summary> - /// Gets the link to the next set of results. Currently this will - /// always be empty as the API does not support pagination. - /// </summary> - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} From 26af8df4b298dce70dad89c9c8b64fbe4cc1f6b6 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 15:20:14 -0700 Subject: [PATCH 11/34] Fixed TestFramework solution configuration --- .../ClientRuntime.Azure.TestFramework.sln | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/ClientRuntime.Azure.TestFramework/ClientRuntime.Azure.TestFramework.sln b/src/ClientRuntime.Azure.TestFramework/ClientRuntime.Azure.TestFramework.sln index 5d738913ab17a..1f757dba34f1a 100644 --- a/src/ClientRuntime.Azure.TestFramework/ClientRuntime.Azure.TestFramework.sln +++ b/src/ClientRuntime.Azure.TestFramework/ClientRuntime.Azure.TestFramework.sln @@ -9,18 +9,30 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientRuntime.Azure.TestFra EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Net40-Debug|Any CPU = Net40-Debug|Any CPU + Net40-Release|Any CPU = Net40-Release|Any CPU Net45-Debug|Any CPU = Net45-Debug|Any CPU Net45-Release|Any CPU = Net45-Release|Any CPU + Portable-Debug|Any CPU = Portable-Debug|Any CPU + Portable-Release|Any CPU = Portable-Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F144A258-3C38-447A-993E-967F74A1A76C}.Net40-Debug|Any CPU.ActiveCfg = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net40-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net40-Debug|Any CPU.ActiveCfg = Net45-Release|Any CPU + {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net40-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Portable-Debug|Any CPU.ActiveCfg = Net45-Release|Any CPU + {87DE439E-2F37-4A45-B3BE-E33747FB9401}.Portable-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From 6b1a0fb8384ae99cf6fa0c8c9c388ba5496a6194 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 15:23:49 -0700 Subject: [PATCH 12/34] Fixed build breaks for portable versions. --- src/ResourceManagement/Compute/Compute.sln | 2 -- src/ResourceManagement/Network/Network.sln | 2 -- src/ResourceManagement/Resource/Resource.sln | 2 -- src/ResourceManagement/Storage/Storage.sln | 2 -- 4 files changed, 8 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.sln b/src/ResourceManagement/Compute/Compute.sln index fd3e572adbef9..a82a3fa92885b 100644 --- a/src/ResourceManagement/Compute/Compute.sln +++ b/src/ResourceManagement/Compute/Compute.sln @@ -60,9 +60,7 @@ Global {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/Network/Network.sln b/src/ResourceManagement/Network/Network.sln index 6ea209c67b234..a934dbaa23328 100644 --- a/src/ResourceManagement/Network/Network.sln +++ b/src/ResourceManagement/Network/Network.sln @@ -44,9 +44,7 @@ Global {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/Resource/Resource.sln b/src/ResourceManagement/Resource/Resource.sln index 10c00f3482923..9db6415749f5d 100644 --- a/src/ResourceManagement/Resource/Resource.sln +++ b/src/ResourceManagement/Resource/Resource.sln @@ -36,9 +36,7 @@ Global {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/Storage/Storage.sln b/src/ResourceManagement/Storage/Storage.sln index babb545559cc0..5e8e02917f046 100644 --- a/src/ResourceManagement/Storage/Storage.sln +++ b/src/ResourceManagement/Storage/Storage.sln @@ -44,9 +44,7 @@ Global {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU - {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU - {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From 0eafaa844883983b381c9bf28022de0ac577f2e5 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 15:53:39 -0700 Subject: [PATCH 13/34] Fixed Microsoft.Rest.ClientRuntime.Azure.TestFramework package build. --- ...crosoft.Rest.ClientRuntime.Azure.TestFramework.nuspec | 9 +++++---- .../Microsoft.Azure.Management.Compute.nuget.proj | 2 +- .../Compute/ComputeManagement/Properties/AssemblyInfo.cs | 2 +- tools/nuget.targets | 2 ++ 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec index 76ba68e3e3f97..2b0b36fcccfff 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec @@ -12,15 +12,16 @@ <requireLicenseAcceptance>false</requireLicenseAcceptance> <summary>Test framework for AutoRest generated Azure management clients.</summary> <description>Test utilities for xunit test suites for AutoRest generated Azure clients</description> - <releaseNotes>Experimental prerelease</releaseNotes> <copyright>Copyright 2015</copyright> <dependencies> <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview, 1.0.16-preview)" /> </dependencies> </metadata> <files> - <file src="..\..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll" target="lib\net45" /> - <file src="..\..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.pdb" target="lib\net45" /> - <file src="..\..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.xml" target="lib\net45" /> + <file src="ClientRuntime.Azure.TestFramework\TestFramework\**\*.cs" target="src\ClientRuntime.Azure.TestFramework" /> + <file src="ClientRuntime.Azure.TestFramework\TestFramework\Properties\*.resx" target="src\ClientRuntime.Azure.TestFramework\Properties" /> + <file src="..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll" target="lib\net45" /> + <file src="..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.pdb" target="lib\net45" /> + <file src="..\binaries\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.xml" target="lib\net45" /> </files> </package> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuget.proj b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuget.proj index 2e417ff2a76df..8c019e5450dca 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuget.proj +++ b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuget.proj @@ -2,7 +2,7 @@ <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup> <SdkNuGetPackage Include="Microsoft.Azure.Management.Compute"> - <PackageVersion>8.0.0</PackageVersion> + <PackageVersion>8.0.1-preview</PackageVersion> <Folder>$(MSBuildThisFileDirectory)</Folder> </SdkNuGetPackage> </ItemGroup> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Properties/AssemblyInfo.cs b/src/ResourceManagement/Compute/ComputeManagement/Properties/AssemblyInfo.cs index e00a1c4282005..7ec94d58b1b15 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Properties/AssemblyInfo.cs @@ -21,7 +21,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] [assembly: AssemblyVersion("8.0.0.0")] -[assembly: AssemblyFileVersion("8.0.0.0")] +[assembly: AssemblyFileVersion("8.0.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/tools/nuget.targets b/tools/nuget.targets index fbd332b7faacb..95bed14696599 100644 --- a/tools/nuget.targets +++ b/tools/nuget.targets @@ -15,6 +15,8 @@ Condition=" '$(Scope)' == 'all' "/> <Import Project="$(LibrarySourceFolder)\Authentication\**\*.nuget.proj" Condition=" '$(Scope)' == 'all' "/> + <Import Project="$(LibrarySourceFolder)\ClientRuntime.Azure.TestFramework\**\*.nuget.proj" + Condition=" '$(Scope)' == 'all' "/> <PropertyGroup> <NuGetVerbosity>normal</NuGetVerbosity> From 33f9937fdbe090fce08f78d00344b5f650c8a044 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 16:15:34 -0700 Subject: [PATCH 14/34] Fixed white space in nuget package project --- .../Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec index 2b0b36fcccfff..596471f36f991 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec @@ -14,7 +14,7 @@ <description>Test utilities for xunit test suites for AutoRest generated Azure clients</description> <copyright>Copyright 2015</copyright> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview, 1.0.16-preview)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> </dependencies> </metadata> <files> From bfedff7c2ce14efabc63df65dfdb0a844800d1f6 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 16:53:31 -0700 Subject: [PATCH 15/34] Fixed TestFramework --- .../TestFramework/TestEnvironment.cs | 5 +++++ .../TestFramework/TestEnvironmentFactory.cs | 14 ++++++-------- .../ScenarioTests/DeploymentTests.ScenarioTests.cs | 14 ++++++++------ 3 files changed, 19 insertions(+), 14 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs index 5081559d62b5f..a0534af8058c0 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs @@ -158,6 +158,11 @@ public TestEnvironment(IDictionary<string, string> connection) if (connection.ContainsKey(TestEnvironment.UserIdKey)) { this.UserName = connection[TestEnvironment.UserIdKey]; + var splitUser = this.UserName.Split( new []{'@'}, StringSplitOptions.RemoveEmptyEntries); + if (splitUser.Length == 2) + { + this.UserDomain = splitUser[1]; + } } if (connection.ContainsKey(TestEnvironment.ServicePrincipalKey)) { diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs index c03c89d2ddf98..d6f00b0a04fdc 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs @@ -9,6 +9,7 @@ using System.Net.Http; using Newtonsoft.Json.Linq; using Microsoft.Azure.Authentication; +using System.Threading; namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework { @@ -38,15 +39,13 @@ public static TestEnvironment GetTestEnvironment() { string connectionString = Environment.GetEnvironmentVariable(TestCSMOrgIdConnectionStringKey); TestEnvironment testEnv = new TestEnvironment(TestUtilities.ParseConnectionString(connectionString)); - string token = null; CredManCache credCache = new CredManCache("SpecTestSupport"); if (HttpMockServer.Mode == HttpRecorderMode.Playback) { - token = TestEnvironment.RawTokenDefault; testEnv.UserName = TestEnvironment.UserIdDefault; SetEnvironmentSubscriptionId(testEnv, connectionString); - testEnv.Credentials = new TokenCredentials(token); + testEnv.Credentials = new TokenCredentials(TestEnvironment.RawTokenDefault); } else //Record or None { @@ -62,7 +61,7 @@ public static TestEnvironment GetTestEnvironment() if (parsedConnection.ContainsKey(TestEnvironment.RawToken)) { - token = parsedConnection[TestEnvironment.RawToken]; + var token = parsedConnection[TestEnvironment.RawToken]; testEnv.Credentials = new TokenCredentials(token); } else @@ -99,7 +98,7 @@ public static TestEnvironment GetTestEnvironment() //Getting subscriptions from server var subscriptions = ListSubscriptions( testEnv.BaseUri.ToString(), - token); + testEnv.Credentials); if (subscriptions.Count == 0) { @@ -176,16 +175,15 @@ public static void SetEnvironmentSubscriptionId(TestEnvironment testEnv, string } } - public static List<SubscriptionInfo> ListSubscriptions(string baseuri, string accessToken) + public static List<SubscriptionInfo> ListSubscriptions(string baseuri, ServiceClientCredentials credentials) { var request = new HttpRequestMessage { RequestUri = new Uri(string.Format("{0}/subscriptions?api-version=2014-04-01-preview", baseuri)) }; - request.Headers.Add("Authorization", string.Format("Bearer {0}", accessToken)); - HttpClient client = new HttpClient(); + credentials.ProcessHttpRequestAsync(request, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult(); HttpResponseMessage response = client.SendAsync(request).Result; response.EnsureSuccessStatusCode(); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs index c5455d056fbaa..5337ac4a8f881 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs @@ -111,7 +111,8 @@ public void CreateDeploymentAndValidateProperties() Uri = GoodWebsiteTemplateUri, }, Parameters = - @"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}", + JObject.Parse( + @"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}"), Mode = DeploymentMode.Incremental, } }; @@ -162,7 +163,7 @@ public void ValidateGoodDeployment() Uri = GoodWebsiteTemplateUri, }, Parameters = - @"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}", + JObject.Parse(@"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}"), Mode = DeploymentMode.Incremental, } }; @@ -198,7 +199,7 @@ public void ValidateGoodDeploymentWithInlineTemplate() { Template = File.ReadAllText("ScenarioTests\\good-website.js"), Parameters = - @"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}", + JObject.Parse(@"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}"), Mode = DeploymentMode.Incremental, } }; @@ -237,7 +238,7 @@ public void ValidateBadDeployment() Uri = BadTemplateUri, }, Parameters = - @"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}", + JObject.Parse(@"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}"), Mode = DeploymentMode.Incremental, } }; @@ -326,7 +327,7 @@ public void ListDeploymentsWorksWithFilter() Uri = GoodWebsiteTemplateUri, }, Parameters = - @"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}", + JObject.Parse(@"{ 'siteName': {'value': 'mctest0101'},'hostingPlanName': {'value': 'mctest0101'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}"), Mode = DeploymentMode.Incremental, } }; @@ -376,9 +377,10 @@ public void CreateLargeWebDeploymentTemplateWorks() Uri = GoodWebsiteTemplateUri, }, Parameters = + JObject.Parse( "{ 'siteName': {'value': '" + resourceName + "'},'hostingPlanName': {'value': '" + resourceName + - "'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}", + "'},'siteMode': {'value': 'Limited'},'computeMode': {'value': 'Shared'},'siteLocation': {'value': 'North Europe'},'sku': {'value': 'Free'},'workerSize': {'value': '0'}}"), Mode = DeploymentMode.Incremental, } }; From e4a7c4414d6f8cd2257c5834d07e1d601ff6758b Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 17:11:52 -0700 Subject: [PATCH 16/34] Fixed TestFramework Tenant and Domain fields --- .../TestFramework/TestEnvironment.cs | 6 ++---- .../TestFramework/TestEnvironmentFactory.cs | 9 +++++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs index a0534af8058c0..1680fe77bd813 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironment.cs @@ -161,7 +161,7 @@ public TestEnvironment(IDictionary<string, string> connection) var splitUser = this.UserName.Split( new []{'@'}, StringSplitOptions.RemoveEmptyEntries); if (splitUser.Length == 2) { - this.UserDomain = splitUser[1]; + this.Tenant = splitUser[1]; } } if (connection.ContainsKey(TestEnvironment.ServicePrincipalKey)) @@ -288,9 +288,7 @@ public Uri BaseUri public string ClientId { get; set; } public string SubscriptionId { get; set; } - - public string UserDomain { get; set; } - + public IDictionary<string, string> RawParameters { get; set; } public bool UsesCustomUri() diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs index d6f00b0a04fdc..9466a0e7cc8cf 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs @@ -67,7 +67,8 @@ public static TestEnvironment GetTestEnvironment() else { string password = null; - if(!parsedConnection.TryGetValue(TestEnvironment.AADPasswordKey, out password)) + if(testEnv.UserName != null && + !parsedConnection.TryGetValue(TestEnvironment.AADPasswordKey, out password)) { credCache.TryGetValue(testEnv.UserName, out password); } @@ -76,13 +77,13 @@ public static TestEnvironment GetTestEnvironment() { ServiceClientTracing.Information("Using AAD auth with username and password combination"); testEnv.Credentials = new UserTokenCredentials(testEnv.ClientId, - testEnv.UserDomain, testEnv.UserName, password, testEnv.AsAzureEnvironment()); + testEnv.Tenant, testEnv.UserName, password, testEnv.AsAzureEnvironment()); } else if (testEnv.ServicePrincipal != null && password != null) { ServiceClientTracing.Information("Using AAD auth with service principal and password combination"); testEnv.Credentials = new ApplicationTokenCredentials(testEnv.ServicePrincipal, - testEnv.UserDomain, password, testEnv.AsAzureEnvironment()); + testEnv.Tenant, password, testEnv.AsAzureEnvironment()); } } }//end-of-if connectionString present @@ -92,7 +93,7 @@ public static TestEnvironment GetTestEnvironment() //will authenticate the user if the connection string is nullOrEmpty and the mode is not playback ServiceClientTracing.Information("Using AAD auth with pop-up dialog using default environment..."); testEnv.Credentials = new UserTokenCredentials(testEnv.ClientId, - testEnv.UserDomain, testEnv.AsAzureEnvironment()); + testEnv.Tenant, testEnv.AsAzureEnvironment()); } //Getting subscriptions from server From 12099dc6c72a728fe715c41360a57eabb3bbb9c0 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Wed, 22 Jul 2015 17:49:24 -0700 Subject: [PATCH 17/34] Fixed Resource tests. --- .../DeploymentTests.ScenarioTests.cs | 14 ++------------ .../ResourceGroupTests.ScenarioTests.cs | 3 ++- .../ScenarioTests/ResourceTests.ScenarioTests.cs | 15 ++++++++------- 3 files changed, 12 insertions(+), 20 deletions(-) diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs index 5337ac4a8f881..313b82582098d 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs @@ -59,11 +59,6 @@ public void CreateDummyDeploymentTemplateWorks() {"value", true}, }} }; - var serializedDictionary = JsonConvert.SerializeObject(dictionary, new JsonSerializerSettings - { - TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple, - TypeNameHandling = TypeNameHandling.None - }); using (MockContext context = MockContext.Start()) { @@ -76,7 +71,7 @@ public void CreateDummyDeploymentTemplateWorks() { Uri = DummyTemplateUri }, - Parameters = serializedDictionary, + Parameters = dictionary, Mode = DeploymentMode.Incremental, } }; @@ -268,11 +263,6 @@ public void CreateDummyDeploymentProducesOperations() {"value", true}, }} }; - var serializedDictionary = JsonConvert.SerializeObject(dictionary, new JsonSerializerSettings - { - TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple, - TypeNameHandling = TypeNameHandling.None - }); using (MockContext context = MockContext.Start()) { @@ -285,7 +275,7 @@ public void CreateDummyDeploymentProducesOperations() { Uri = DummyTemplateUri }, - Parameters = serializedDictionary, + Parameters = dictionary, Mode = DeploymentMode.Incremental, } }; diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs index 80aa10d4b0a9d..9bf16bc9d735e 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs @@ -24,6 +24,7 @@ using Microsoft.Rest.TransientFaultHandling; using Xunit; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Newtonsoft.Json.Linq; namespace ResourceGroups.Tests { @@ -60,7 +61,7 @@ public void DeleteResourceGroupRemovesGroupResources() new GenericResource { Location = location, - Properties = "{'name':'" + resourceName + "','siteMode': 'Standard','computeMode':'Shared'}" + Properties = JObject.Parse("{'name':'" + resourceName + "','siteMode': 'Standard','computeMode':'Shared'}") }); client.ResourceGroups.Delete(resourceGroupName); diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs index 3a559cdee249d..05f104e188bdd 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceTests.ScenarioTests.cs @@ -23,6 +23,7 @@ using Microsoft.Rest.TransientFaultHandling; using Xunit; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Newtonsoft.Json.Linq; namespace ResourceGroups.Tests { @@ -155,7 +156,7 @@ public void CreatedResourceIsAvailableInList() new GenericResource { Location = websiteLocation, - Properties = "{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}", + Properties = JObject.Parse("{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}"), } ); @@ -211,7 +212,7 @@ public void CreatedResourceIsAvailableInListFilteredByTagName() { Tags = new Dictionary<string, string> { { tagName, "" } }, Location = websiteLocation, - Properties = "{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}" + Properties = JObject.Parse("{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}") }); client.Resources.CreateOrUpdate( groupName, @@ -223,7 +224,7 @@ public void CreatedResourceIsAvailableInListFilteredByTagName() new GenericResource { Location = websiteLocation, - Properties = "{'name':'" + resourceNameNoTags + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}" + Properties = JObject.Parse("{'name':'" + resourceNameNoTags + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}") }); var listResult = client.ResourceGroups.ListResources(groupName, r => r.Tagname == tagName); @@ -273,7 +274,7 @@ public void CreatedResourceIsAvailableInListFilteredByTagNameAndValue() { Tags = new Dictionary<string, string> { { tagName, tagValue } }, Location = websiteLocation, - Properties = "{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}" + Properties = JObject.Parse("{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}") } ); client.Resources.CreateOrUpdate( @@ -286,7 +287,7 @@ public void CreatedResourceIsAvailableInListFilteredByTagNameAndValue() new GenericResource { Location = websiteLocation, - Properties = "{'name':'" + resourceNameNoTags + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}" + Properties = JObject.Parse("{'name':'" + resourceNameNoTags + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}") } ); @@ -333,7 +334,7 @@ public void CreatedAndDeleteResource() new GenericResource { Location = location, - Properties = "{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}" + Properties = JObject.Parse("{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}") } ); @@ -374,7 +375,7 @@ public void CreatedAndListResource() { Location = location, Tags = new Dictionary<string, string>() { { "department", "finance" }, { "tagname", "tagvalue" } }, - Properties = "{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}" + Properties = JObject.Parse("{'name':'" + resourceName + "','siteMode':'Limited','computeMode':'Shared', 'sku':'Free', 'workerSize': 0}") } ); From 2aaa5d7a7d73e069ddd4aae8bc1ab12bbc5e1689 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Thu, 23 Jul 2015 12:04:33 -0700 Subject: [PATCH 18/34] Changed Authentication reference to Adal. --- .../Common.Authentication.Tests.csproj | 12 +- .../packages.config | 2 +- .../Authentication/AdalConfiguration.cs | 1 + .../ServicePrincipalTokenProvider.cs | 24 ++-- .../Authentication/UserTokenProvider.cs | 114 +++++++++--------- .../Common.Authentication.csproj | 12 +- ...oft.Azure.Common.Authentication.nuget.proj | 2 +- ...crosoft.Azure.Common.Authentication.nuspec | 2 +- .../Properties/AssemblyInfo.cs | 2 +- .../Common.Authentication/packages.config | 2 +- 10 files changed, 93 insertions(+), 80 deletions(-) diff --git a/src/Authentication/Common.Authentication.Tests/Common.Authentication.Tests.csproj b/src/Authentication/Common.Authentication.Tests/Common.Authentication.Tests.csproj index 53418749f62db..43c8032b0f2e3 100644 --- a/src/Authentication/Common.Authentication.Tests/Common.Authentication.Tests.csproj +++ b/src/Authentication/Common.Authentication.Tests/Common.Authentication.Tests.csproj @@ -28,13 +28,13 @@ <SpecificVersion>False</SpecificVersion> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.WindowsAzure.Management.Storage"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.WindowsAzure.Management.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll</HintPath> diff --git a/src/Authentication/Common.Authentication.Tests/packages.config b/src/Authentication/Common.Authentication.Tests/packages.config index fd648a7b9f97c..dd1fa243f43aa 100644 --- a/src/Authentication/Common.Authentication.Tests/packages.config +++ b/src/Authentication/Common.Authentication.Tests/packages.config @@ -6,7 +6,7 @@ <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> - <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Net.Http" version="2.2.22" targetFramework="net45" /> <package id="Microsoft.WindowsAzure.Management.Storage" version="5.0.0" targetFramework="net45" /> <package id="Moq" version="4.2.1409.1722" targetFramework="net45" /> diff --git a/src/Authentication/Common.Authentication/Authentication/AdalConfiguration.cs b/src/Authentication/Common.Authentication/Authentication/AdalConfiguration.cs index bf61523391c5b..1032394029c89 100644 --- a/src/Authentication/Common.Authentication/Authentication/AdalConfiguration.cs +++ b/src/Authentication/Common.Authentication/Authentication/AdalConfiguration.cs @@ -55,6 +55,7 @@ public AdalConfiguration() ClientRedirectUri = PowerShellRedirectUri; ValidateAuthority = true; AdEndpoint = string.Empty; + ResourceClientUri = "https://management.core.windows.net/"; } } } \ No newline at end of file diff --git a/src/Authentication/Common.Authentication/Authentication/ServicePrincipalTokenProvider.cs b/src/Authentication/Common.Authentication/Authentication/ServicePrincipalTokenProvider.cs index a0d14f5a2a8c8..696e63e4415f2 100644 --- a/src/Authentication/Common.Authentication/Authentication/ServicePrincipalTokenProvider.cs +++ b/src/Authentication/Common.Authentication/Authentication/ServicePrincipalTokenProvider.cs @@ -19,6 +19,7 @@ using System; using System.Collections.Generic; using System.Security; +using System.Threading.Tasks; namespace Microsoft.Azure.Common.Authentication { @@ -33,14 +34,18 @@ public IAccessToken GetAccessToken(AdalConfiguration config, ShowDialog promptBe { throw new ArgumentException(string.Format(Resources.InvalidCredentialType, "User"), "credentialType"); } - return new ServicePrincipalAccessToken(config, AcquireToken(config, userId, password), this, userId); + return new ServicePrincipalAccessToken( + config, + AcquireToken(config, userId, password).ConfigureAwait(false).GetAwaiter().GetResult(), + this, + userId); } - private AuthenticationResult AcquireToken(AdalConfiguration config, string appId, SecureString appKey) + private async Task<AuthenticationResult> AcquireToken(AdalConfiguration config, string appId, SecureString appKey) { if (appKey == null) { - return Renew(config, appId); + return await Renew(config, appId); } StoreAppKey(appId, config.AdDomain, appKey); @@ -48,21 +53,22 @@ private AuthenticationResult AcquireToken(AdalConfiguration config, string appId string authority = config.AdEndpoint + config.AdDomain; var context = new AuthenticationContext(authority, config.ValidateAuthority, AzureSession.TokenCache); - var credential = new ClientCredential(appId, appKey); - return context.AcquireToken("https://management.core.windows.net/", credential); + var credential = new ClientCredential(appId, UserTokenProvider.ConvertToString(appKey)); + return await context.AcquireTokenAsync(config.ResourceClientUri, credential); } - private AuthenticationResult Renew(AdalConfiguration config, string appId) + private async Task<AuthenticationResult> Renew(AdalConfiguration config, string appId) { TracingAdapter.Information(Resources.SPNRenewTokenTrace, appId, config.AdDomain, config.AdEndpoint, config.ClientId, config.ClientRedirectUri); - using (SecureString appKey = LoadAppKey(appId, config.AdDomain)) + + using (SecureString appKey = LoadAppKey(appId, config.AdDomain)) { if (appKey == null) { throw new KeyNotFoundException(string.Format(Resources.ServiceKeyNotFound, appId)); } - return AcquireToken(config, appId, appKey); + return await AcquireToken(config, appId, appKey); } } @@ -96,7 +102,7 @@ public void AuthorizeRequest(Action<string, string> authTokenSetter) { if (IsExpired) { - AuthResult = tokenProvider.Renew(Configuration, appId); + AuthResult = tokenProvider.Renew(Configuration, appId).ConfigureAwait(false).GetAwaiter().GetResult(); } authTokenSetter(AuthResult.AccessTokenType, AuthResult.AccessToken); diff --git a/src/Authentication/Common.Authentication/Authentication/UserTokenProvider.cs b/src/Authentication/Common.Authentication/Authentication/UserTokenProvider.cs index b96884027b175..e8430ba45fd41 100644 --- a/src/Authentication/Common.Authentication/Authentication/UserTokenProvider.cs +++ b/src/Authentication/Common.Authentication/Authentication/UserTokenProvider.cs @@ -22,6 +22,7 @@ using System.Security; using System.Threading; using System.Windows.Forms; +using System.Threading.Tasks; namespace Microsoft.Azure.Common.Authentication { @@ -47,7 +48,10 @@ public IAccessToken GetAccessToken(AdalConfiguration config, ShowDialog promptBe throw new ArgumentException(string.Format(Resources.InvalidCredentialType, "User"), "credentialType"); } - return new AdalAccessToken(AcquireToken(config, promptBehavior, userId, password), this, config); + return new AdalAccessToken( + AcquireToken(config, promptBehavior, userId, password).ConfigureAwait(false).GetAwaiter().GetResult(), + this, + config); } private readonly static TimeSpan expirationThreshold = TimeSpan.FromMinutes(5); @@ -70,8 +74,12 @@ private bool IsExpired(AdalAccessToken token) private void Renew(AdalAccessToken token) { - TracingAdapter.Information(Resources.UPNRenewTokenTrace, token.AuthResult.AccessTokenType, token.AuthResult.ExpiresOn, - token.AuthResult.IsMultipleResourceRefreshToken, token.AuthResult.TenantId, token.UserId); + TracingAdapter.Information( + Resources.UPNRenewTokenTrace, + token.AuthResult.AccessTokenType, + token.AuthResult.ExpiresOn, + token.AuthResult.TenantId, + token.UserId); var user = token.AuthResult.UserInfo; if (user != null) { @@ -81,7 +89,8 @@ private void Renew(AdalAccessToken token) if (IsExpired(token)) { TracingAdapter.Information(Resources.UPNExpiredTokenTrace); - AuthenticationResult result = AcquireToken(token.Configuration, ShowDialog.Never, token.UserId, null); + AuthenticationResult result = AcquireToken(token.Configuration, ShowDialog.Never, token.UserId, null) + .ConfigureAwait(false).GetAwaiter().GetResult(); if (result == null) { @@ -96,37 +105,19 @@ private void Renew(AdalAccessToken token) private AuthenticationContext CreateContext(AdalConfiguration config) { - return new AuthenticationContext(config.AdEndpoint + config.AdDomain, config.ValidateAuthority, AzureSession.TokenCache) - { - OwnerWindow = parentWindow - }; + return new AuthenticationContext(config.AdEndpoint + config.AdDomain, config.ValidateAuthority, AzureSession.TokenCache); } // We have to run this in a separate thread to guarantee that it's STA. This method // handles the threading details. - private AuthenticationResult AcquireToken(AdalConfiguration config, ShowDialog promptBehavior, string userId, + private async Task<AuthenticationResult> AcquireToken(AdalConfiguration config, ShowDialog promptBehavior, string userId, SecureString password) { - AuthenticationResult result = null; - Exception ex = null; - if (promptBehavior == ShowDialog.Never) - { - result = SafeAquireToken(config, promptBehavior, userId, password, out ex); - } - else + try { - var thread = new Thread(() => - { - result = SafeAquireToken(config, promptBehavior, userId, password, out ex); - }); - - thread.SetApartmentState(ApartmentState.STA); - thread.Name = "AcquireTokenThread"; - thread.Start(); - thread.Join(); + return await SafeAquireToken(config, promptBehavior, userId, password); } - - if (ex != null) + catch(Exception ex) { var adex = ex as AdalException; if (adex != null) @@ -140,25 +131,22 @@ private AuthenticationResult AcquireToken(AdalConfiguration config, ShowDialog p { throw ex; } + throw new AadAuthenticationFailedException(GetExceptionMessage(ex), ex); } - - return result; } - private AuthenticationResult SafeAquireToken( + private async Task<AuthenticationResult> SafeAquireToken( AdalConfiguration config, ShowDialog showDialog, string userId, - SecureString password, - out Exception ex) + SecureString password) { try { - ex = null; var promptBehavior = (PromptBehavior)Enum.Parse(typeof(PromptBehavior), showDialog.ToString()); - return DoAcquireToken(config, promptBehavior, userId, password); + return await DoAcquireToken(config, promptBehavior, userId, password); } catch (AdalException adalEx) { @@ -171,28 +159,20 @@ private AuthenticationResult SafeAquireToken( message = Resources.AdalMultipleTokens; } - ex = new AadAuthenticationFailedWithoutPopupException(message, adalEx); + throw new AadAuthenticationFailedWithoutPopupException(message, adalEx); } else if (adalEx.ErrorCode == AdalError.MissingFederationMetadataUrl) { - ex = new AadAuthenticationFailedException(Resources.CredentialOrganizationIdMessage, adalEx); - } - else - { - ex = adalEx; + throw new AadAuthenticationFailedException(Resources.CredentialOrganizationIdMessage, adalEx); } + + throw; } - catch (Exception threadEx) - { - ex = threadEx; - } - return null; } - private AuthenticationResult DoAcquireToken(AdalConfiguration config, PromptBehavior promptBehavior, string userId, + private async Task<AuthenticationResult> DoAcquireToken(AdalConfiguration config, PromptBehavior promptBehavior, string userId, SecureString password) { - AuthenticationResult result; var context = CreateContext(config); TracingAdapter.Information(Resources.UPNAcquireTokenContextTrace, context.Authority, context.CorrelationId, @@ -206,26 +186,52 @@ private AuthenticationResult DoAcquireToken(AdalConfiguration config, PromptBeha ClearCookies(); } - result = context.AcquireToken(config.ResourceClientUri, config.ClientId, - config.ClientRedirectUri, promptBehavior, + return await context.AcquireTokenAsync( + config.ResourceClientUri, + config.ClientId, + config.ClientRedirectUri, + new PlatformParameters(promptBehavior, parentWindow), UserIdentifier.AnyUser, AdalConfiguration.EnableEbdMagicCookie); } else { if (password == null) { - result = context.AcquireToken(config.ResourceClientUri, config.ClientId, - config.ClientRedirectUri, promptBehavior, + return await context.AcquireTokenAsync( + config.ResourceClientUri, + config.ClientId, + config.ClientRedirectUri, + new PlatformParameters(promptBehavior, parentWindow), new UserIdentifier(userId, UserIdentifierType.OptionalDisplayableId), AdalConfiguration.EnableEbdMagicCookie); } else { - UserCredential credential = new UserCredential(userId, password); - result = context.AcquireToken(config.ResourceClientUri, config.ClientId, credential); + UserCredential credential = new UserCredential(userId, ConvertToString(password)); + return await context.AcquireTokenAsync( + config.ResourceClientUri, + config.ClientId, + credential); } } - return result; + } + + + internal static string ConvertToString(SecureString securePassword) + { + if (securePassword == null) + throw new ArgumentNullException("securePassword"); + + IntPtr unmanagedString = IntPtr.Zero; + try + { + unmanagedString = Marshal.SecureStringToGlobalAllocUnicode(securePassword); + return Marshal.PtrToStringUni(unmanagedString); + } + finally + { + Marshal.ZeroFreeGlobalAllocUnicode(unmanagedString); + } } private string GetExceptionMessage(Exception ex) diff --git a/src/Authentication/Common.Authentication/Common.Authentication.csproj b/src/Authentication/Common.Authentication/Common.Authentication.csproj index 9093d491ac0c8..cafe8403be862 100644 --- a/src/Authentication/Common.Authentication/Common.Authentication.csproj +++ b/src/Authentication/Common.Authentication/Common.Authentication.csproj @@ -136,13 +136,13 @@ <SpecificVersion>False</SpecificVersion> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms, Version=2.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="System.Security" /> <Reference Include="System.Windows.Forms" /> diff --git a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj index 8e99dcf10f52d..b29dadc77395b 100644 --- a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj +++ b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj @@ -5,7 +5,7 @@ Microsoft.Azure.Common.Authentication --> <SdkNuGetPackage Include="Microsoft.Azure.Common.Authentication"> - <PackageVersion>1.0.26-preview</PackageVersion> + <PackageVersion>1.1.0-preview</PackageVersion> <Folder>$(MSBuildThisFileDirectory)</Folder> </SdkNuGetPackage> </ItemGroup> diff --git a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuspec b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuspec index 94ede9db0d0ef..6f1ff80bbb59b 100644 --- a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuspec +++ b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuspec @@ -16,7 +16,7 @@ <tags>Microsoft "Microsoft Azure" Azure cloud REST HTTP client core common azureofficial windowsazureofficial</tags> <dependencies> <dependency id="Microsoft.Azure.Common" version="[2.1.0,3.0)" /> - <dependency id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" /> + <dependency id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" /> </dependencies> </metadata> <files> diff --git a/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs b/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs index a62de1d6b95f1..57ffdc7319780 100644 --- a/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs +++ b/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs @@ -26,7 +26,7 @@ [assembly: CLSCompliant(false)] [assembly: Guid("4f3ab2e4-cc7a-43ac-bb15-f481fcf94d58")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.26.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] #if CODESIGN [assembly: InternalsVisibleTo("Common.Authentication.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] diff --git a/src/Authentication/Common.Authentication/packages.config b/src/Authentication/Common.Authentication/packages.config index 2e5a4fabe6451..917c99ba77d6e 100644 --- a/src/Authentication/Common.Authentication/packages.config +++ b/src/Authentication/Common.Authentication/packages.config @@ -6,7 +6,7 @@ <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> - <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Net.Http" version="2.2.22" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file From a5f01ba883e4e60011811b6e2a58021d43b80a17 Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Fri, 24 Jul 2015 15:32:19 -0700 Subject: [PATCH 19/34] Updated clients to the latest specs and code gen --- .../ComputeManagementClient.json | 70 +------- .../Generated/AvailabilitySetsOperations.cs | 7 +- .../AvailabilitySetsOperationsExtensions.cs | 2 +- .../Generated/ComputeManagementClient.cs | 4 +- .../ComputeManagementClientExtensions.cs | 2 +- .../Generated/IAvailabilitySetsOperations.cs | 5 +- .../Generated/IComputeManagementClient.cs | 4 +- .../Generated/IUsageOperations.cs | 5 +- ...VirtualMachineExtensionImagesOperations.cs | 5 +- .../IVirtualMachineExtensionsOperations.cs | 5 +- .../IVirtualMachineImagesOperations.cs | 5 +- .../IVirtualMachineSizesOperations.cs | 5 +- .../Generated/IVirtualMachinesOperations.cs | 5 +- .../Models/AdditionalUnattendContent.cs | 6 +- .../Generated/Models/ApiError.cs | 3 +- .../Generated/Models/ApiErrorBase.cs | 3 +- .../Generated/Models/AvailabilitySet.cs | 3 +- .../Models/AvailabilitySetListResult.cs | 3 +- .../ComputeLongRunningOperationProperties.cs | 3 +- .../ComputeLongRunningOperationResult.cs | 3 +- .../Generated/Models/DataDisk.cs | 3 +- .../Generated/Models/DataDiskImage.cs | 3 +- .../Generated/Models/DeleteOperationResult.cs | 3 +- .../Generated/Models/DiskInstanceView.cs | 3 +- .../Generated/Models/HardwareProfile.cs | 3 +- .../Generated/Models/ImageReference.cs | 3 +- .../Generated/Models/InnerError.cs | 3 +- .../Generated/Models/InstanceViewStatus.cs | 3 +- .../Generated/Models/LinuxConfiguration.cs | 3 +- .../Generated/Models/ListUsagesResult.cs | 3 +- .../Models/NetworkInterfaceReference.cs | 3 +- .../Generated/Models/NetworkProfile.cs | 3 +- .../Generated/Models/OSDisk.cs | 3 +- .../Generated/Models/OSDiskImage.cs | 3 +- .../Generated/Models/OSProfile.cs | 3 +- .../Generated/Models/Plan.cs | 3 +- .../Generated/Models/PurchasePlan.cs | 4 +- .../Generated/Models/SshConfiguration.cs | 3 +- .../Generated/Models/SshPublicKey.cs | 4 +- .../Generated/Models/StorageProfile.cs | 3 +- .../Generated/Models/Usage.cs | 3 +- .../Generated/Models/UsageName.cs | 3 +- .../Generated/Models/VaultCertificate.cs | 4 +- .../Generated/Models/VaultSecretGroup.cs | 3 +- .../Generated/Models/VirtualHardDisk.cs | 3 +- .../Generated/Models/VirtualMachine.cs | 3 +- .../Models/VirtualMachineAgentInstanceView.cs | 3 +- .../Models/VirtualMachineCaptureParameters.cs | 3 +- .../Models/VirtualMachineExtension.cs | 3 +- ...tualMachineExtensionHandlerInstanceView.cs | 3 +- .../Models/VirtualMachineExtensionImage.cs | 3 +- .../VirtualMachineExtensionInstanceView.cs | 3 +- .../Generated/Models/VirtualMachineImage.cs | 3 +- .../Models/VirtualMachineImageResource.cs | 3 +- .../Models/VirtualMachineInstanceView.cs | 3 +- .../Generated/Models/VirtualMachineSize.cs | 3 +- .../Models/VirtualMachineSizeListResult.cs | 3 +- .../Generated/Models/WinRMConfiguration.cs | 3 +- .../Generated/Models/WinRMListener.cs | 3 +- .../Generated/Models/WindowsConfiguration.cs | 3 +- .../Generated/UsageOperations.cs | 7 +- .../Generated/UsageOperationsExtensions.cs | 2 +- ...VirtualMachineExtensionImagesOperations.cs | 7 +- ...hineExtensionImagesOperationsExtensions.cs | 2 +- .../VirtualMachineExtensionsOperations.cs | 9 +- ...alMachineExtensionsOperationsExtensions.cs | 2 +- .../VirtualMachineImagesOperations.cs | 7 +- ...irtualMachineImagesOperationsExtensions.cs | 2 +- .../VirtualMachineSizesOperations.cs | 7 +- ...VirtualMachineSizesOperationsExtensions.cs | 2 +- .../Generated/VirtualMachinesOperations.cs | 9 +- .../VirtualMachinesOperationsExtensions.cs | 2 +- .../ApplicationGatewaysOperations.cs | 5 +- ...ApplicationGatewaysOperationsExtensions.cs | 2 +- .../IApplicationGatewaysOperations.cs | 3 +- .../Generated/ILoadBalancersOperations.cs | 3 +- .../ILocalNetworkGatewaysOperations.cs | 3 +- .../Generated/INetworkInterfacesOperations.cs | 3 +- .../INetworkResourceProviderClient.cs | 2 +- .../INetworkSecurityGroupsOperations.cs | 3 +- .../Generated/IPublicIpAddressesOperations.cs | 3 +- .../Generated/ISecurityRulesOperations.cs | 3 +- .../Generated/ISubnetsOperations.cs | 3 +- .../Generated/IUsagesOperations.cs | 3 +- ...tualNetworkGatewayConnectionsOperations.cs | 3 +- .../IVirtualNetworkGatewaysOperations.cs | 3 +- .../Generated/IVirtualNetworksOperations.cs | 3 +- .../Generated/LoadBalancersOperations.cs | 5 +- .../LoadBalancersOperationsExtensions.cs | 2 +- .../LocalNetworkGatewaysOperations.cs | 5 +- ...ocalNetworkGatewaysOperationsExtensions.cs | 2 +- .../Generated/Models/AddressSpace.cs | 4 +- .../Generated/Models/ApplicationGateway.cs | 3 +- .../ApplicationGatewayBackendAddress.cs | 3 +- .../ApplicationGatewayBackendAddressPool.cs | 3 +- .../ApplicationGatewayBackendHttpSettings.cs | 3 +- ...plicationGatewayFrontendIpConfiguration.cs | 3 +- .../Models/ApplicationGatewayFrontendPort.cs | 3 +- .../Models/ApplicationGatewayHttpListener.cs | 3 +- .../ApplicationGatewayIpConfiguration.cs | 3 +- .../ApplicationGatewayRequestRoutingRule.cs | 3 +- .../Generated/Models/ApplicationGatewaySku.cs | 3 +- .../ApplicationGatewaySslCertificate.cs | 3 +- .../Models/AzureAsyncOperationResult.cs | 10 +- .../Generated/Models/BackendAddressPool.cs | 3 +- .../Models/ConnectionResetSharedKey.cs | 2 +- ...onnectionResetSharedKeyPropertiesFormat.cs | 3 +- .../Generated/Models/ConnectionSharedKey.cs | 3 +- .../Generated/Models/DhcpOptions.cs | 5 +- .../Models/DnsNameAvailabilityResult.cs | 3 +- .../Generated/Models/Error.cs | 2 +- .../Generated/Models/ErrorDetails.cs | 2 +- .../Models/FrontendIpConfiguration.cs | 3 +- .../Generated/Models/InboundNatRule.cs | 3 +- .../Generated/Models/LoadBalancer.cs | 3 +- .../Generated/Models/LoadBalancingRule.cs | 3 +- .../Generated/Models/LocalNetworkGateway.cs | 3 +- .../Generated/Models/NetworkInterface.cs | 3 +- .../Models/NetworkInterfaceDnsSettings.cs | 3 +- .../Models/NetworkInterfaceIpConfiguration.cs | 3 +- .../Generated/Models/NetworkSecurityGroup.cs | 3 +- .../Generated/Models/Probe.cs | 3 +- .../Generated/Models/PublicIpAddress.cs | 3 +- .../Models/PublicIpAddressDnsSettings.cs | 3 +- .../Generated/Models/SecurityRule.cs | 3 +- .../Generated/Models/Subnet.cs | 3 +- .../Generated/Models/Usage.cs | 3 +- .../Generated/Models/UsageName.cs | 3 +- .../Generated/Models/UsagesListResult.cs | 3 +- .../Generated/Models/VirtualNetwork.cs | 3 +- .../Generated/Models/VirtualNetworkGateway.cs | 3 +- .../Models/VirtualNetworkGatewayConnection.cs | 3 +- .../VirtualNetworkGatewayIpConfiguration.cs | 3 +- .../Generated/NetworkInterfacesOperations.cs | 5 +- .../NetworkInterfacesOperationsExtensions.cs | 2 +- .../NetworkResourceProviderClient.cs | 2 +- ...NetworkResourceProviderClientExtensions.cs | 2 +- .../NetworkSecurityGroupsOperations.cs | 5 +- ...tworkSecurityGroupsOperationsExtensions.cs | 2 +- .../Generated/PublicIpAddressesOperations.cs | 5 +- .../PublicIpAddressesOperationsExtensions.cs | 2 +- .../Generated/SecurityRulesOperations.cs | 5 +- .../SecurityRulesOperationsExtensions.cs | 2 +- .../Generated/SubnetsOperations.cs | 5 +- .../Generated/SubnetsOperationsExtensions.cs | 2 +- .../Generated/UsagesOperations.cs | 5 +- .../Generated/UsagesOperationsExtensions.cs | 2 +- ...tualNetworkGatewayConnectionsOperations.cs | 5 +- ...kGatewayConnectionsOperationsExtensions.cs | 2 +- .../VirtualNetworkGatewaysOperations.cs | 5 +- ...tualNetworkGatewaysOperationsExtensions.cs | 2 +- .../Generated/VirtualNetworksOperations.cs | 5 +- .../VirtualNetworksOperationsExtensions.cs | 2 +- .../NetworkResourceProviderClient.json | 116 ------------ .../AuthorizationClient.json | 21 --- .../ResourceManagement/FeatureClient.json | 8 - .../Generated/AuthorizationClient.cs | 4 +- .../AuthorizationClientExtensions.cs | 2 +- .../DeploymentOperationsOperations.cs | 7 +- ...eploymentOperationsOperationsExtensions.cs | 2 +- .../Generated/DeploymentsOperations.cs | 7 +- .../DeploymentsOperationsExtensions.cs | 2 +- .../Generated/FeatureClient.cs | 2 +- .../Generated/FeatureClientExtensions.cs | 2 +- .../Generated/FeaturesOperations.cs | 5 +- .../Generated/FeaturesOperationsExtensions.cs | 2 +- .../Generated/IAuthorizationClient.cs | 4 +- .../IDeploymentOperationsOperations.cs | 5 +- .../Generated/IDeploymentsOperations.cs | 5 +- .../Generated/IFeatureClient.cs | 2 +- .../Generated/IFeaturesOperations.cs | 3 +- .../Generated/IManagementLocksOperations.cs | 5 +- .../Generated/IProvidersOperations.cs | 5 +- .../Generated/IResourceGroupsOperations.cs | 5 +- .../Generated/IResourceManagementClient.cs | 4 +- ...ourceProviderOperationDetailsOperations.cs | 5 +- .../Generated/IResourcesOperations.cs | 5 +- .../Generated/ISubscriptionClient.cs | 2 +- .../Generated/ISubscriptionsOperations.cs | 3 +- .../Generated/ITagsOperations.cs | 5 +- .../Generated/ITenantsOperations.cs | 3 +- .../Generated/ManagementLocksOperations.cs | 7 +- .../ManagementLocksOperationsExtensions.cs | 2 +- .../Generated/Models/BasicDependency.cs | 3 +- .../Generated/Models/Dependency.cs | 3 +- .../Generated/Models/Deployment.cs | 3 +- .../Generated/Models/DeploymentExtended.cs | 3 +- .../Models/DeploymentExtendedFilter.cs | 3 +- .../Generated/Models/DeploymentOperation.cs | 3 +- .../Models/DeploymentOperationProperties.cs | 3 +- .../Generated/Models/DeploymentProperties.cs | 3 +- .../Models/DeploymentPropertiesExtended.cs | 3 +- .../Models/DeploymentValidateResult.cs | 3 +- .../Generated/Models/FeatureProperties.cs | 3 +- .../Generated/Models/FeatureResult.cs | 3 +- .../Generated/Models/GenericResource.cs | 3 +- .../Generated/Models/GenericResourceFilter.cs | 3 +- .../Generated/Models/ManagementLockObject.cs | 3 +- .../Models/ManagementLockProperties.cs | 3 +- .../Generated/Models/ParametersLink.cs | 3 +- .../Generated/Models/Plan.cs | 3 +- .../Generated/Models/Provider.cs | 3 +- .../Generated/Models/ProviderResourceType.cs | 3 +- .../Generated/Models/ResourceGroup.cs | 3 +- .../Generated/Models/ResourceGroupExtended.cs | 3 +- .../Models/ResourceGroupExtendedFilter.cs | 3 +- .../ResourceGroupFormatResourceProperties.cs | 3 +- .../Models/ResourceManagementError.cs | 2 +- .../ResourceManagementErrorWithDetails.cs | 2 +- .../ResourceProviderOperationDefinition.cs | 3 +- ...sourceProviderOperationDetailListResult.cs | 3 +- ...ourceProviderOperationDisplayProperties.cs | 3 +- .../Generated/Models/ResourcesMoveInfo.cs | 3 +- .../Generated/Models/Subscription.cs | 3 +- .../Generated/Models/TagCount.cs | 3 +- .../Generated/Models/TagDetails.cs | 3 +- .../Generated/Models/TagValue.cs | 3 +- .../Generated/Models/TargetResource.cs | 3 +- .../Generated/Models/TemplateLink.cs | 3 +- .../Generated/Models/TenantIdDescription.cs | 3 +- .../Generated/ProvidersOperations.cs | 7 +- .../ProvidersOperationsExtensions.cs | 2 +- .../Generated/ResourceGroupsOperations.cs | 7 +- .../ResourceGroupsOperationsExtensions.cs | 2 +- .../Generated/ResourceManagementClient.cs | 4 +- .../ResourceManagementClientExtensions.cs | 2 +- ...ourceProviderOperationDetailsOperations.cs | 7 +- ...derOperationDetailsOperationsExtensions.cs | 2 +- .../Generated/ResourcesOperations.cs | 7 +- .../ResourcesOperationsExtensions.cs | 2 +- .../Generated/SubscriptionClient.cs | 2 +- .../Generated/SubscriptionClientExtensions.cs | 2 +- .../Generated/SubscriptionsOperations.cs | 5 +- .../SubscriptionsOperationsExtensions.cs | 2 +- .../Generated/TagsOperations.cs | 7 +- .../Generated/TagsOperationsExtensions.cs | 2 +- .../Generated/TenantsOperations.cs | 5 +- .../Generated/TenantsOperationsExtensions.cs | 2 +- .../ResourceManagementClient.json | 55 ------ .../SubscriptionClient.json | 5 - .../Generated/IStorageAccountsOperations.cs | 3 +- .../Generated/IStorageManagementClient.cs | 4 +- .../Generated/IUsageOperations.cs | 30 ++++ .../Models/CheckNameAvailabilityResult.cs | 3 +- .../Generated/Models/CustomDomain.cs | 4 +- .../Generated/Models/Endpoints.cs | 4 +- .../Generated/Models/StorageAccount.cs | 3 +- ...eAccountCheckNameAvailabilityParameters.cs | 2 +- .../Models/StorageAccountCreateParameters.cs | 3 +- .../Generated/Models/StorageAccountKeys.cs | 3 +- .../StorageAccountRegenerateKeyParameters.cs | 2 +- .../Models/StorageAccountUpdateParameters.cs | 3 +- .../Generated/Models/Usage.cs | 44 +++++ .../Generated/Models/UsageListResult.cs | 22 +++ .../Generated/Models/UsageName.cs | 28 +++ .../Generated/Models/UsageUnit.cs | 26 +++ .../Generated/StorageAccountsOperations.cs | 5 +- .../StorageAccountsOperationsExtensions.cs | 2 +- .../Generated/StorageManagementClient.cs | 5 +- .../StorageManagementClientExtensions.cs | 2 +- .../Generated/UsageOperations.cs | 166 ++++++++++++++++++ .../Generated/UsageOperationsExtensions.cs | 43 +++++ .../StorageManagementClient.json | 100 +++++++++-- 263 files changed, 1008 insertions(+), 575 deletions(-) create mode 100644 src/ResourceManagement/Storage/StorageManagement/Generated/IUsageOperations.cs create mode 100644 src/ResourceManagement/Storage/StorageManagement/Generated/Models/Usage.cs create mode 100644 src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageListResult.cs create mode 100644 src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageName.cs create mode 100644 src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageUnit.cs create mode 100644 src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs create mode 100644 src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperationsExtensions.cs diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json index b3bcabde903a6..4e30f06ade9fe 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagementClient.json @@ -40,11 +40,9 @@ "description": "The name of the availability set." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -79,11 +77,9 @@ "description": "The name of the availability set." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -113,11 +109,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -154,11 +148,9 @@ "description": "The name of the availability set." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -204,11 +196,9 @@ "description": "Parameters supplied to the Create Availability Set operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -261,11 +251,9 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -300,11 +288,9 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -336,11 +322,9 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -384,11 +368,9 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -458,11 +440,9 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -513,11 +493,9 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -578,11 +556,9 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -621,11 +597,9 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -681,11 +655,9 @@ "description": "Parameters supplied to the Create Virtual Machine Extension operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -734,19 +706,17 @@ "description": "The name of the virtual machine extension." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], "responses": { - "204": { + "200": { "description": "" }, - "200": { + "204": { "description": "" }, "202": { @@ -791,11 +761,9 @@ "description": "Name of the property to expand. Allowed value is null or 'instanceView'." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -825,11 +793,9 @@ "description": "The location upon which resource usage is queried." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -859,11 +825,9 @@ "description": "The location upon which virtual-machine-sizes is queried." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -909,23 +873,21 @@ "description": "Parameters supplied to the Capture Virtual Machine operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], "responses": { - "202": { - "description": "" - }, "200": { "description": "", "schema": { "$ref": "#/definitions/ComputeLongRunningOperationResult" } + }, + "202": { + "description": "" } }, "x-ms-long-running-operation": true @@ -963,11 +925,9 @@ "description": "Parameters supplied to the Create Virtual Machine operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1009,11 +969,9 @@ "description": "The name of the virtual machine." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1059,11 +1017,9 @@ "description": "Name of the property to expand. Allowed value is null or 'instanceView'." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1100,11 +1056,9 @@ "description": "The name of the virtual machine." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1139,11 +1093,9 @@ "description": "The name of the virtual machine." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1170,11 +1122,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1198,11 +1148,9 @@ "description": "Gets the list of Virtual Machines in the subscription. Use nextLink property in the response to get the next page of Virtual Machines. Do this till nextLink is not null to fetch all the Virtual Machines.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1240,11 +1188,9 @@ "description": "The name of the virtual machine." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1281,11 +1227,9 @@ "description": "The name of the virtual machine." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1320,11 +1264,9 @@ "description": "The name of the virtual machine." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1359,11 +1301,9 @@ "description": "The name of the virtual machine." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs index 8ae5710ed37eb..0b5ec152481d2 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Compute using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// AvailabilitySetsOperations operations. + /// </summary> internal partial class AvailabilitySetsOperations : IServiceOperations<ComputeManagementClient>, IAvailabilitySetsOperations { /// <summary> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperationsExtensions.cs index e75b7239604da..815381f2b2cb1 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/AvailabilitySetsOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class AvailabilitySetsOperationsExtensions diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs index 5ff8570b94694..2f08c4a418a75 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClient.cs @@ -15,8 +15,8 @@ namespace Microsoft.Azure.Management.Compute using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClientExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClientExtensions.cs index 1ee011f16a11d..b1ec19e77a27d 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClientExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/ComputeManagementClientExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class ComputeManagementClientExtensions diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IAvailabilitySetsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IAvailabilitySetsOperations.cs index ded1117c2d08d..32b097ebcc4f4 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IAvailabilitySetsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IAvailabilitySetsOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// AvailabilitySetsOperations operations. /// </summary> public partial interface IAvailabilitySetsOperations { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs index c2cd3b6010cd3..758dd750f3f42 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IComputeManagementClient.cs @@ -9,8 +9,8 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IUsageOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IUsageOperations.cs index 54b7e6ab02ac0..b81b54b3b95f1 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IUsageOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IUsageOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// UsageOperations operations. /// </summary> public partial interface IUsageOperations { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionImagesOperations.cs index 206eca9803ea6..413f4de23c965 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionImagesOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// VirtualMachineExtensionImagesOperations operations. /// </summary> public partial interface IVirtualMachineExtensionImagesOperations { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionsOperations.cs index f387633f1c0a8..0f736d4db2048 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineExtensionsOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// VirtualMachineExtensionsOperations operations. /// </summary> public partial interface IVirtualMachineExtensionsOperations { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineImagesOperations.cs index ac55fcb9e49fb..f628de34e4d61 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineImagesOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// VirtualMachineImagesOperations operations. /// </summary> public partial interface IVirtualMachineImagesOperations { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineSizesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineSizesOperations.cs index 54608e814d7e5..192c0ec85c388 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineSizesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachineSizesOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// VirtualMachineSizesOperations operations. /// </summary> public partial interface IVirtualMachineSizesOperations { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachinesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachinesOperations.cs index f92d9af095faa..c2a1edf3fe978 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachinesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/IVirtualMachinesOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Compute using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// VirtualMachinesOperations operations. /// </summary> public partial interface IVirtualMachinesOperations { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AdditionalUnattendContent.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AdditionalUnattendContent.cs index 9b6c79822e42c..4e0c20329f556 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AdditionalUnattendContent.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AdditionalUnattendContent.cs @@ -5,9 +5,13 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Gets or sets additional XML formatted information that can be included + /// in the Unattend.xml file, which is used by Windows Setup. Contents + /// are defined by setting name, component name, and the pass in which + /// the content is a applied. /// </summary> public partial class AdditionalUnattendContent { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ApiError.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ApiError.cs index fa35cec956ead..e5035f32618db 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ApiError.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ApiError.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Api error. /// </summary> public partial class ApiError { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ApiErrorBase.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ApiErrorBase.cs index 53260163e5d3e..d529f1480210b 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ApiErrorBase.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ApiErrorBase.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Api error base. /// </summary> public partial class ApiErrorBase { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AvailabilitySet.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AvailabilitySet.cs index faa08339213bc..85a1e6d687106 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AvailabilitySet.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AvailabilitySet.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Create or update Availability Set parameters. /// </summary> public partial class AvailabilitySet : Resource { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AvailabilitySetListResult.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AvailabilitySetListResult.cs index e82098f067083..6bac4d4674291 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AvailabilitySetListResult.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/AvailabilitySetListResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The List Availability Set operation response. /// </summary> public partial class AvailabilitySetListResult { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeLongRunningOperationProperties.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeLongRunningOperationProperties.cs index 28db29b3ecb4d..4e26fd3f67dff 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeLongRunningOperationProperties.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeLongRunningOperationProperties.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Compute-specific operation properties, including output /// </summary> public partial class ComputeLongRunningOperationProperties { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeLongRunningOperationResult.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeLongRunningOperationResult.cs index 0f4b71e245f89..f67fbc95c34d1 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeLongRunningOperationResult.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ComputeLongRunningOperationResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The Compute service response for long-running operations. /// </summary> public partial class ComputeLongRunningOperationResult { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DataDisk.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DataDisk.cs index 71647a5919f7a..3a5a28cd5bce3 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DataDisk.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DataDisk.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a data disk. /// </summary> public partial class DataDisk { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DataDiskImage.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DataDiskImage.cs index 5d2fa0bcf3667..ce4d4bf476e3f 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DataDiskImage.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DataDiskImage.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Contains the data disk images information. /// </summary> public partial class DataDiskImage { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DeleteOperationResult.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DeleteOperationResult.cs index 13f933d8c3f8a..f477d7e2a94aa 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DeleteOperationResult.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DeleteOperationResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The compute long running operation response. /// </summary> public partial class DeleteOperationResult { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DiskInstanceView.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DiskInstanceView.cs index a45fd4c2a9142..175c4f3d3374e 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DiskInstanceView.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/DiskInstanceView.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The instance view of the disk. /// </summary> public partial class DiskInstanceView { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/HardwareProfile.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/HardwareProfile.cs index 17b0607b7a364..23e1b5f54b48a 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/HardwareProfile.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/HardwareProfile.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a hardware profile. /// </summary> public partial class HardwareProfile { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ImageReference.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ImageReference.cs index 2307cc61fad46..a4c9b1a19b2cf 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ImageReference.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ImageReference.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The image reference. /// </summary> public partial class ImageReference { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/InnerError.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/InnerError.cs index b1bb0199d60b5..55bd195107fd7 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/InnerError.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/InnerError.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Inner error details. /// </summary> public partial class InnerError { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/InstanceViewStatus.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/InstanceViewStatus.cs index a59be4a189253..e7b46e8b4119e 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/InstanceViewStatus.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/InstanceViewStatus.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Instance view status. /// </summary> public partial class InstanceViewStatus { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/LinuxConfiguration.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/LinuxConfiguration.cs index 77ffd18e9a16b..25dee98ae569f 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/LinuxConfiguration.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/LinuxConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes Windows Configuration of the OS Profile. /// </summary> public partial class LinuxConfiguration { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ListUsagesResult.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ListUsagesResult.cs index e88b2a4793010..42ba6cef6511c 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ListUsagesResult.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/ListUsagesResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The List Usages operation response. /// </summary> public partial class ListUsagesResult { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/NetworkInterfaceReference.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/NetworkInterfaceReference.cs index 55f8d7256313a..d72bdbf19c0f5 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/NetworkInterfaceReference.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/NetworkInterfaceReference.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a network interface reference. /// </summary> public partial class NetworkInterfaceReference : SubResource { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/NetworkProfile.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/NetworkProfile.cs index 3844fec095501..4ed03dc8f45d0 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/NetworkProfile.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/NetworkProfile.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a network profile. /// </summary> public partial class NetworkProfile { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSDisk.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSDisk.cs index 507b315fe1389..9e5f5c5202457 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSDisk.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSDisk.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes an Operating System disk. /// </summary> public partial class OSDisk { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSDiskImage.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSDiskImage.cs index ed0019d099fee..b7f8254abaed9 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSDiskImage.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSDiskImage.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Contains the os disk image information. /// </summary> public partial class OSDiskImage { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSProfile.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSProfile.cs index 7b01b4c2925e0..8797564d69b9d 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSProfile.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/OSProfile.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes an OS profile. /// </summary> public partial class OSProfile { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/Plan.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/Plan.cs index 599be7b3d6cdf..8bfb90287e06b 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/Plan.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/Plan.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Plan for the resource. /// </summary> public partial class Plan { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/PurchasePlan.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/PurchasePlan.cs index 0693e34d61d51..501c1b029358d 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/PurchasePlan.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/PurchasePlan.cs @@ -5,9 +5,11 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Used for establishing the purchase context of any 3rd Party artifact + /// through MarketPlace. /// </summary> public partial class PurchasePlan { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SshConfiguration.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SshConfiguration.cs index df0d61ae0679c..2c250ec73def3 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SshConfiguration.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SshConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// SSH configuration for Linux based VMs running on Azure /// </summary> public partial class SshConfiguration { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SshPublicKey.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SshPublicKey.cs index 61f1c8deb3d91..8b33571264ae7 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SshPublicKey.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/SshPublicKey.cs @@ -5,9 +5,11 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Contains information about SSH certificate public key and the path on + /// the Linux VM where the public key is placed. /// </summary> public partial class SshPublicKey { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/StorageProfile.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/StorageProfile.cs index 766713ddd7391..7b94b286520d2 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/StorageProfile.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/StorageProfile.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a storage profile. /// </summary> public partial class StorageProfile { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/Usage.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/Usage.cs index fc035f5b08020..5db9e623d1503 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/Usage.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/Usage.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes Compute Resource Usage. /// </summary> public partial class Usage { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/UsageName.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/UsageName.cs index c15b82f16ef5b..611673a3c8693 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/UsageName.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/UsageName.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The Usage Names. /// </summary> public partial class UsageName { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VaultCertificate.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VaultCertificate.cs index df290fa80bf11..7995f46773927 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VaultCertificate.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VaultCertificate.cs @@ -5,9 +5,11 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a single certificate reference in a Key Vault, and where the + /// certificate should reside on the VM. /// </summary> public partial class VaultCertificate { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VaultSecretGroup.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VaultSecretGroup.cs index 3031b362bacb8..f5de12e4d0d1a 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VaultSecretGroup.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VaultSecretGroup.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a set of certificates which are all in the same Key Vault. /// </summary> public partial class VaultSecretGroup { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualHardDisk.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualHardDisk.cs index ff0efad5858e2..abe151fa41fe1 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualHardDisk.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualHardDisk.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes the uri of a disk. /// </summary> public partial class VirtualHardDisk { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachine.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachine.cs index c66aaf1703085..246ea5586e0d1 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachine.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachine.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a Virtual Machine. /// </summary> public partial class VirtualMachine : Resource { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineAgentInstanceView.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineAgentInstanceView.cs index ea5059727df97..9145c21ef851d 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineAgentInstanceView.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineAgentInstanceView.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The instance view of the VM Agent running on the virtual machine. /// </summary> public partial class VirtualMachineAgentInstanceView { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineCaptureParameters.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineCaptureParameters.cs index 8473c4f76e51e..578f6e1eeb529 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineCaptureParameters.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineCaptureParameters.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Capture Virtual Machine parameters. /// </summary> public partial class VirtualMachineCaptureParameters { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtension.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtension.cs index 8955d056be0f0..2fbded5e59e64 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtension.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtension.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a Virtual Machine Extension. /// </summary> public partial class VirtualMachineExtension : Resource { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionHandlerInstanceView.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionHandlerInstanceView.cs index d7060fc981e05..9afc6fb5edc7b 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionHandlerInstanceView.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionHandlerInstanceView.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The instance view of a virtual machine extension handler. /// </summary> public partial class VirtualMachineExtensionHandlerInstanceView { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionImage.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionImage.cs index 46e3278206c4e..41d66bf82d2c7 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionImage.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionImage.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a Virtual Machine Extension Image. /// </summary> public partial class VirtualMachineExtensionImage : SubResource { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionInstanceView.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionInstanceView.cs index 1244a0dc5f499..cd95cd7d253b6 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionInstanceView.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineExtensionInstanceView.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The instance view of a virtual machine extension. /// </summary> public partial class VirtualMachineExtensionInstanceView { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineImage.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineImage.cs index 6041af34165f3..afbf3a4d49e7a 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineImage.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineImage.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes a Virtual Machine Image. /// </summary> public partial class VirtualMachineImage : SubResource { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineImageResource.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineImageResource.cs index 800f259824506..2917b178ef4ff 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineImageResource.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineImageResource.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Virtual machine image resource information. /// </summary> public partial class VirtualMachineImageResource : SubResource { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineInstanceView.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineInstanceView.cs index e5f64ef3e1f50..58c4696f71582 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineInstanceView.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineInstanceView.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The instance view of a virtual machine. /// </summary> public partial class VirtualMachineInstanceView { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSize.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSize.cs index 039ce4709a650..e33a26198f1a6 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSize.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSize.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes the properties of a VM size. /// </summary> public partial class VirtualMachineSize { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSizeListResult.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSizeListResult.cs index f67f749bf2e23..ded67e720955c 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSizeListResult.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/VirtualMachineSizeListResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The List Virtual Machine operation response. /// </summary> public partial class VirtualMachineSizeListResult { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WinRMConfiguration.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WinRMConfiguration.cs index c475f95803e3e..004c24fe248af 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WinRMConfiguration.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WinRMConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes Windows Remote Management configuration of the VM /// </summary> public partial class WinRMConfiguration { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WinRMListener.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WinRMListener.cs index b715dc021512c..1549e9525a7b7 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WinRMListener.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WinRMListener.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes Protocol and thumbprint of Windows Remote Management listener /// </summary> public partial class WinRMListener { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WindowsConfiguration.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WindowsConfiguration.cs index 4611f98d3dacf..1a80b3556f3aa 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WindowsConfiguration.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/Models/WindowsConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes Windows Configuration of the OS Profile. /// </summary> public partial class WindowsConfiguration { diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs index be438ab0947fe..735979ec34775 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Compute using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// UsageOperations operations. + /// </summary> internal partial class UsageOperations : IServiceOperations<ComputeManagementClient>, IUsageOperations { /// <summary> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperationsExtensions.cs index 8163812020a0e..d6258711e9cea 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/UsageOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class UsageOperationsExtensions diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs index 7d4e78cc04cca..b032011edbe7d 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Compute using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// VirtualMachineExtensionImagesOperations operations. + /// </summary> internal partial class VirtualMachineExtensionImagesOperations : IServiceOperations<ComputeManagementClient>, IVirtualMachineExtensionImagesOperations { /// <summary> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs index 050b5a765485f..5619e5b4a163f 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionImagesOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class VirtualMachineExtensionImagesOperationsExtensions diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs index 2942ceec4d922..df0fd37cdf530 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Compute using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// VirtualMachineExtensionsOperations operations. + /// </summary> internal partial class VirtualMachineExtensionsOperations : IServiceOperations<ComputeManagementClient>, IVirtualMachineExtensionsOperations { /// <summary> @@ -381,7 +384,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; diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperationsExtensions.cs index 6b83444159e4c..d8a6f229fae38 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineExtensionsOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class VirtualMachineExtensionsOperationsExtensions diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs index 29fa218473606..9d4356d62fe68 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Compute using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// VirtualMachineImagesOperations operations. + /// </summary> internal partial class VirtualMachineImagesOperations : IServiceOperations<ComputeManagementClient>, IVirtualMachineImagesOperations { /// <summary> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperationsExtensions.cs index b78fb8bf231c7..49b85f8fceca4 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineImagesOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class VirtualMachineImagesOperationsExtensions diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs index e4c2b58d55d5e..83159450d6083 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Compute using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// VirtualMachineSizesOperations operations. + /// </summary> internal partial class VirtualMachineSizesOperations : IServiceOperations<ComputeManagementClient>, IVirtualMachineSizesOperations { /// <summary> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperationsExtensions.cs index 5555959be4c2e..97fadd859386e 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachineSizesOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class VirtualMachineSizesOperationsExtensions diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs index b49cbb5f14012..4cd122f2c1eaa 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Compute using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// VirtualMachinesOperations operations. + /// </summary> internal partial class VirtualMachinesOperations : IServiceOperations<ComputeManagementClient>, IVirtualMachinesOperations { /// <summary> @@ -179,7 +182,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); diff --git a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperationsExtensions.cs b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperationsExtensions.cs index ae80e89cf87e0..a6494f480955f 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperationsExtensions.cs +++ b/src/ResourceManagement/Compute/ComputeManagement/Generated/VirtualMachinesOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class VirtualMachinesOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs index 629ba1e68a19d..3053c6d1af2a1 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// ApplicationGatewaysOperations operations. + /// </summary> internal partial class ApplicationGatewaysOperations : IServiceOperations<NetworkResourceProviderClient>, IApplicationGatewaysOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperationsExtensions.cs index 2066bba803e52..e09e92132276c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ApplicationGatewaysOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class ApplicationGatewaysOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IApplicationGatewaysOperations.cs index 8c873ae158c9f..c5596278f5653 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IApplicationGatewaysOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// ApplicationGatewaysOperations operations. /// </summary> public partial interface IApplicationGatewaysOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ILoadBalancersOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ILoadBalancersOperations.cs index 5e5e0a08cb5d1..ddec5f5cd29fa 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ILoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ILoadBalancersOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// LoadBalancersOperations operations. /// </summary> public partial interface ILoadBalancersOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ILocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ILocalNetworkGatewaysOperations.cs index a192998a85687..a0fc6c4c688f5 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ILocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ILocalNetworkGatewaysOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// LocalNetworkGatewaysOperations operations. /// </summary> public partial interface ILocalNetworkGatewaysOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkInterfacesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkInterfacesOperations.cs index 4236074dbeab4..82006d8ce9763 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkInterfacesOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// NetworkInterfacesOperations operations. /// </summary> public partial interface INetworkInterfacesOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs index b85015d1051a1..8b99374eadf3c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkResourceProviderClient.cs @@ -8,7 +8,7 @@ namespace Microsoft.Azure.Management.Network using Newtonsoft.Json; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkSecurityGroupsOperations.cs index 8a141a15a79ae..0cdd30c0a0e04 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/INetworkSecurityGroupsOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// NetworkSecurityGroupsOperations operations. /// </summary> public partial interface INetworkSecurityGroupsOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IPublicIpAddressesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IPublicIpAddressesOperations.cs index bd73fb1434fe2..667c5f6719e75 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IPublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IPublicIpAddressesOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// PublicIpAddressesOperations operations. /// </summary> public partial interface IPublicIpAddressesOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ISecurityRulesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ISecurityRulesOperations.cs index 3362d775970a5..37bfdc89ee858 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ISecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ISecurityRulesOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// SecurityRulesOperations operations. /// </summary> public partial interface ISecurityRulesOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/ISubnetsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/ISubnetsOperations.cs index a65c02dbcb1b6..46214f47f2cd6 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/ISubnetsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/ISubnetsOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// SubnetsOperations operations. /// </summary> public partial interface ISubnetsOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IUsagesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IUsagesOperations.cs index 24876d7aff51b..6108ca61f7daf 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IUsagesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IUsagesOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// UsagesOperations operations. /// </summary> public partial interface IUsagesOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewayConnectionsOperations.cs index ad67acd8f8a59..81078430bac1d 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewayConnectionsOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// VirtualNetworkGatewayConnectionsOperations operations. /// </summary> public partial interface IVirtualNetworkGatewayConnectionsOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewaysOperations.cs index f80375018425c..5809e26a9526e 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworkGatewaysOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// VirtualNetworkGatewaysOperations operations. /// </summary> public partial interface IVirtualNetworkGatewaysOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworksOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworksOperations.cs index 7d8903165f20f..4ad62fc620ae5 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/IVirtualNetworksOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Network using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// VirtualNetworksOperations operations. /// </summary> public partial interface IVirtualNetworksOperations { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs index 8d0b110d4da32..365c7278a66cc 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// LoadBalancersOperations operations. + /// </summary> internal partial class LoadBalancersOperations : IServiceOperations<NetworkResourceProviderClient>, ILoadBalancersOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperationsExtensions.cs index 1150d324519f5..fc5fa9c4be12b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LoadBalancersOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class LoadBalancersOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs index 01b17b7e1adf7..f994ae804938b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// LocalNetworkGatewaysOperations operations. + /// </summary> internal partial class LocalNetworkGatewaysOperations : IServiceOperations<NetworkResourceProviderClient>, ILocalNetworkGatewaysOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperationsExtensions.cs index d698a0acd2ec2..f8e5a85763cb0 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/LocalNetworkGatewaysOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class LocalNetworkGatewaysOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/AddressSpace.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/AddressSpace.cs index 0e6ec5fa3429b..614232fa0359e 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/AddressSpace.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/AddressSpace.cs @@ -5,9 +5,11 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// AddressSpace contains an array of IP address ranges that can be used + /// by subnets /// </summary> public partial class AddressSpace { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGateway.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGateway.cs index 5359891795ae8..17912ffe9df13 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGateway.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGateway.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// ApplicationGateways resource /// </summary> public partial class ApplicationGateway : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendAddress.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendAddress.cs index 0538190cd610e..2faf2cf3945fa 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendAddress.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendAddress.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Backend Address of application gateway /// </summary> public partial class ApplicationGatewayBackendAddress { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendAddressPool.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendAddressPool.cs index 185667e103fb0..8409aaafa7576 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendAddressPool.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendAddressPool.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Backend Address Pool of application gateway /// </summary> public partial class ApplicationGatewayBackendAddressPool : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendHttpSettings.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendHttpSettings.cs index 5bd9a29f1cf49..c0169572522a4 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendHttpSettings.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayBackendHttpSettings.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Backend address pool settings of application gateway /// </summary> public partial class ApplicationGatewayBackendHttpSettings : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs index 04cb4f7abee71..cbae82f97d2ca 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Frontend IP configuration of application gateway /// </summary> public partial class ApplicationGatewayFrontendIpConfiguration : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayFrontendPort.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayFrontendPort.cs index b1291fdd7c24e..61df6ddd4452e 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayFrontendPort.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayFrontendPort.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Frontend Port of application gateway /// </summary> public partial class ApplicationGatewayFrontendPort : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayHttpListener.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayHttpListener.cs index 4983e3f5bbd75..24e1ee28f946b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayHttpListener.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayHttpListener.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Http listener of application gateway /// </summary> public partial class ApplicationGatewayHttpListener : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayIpConfiguration.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayIpConfiguration.cs index 2489921dc2318..fc910292f12bf 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayIpConfiguration.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayIpConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// IP configuration of application gateway /// </summary> public partial class ApplicationGatewayIpConfiguration : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayRequestRoutingRule.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayRequestRoutingRule.cs index 2ef5520eae456..ddcab23718f2d 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayRequestRoutingRule.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewayRequestRoutingRule.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Request routing rule of application gateway /// </summary> public partial class ApplicationGatewayRequestRoutingRule : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySku.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySku.cs index 4f1baac1ca8f7..d4f7271f777f4 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySku.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySku.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// SKU of application gateway /// </summary> public partial class ApplicationGatewaySku { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySslCertificate.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySslCertificate.cs index 5b4fa8e04bcfe..5ba90b47b841b 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySslCertificate.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ApplicationGatewaySslCertificate.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// SSL certificates of application gateway /// </summary> public partial class ApplicationGatewaySslCertificate : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/AzureAsyncOperationResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/AzureAsyncOperationResult.cs index b7769f4f34d20..c7a1a28c6c36c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/AzureAsyncOperationResult.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/AzureAsyncOperationResult.cs @@ -5,9 +5,17 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The response body contains the status of the specified asynchronous + /// operation, indicating whether it has succeeded, is inprogress, or has + /// failed. Note that this status is distinct from the HTTP status code + /// returned for the Get Operation Status operation itself. If the + /// asynchronous operation succeeded, the response body includes the HTTP + /// status code for the successful request. If the asynchronous operation + /// failed, the response body includes the HTTP status code for the + /// failed request and error information regarding the failure. /// </summary> public partial class AzureAsyncOperationResult { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/BackendAddressPool.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/BackendAddressPool.cs index d6823670bc33f..5bd670e8559bb 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/BackendAddressPool.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/BackendAddressPool.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Pool of backend IP addresseses /// </summary> public partial class BackendAddressPool : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionResetSharedKey.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionResetSharedKey.cs index d3842193cf96f..dbc63944498cc 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionResetSharedKey.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionResetSharedKey.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> /// </summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionResetSharedKeyPropertiesFormat.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionResetSharedKeyPropertiesFormat.cs index 34b1d1c567ffd..0b26a429567e8 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionResetSharedKeyPropertiesFormat.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionResetSharedKeyPropertiesFormat.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// VirtualNeworkGatewayConnectionResetSharedKey properties /// </summary> public partial class ConnectionResetSharedKeyPropertiesFormat { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionSharedKey.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionSharedKey.cs index 66d510d94e889..dabb48cade329 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionSharedKey.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ConnectionSharedKey.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Response for GetConnectionSharedKey Api servive call /// </summary> public partial class ConnectionSharedKey { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/DhcpOptions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/DhcpOptions.cs index 15c9dd7bc29a7..52f78c1767a16 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/DhcpOptions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/DhcpOptions.cs @@ -5,9 +5,12 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// DHCPOptions contains an array of DNS servers available to VMs deployed + /// in the virtual networkStandard DHCP option for a subnet overrides + /// VNET DHCP options. /// </summary> public partial class DhcpOptions { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/DnsNameAvailabilityResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/DnsNameAvailabilityResult.cs index 4b22d1e3e7349..a61a01539fb35 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/DnsNameAvailabilityResult.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/DnsNameAvailabilityResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Response for CheckDnsNameAvailability Api servive call /// </summary> public partial class DnsNameAvailabilityResult { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Error.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Error.cs index 7fb4a860eae67..be2d8f1b7cafd 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Error.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Error.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> /// </summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ErrorDetails.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ErrorDetails.cs index 296e36a6d6249..a4b5e74e9dc6a 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ErrorDetails.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/ErrorDetails.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> /// </summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/FrontendIpConfiguration.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/FrontendIpConfiguration.cs index 9d5d5f183fc81..7ef82e8faf5dc 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/FrontendIpConfiguration.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/FrontendIpConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Frontend IP address of the load balancer /// </summary> public partial class FrontendIpConfiguration : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/InboundNatRule.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/InboundNatRule.cs index 31a529a4fd6d9..9eae00cf6104c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/InboundNatRule.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/InboundNatRule.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Inbound NAT rule of the loadbalancer /// </summary> public partial class InboundNatRule : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancer.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancer.cs index 95deff054deb2..cfedef05432ce 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancer.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancer.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// LoadBalancer resource /// </summary> public partial class LoadBalancer : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancingRule.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancingRule.cs index bfe01afc034a5..ebbf74c1f4027 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancingRule.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LoadBalancingRule.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Rules of the load balancer /// </summary> public partial class LoadBalancingRule : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LocalNetworkGateway.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LocalNetworkGateway.cs index 9cf54e7603fb4..2bcd96bc8bb35 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LocalNetworkGateway.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/LocalNetworkGateway.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// A common class for general resource information /// </summary> public partial class LocalNetworkGateway : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterface.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterface.cs index 591b731f20a00..ae7b673a2aef8 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterface.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterface.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// A NetworkInterface in a resource group /// </summary> public partial class NetworkInterface : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceDnsSettings.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceDnsSettings.cs index 752852dc9dc9f..593cfb3f263ab 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceDnsSettings.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceDnsSettings.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Dns Settings of a network interface /// </summary> public partial class NetworkInterfaceDnsSettings { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceIpConfiguration.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceIpConfiguration.cs index 070e47d021927..f7075911a39d2 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceIpConfiguration.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkInterfaceIpConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// IPConfiguration in a NetworkInterface /// </summary> public partial class NetworkInterfaceIpConfiguration : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkSecurityGroup.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkSecurityGroup.cs index b884237a30f91..f4b8a70704dd9 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkSecurityGroup.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/NetworkSecurityGroup.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// NetworkSecurityGroup resource /// </summary> public partial class NetworkSecurityGroup : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Probe.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Probe.cs index 5783cc6900d92..db6012b3a8baf 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Probe.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Probe.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Load balancer Probe /// </summary> public partial class Probe : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddress.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddress.cs index 5451c404ac6e0..957f0bc211544 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddress.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddress.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// PublicIPAddress resource /// </summary> public partial class PublicIpAddress : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddressDnsSettings.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddressDnsSettings.cs index 0f100e5014c60..303f5bd7db5da 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddressDnsSettings.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/PublicIpAddressDnsSettings.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Contains FQDN of the DNS record associated with the public IP address /// </summary> public partial class PublicIpAddressDnsSettings { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRule.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRule.cs index 5b0bc4eea8177..8801b5651488f 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRule.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/SecurityRule.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Network security rule /// </summary> public partial class SecurityRule : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Subnet.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Subnet.cs index 14c3b4e57e428..dc563be579a2a 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Subnet.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Subnet.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Subnet in a VirtualNework resource /// </summary> public partial class Subnet : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Usage.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Usage.cs index bbed706be8c26..a6b9401445b70 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Usage.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/Usage.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Describes Network Resource Usage. /// </summary> public partial class Usage { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsageName.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsageName.cs index 240bde67fafa3..1315aec3b3cd2 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsageName.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsageName.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The Usage Names. /// </summary> public partial class UsageName { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsagesListResult.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsagesListResult.cs index dd7d92a251bf1..6c802c15f1253 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsagesListResult.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/UsagesListResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The List Usages operation response. /// </summary> public partial class UsagesListResult { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetwork.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetwork.cs index 0468b12211c88..05afc989bbd47 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetwork.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetwork.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Virtual Network resource /// </summary> public partial class VirtualNetwork : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGateway.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGateway.cs index 7b73eb2713be3..e9007599e4aa7 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGateway.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGateway.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// A common class for general resource information /// </summary> public partial class VirtualNetworkGateway : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnection.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnection.cs index 5c3d3fc89e571..bb8da8790b4bf 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnection.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayConnection.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// A common class for general resource information /// </summary> public partial class VirtualNetworkGatewayConnection : Resource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs index af851550eca76..2c733371c3390 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// IpConfiguration for Virtual network gateway /// </summary> public partial class VirtualNetworkGatewayIpConfiguration : SubResource { diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs index 372bf90930c19..3c5084ac051a8 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// NetworkInterfacesOperations operations. + /// </summary> internal partial class NetworkInterfacesOperations : IServiceOperations<NetworkResourceProviderClient>, INetworkInterfacesOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperationsExtensions.cs index a105ea030423b..43643ad445382 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkInterfacesOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class NetworkInterfacesOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs index 3fd7430c357be..b60463bf86fed 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClient.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClientExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClientExtensions.cs index 39f73e25fe2af..c66a152653269 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClientExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkResourceProviderClientExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class NetworkResourceProviderClientExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs index 6ba76ba5b9ea6..0eea0196c4100 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// NetworkSecurityGroupsOperations operations. + /// </summary> internal partial class NetworkSecurityGroupsOperations : IServiceOperations<NetworkResourceProviderClient>, INetworkSecurityGroupsOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperationsExtensions.cs index d42b4853cd93b..5915163fdcc93 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/NetworkSecurityGroupsOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class NetworkSecurityGroupsOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs index 9fe5678a99b96..ac4cf3f40c8a1 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// PublicIpAddressesOperations operations. + /// </summary> internal partial class PublicIpAddressesOperations : IServiceOperations<NetworkResourceProviderClient>, IPublicIpAddressesOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperationsExtensions.cs index ab0201d3706b8..9df5a189f78f3 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/PublicIpAddressesOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class PublicIpAddressesOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs index e578de4bf2890..24169a9ab3227 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// SecurityRulesOperations operations. + /// </summary> internal partial class SecurityRulesOperations : IServiceOperations<NetworkResourceProviderClient>, ISecurityRulesOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperationsExtensions.cs index 37a639cb31738..d91f503597f23 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SecurityRulesOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class SecurityRulesOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs index 4df1d2a6a5b48..f312de3a38452 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// SubnetsOperations operations. + /// </summary> internal partial class SubnetsOperations : IServiceOperations<NetworkResourceProviderClient>, ISubnetsOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperationsExtensions.cs index 80643cb760c18..8f6361691d53f 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/SubnetsOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class SubnetsOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs index 1c90903386a64..68249dc04c161 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// UsagesOperations operations. + /// </summary> internal partial class UsagesOperations : IServiceOperations<NetworkResourceProviderClient>, IUsagesOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperationsExtensions.cs index 4f9f5de789105..a9d87d6b5b2eb 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/UsagesOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class UsagesOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs index 8565e14f9da12..6d5985ec890c1 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// VirtualNetworkGatewayConnectionsOperations operations. + /// </summary> internal partial class VirtualNetworkGatewayConnectionsOperations : IServiceOperations<NetworkResourceProviderClient>, IVirtualNetworkGatewayConnectionsOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs index a78557bfe3f20..d6aaa884c7406 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewayConnectionsOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class VirtualNetworkGatewayConnectionsOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs index a8e23dcee09f2..01601b1c3a0cd 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// VirtualNetworkGatewaysOperations operations. + /// </summary> internal partial class VirtualNetworkGatewaysOperations : IServiceOperations<NetworkResourceProviderClient>, IVirtualNetworkGatewaysOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperationsExtensions.cs index b24d66a9d607c..a1d74e8303927 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworkGatewaysOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class VirtualNetworkGatewaysOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs index 461bbaecc2490..b5878763f5bb4 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Network using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// VirtualNetworksOperations operations. + /// </summary> internal partial class VirtualNetworksOperations : IServiceOperations<NetworkResourceProviderClient>, IVirtualNetworksOperations { /// <summary> diff --git a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperationsExtensions.cs b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperationsExtensions.cs index bd0968d9667d4..d55867b629851 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperationsExtensions.cs +++ b/src/ResourceManagement/Network/NetworkManagement/Generated/VirtualNetworksOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Network using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class VirtualNetworksOperationsExtensions diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkResourceProviderClient.json b/src/ResourceManagement/Network/NetworkManagement/NetworkResourceProviderClient.json index 34d264896ce91..7660b1ae0a6a0 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkResourceProviderClient.json +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkResourceProviderClient.json @@ -40,11 +40,9 @@ "description": "The name of the applicationgateway." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -83,11 +81,9 @@ "description": "The name of the applicationgateway." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -131,11 +127,9 @@ "description": "Parameters supplied to the create/delete ApplicationGateway operation" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -172,11 +166,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -200,11 +192,9 @@ "description": "The List applicationgateway opertion retrieves all the applicationgateways in a subscription.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -242,11 +232,9 @@ "description": "The name of the application gateway." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -281,11 +269,9 @@ "description": "The name of the application gateway." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -323,11 +309,9 @@ "description": "The name of the loadBalancer." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -366,11 +350,9 @@ "description": "The name of the loadBalancer." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -414,11 +396,9 @@ "description": "Parameters supplied to the create/delete LoadBalancer operation" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -448,11 +428,9 @@ "description": "The List loadBalancer opertion retrieves all the loadbalancers in a subscription.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -483,11 +461,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -534,11 +510,9 @@ "description": "Parameters supplied to the Begin Create or update Local Network Gateway operation through Network resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -580,11 +554,9 @@ "description": "The name of the local network gateway." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -621,11 +593,9 @@ "description": "The name of the local network gateway." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -659,11 +629,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -701,11 +669,9 @@ "description": "The name of the network interface." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -744,11 +710,9 @@ "description": "The name of the network interface." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -792,11 +756,9 @@ "description": "Parameters supplied to the create/update NetworkInterface operation" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -826,11 +788,9 @@ "description": "The List networkInterfaces opertion retrieves all the networkInterfaces in a subscription.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -861,11 +821,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -903,11 +861,9 @@ "description": "The name of the network security group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -946,11 +902,9 @@ "description": "The name of the network security group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -994,11 +948,9 @@ "description": "Parameters supplied to the create/update Network Security Group operation" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1028,11 +980,9 @@ "description": "The list NetworkSecurityGroups returns all network security groups in a subscription", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1063,11 +1013,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1105,11 +1053,9 @@ "description": "The name of the subnet." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1148,11 +1094,9 @@ "description": "The name of the subnet." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1196,11 +1140,9 @@ "description": "Parameters supplied to the create/update PublicIPAddress operation" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1230,11 +1172,9 @@ "description": "The List publicIpAddress opertion retrieves all the publicIpAddresses in a subscription.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1265,11 +1205,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1314,11 +1252,9 @@ "description": "The name of the security rule." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1364,11 +1300,9 @@ "description": "The name of the security rule." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1419,11 +1353,9 @@ "description": "Parameters supplied to the create/update network security rule operation" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1467,11 +1399,9 @@ "description": "The name of the network security group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1516,11 +1446,9 @@ "description": "The name of the subnet." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1566,11 +1494,9 @@ "description": "The name of the subnet." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1621,11 +1547,9 @@ "description": "Parameters supplied to the create/update Subnet operation" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1669,11 +1593,9 @@ "description": "The name of the virtual network." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1704,11 +1626,9 @@ "description": "The location upon which resource usage is queried." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1754,11 +1674,9 @@ "description": "Parameters supplied to the Begin Create or update Virtual Network Gateway connection operation through Network resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1800,11 +1718,9 @@ "description": "The name of the virtual network gateway connection." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1841,11 +1757,9 @@ "description": "The name of the virtual network gateway connection." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1886,11 +1800,9 @@ "description": "The virtual network gateway connection shared key name." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1934,11 +1846,9 @@ "description": "Parameters supplied to the Begin Set Virtual Network Gateway conection Shared key operation throughNetwork resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1975,11 +1885,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2026,11 +1934,9 @@ "description": "Parameters supplied to the Begin Reset Virtual Network Gateway connection shared key operation through Network resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2080,11 +1986,9 @@ "description": "Parameters supplied to the Begin Create or update Virtual Network Gateway operation through Network resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2126,11 +2030,9 @@ "description": "The name of the virtual network gateway." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2167,11 +2069,9 @@ "description": "The name of the virtual network gateway." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2205,11 +2105,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2256,11 +2154,9 @@ "description": "Parameters supplied to the Begin Reset Virtual Network Gateway operation through Network resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2301,11 +2197,9 @@ "description": "The name of the virtual network." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2344,11 +2238,9 @@ "description": "The name of the virtual network." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2392,11 +2284,9 @@ "description": "Parameters supplied to the create/update Virtual Network operation" }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2426,11 +2316,9 @@ "description": "The list VirtualNetwork returns all Virtual Networks in a subscription", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2461,11 +2349,9 @@ "description": "The name of the resource group." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -2500,11 +2386,9 @@ "description": "The domain name to be verified. It must conform to the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], diff --git a/src/ResourceManagement/Resource/ResourceManagement/AuthorizationClient.json b/src/ResourceManagement/Resource/ResourceManagement/AuthorizationClient.json index 491e952a740bf..8950191d7a298 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/AuthorizationClient.json +++ b/src/ResourceManagement/Resource/ResourceManagement/AuthorizationClient.json @@ -49,11 +49,9 @@ "description": "The management lock parameters." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -135,11 +133,9 @@ "description": "Create or update management lock parameters." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -210,11 +206,9 @@ "description": "The name of lock." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -256,11 +250,9 @@ "description": "The management lock parameters." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -294,11 +286,9 @@ "description": "The name of lock." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -329,11 +319,9 @@ "description": "Name of the management lock." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -376,11 +364,9 @@ "description": "The name of lock." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -420,11 +406,9 @@ "description": "The filter to apply on the operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -493,11 +477,9 @@ "description": "The filter to apply on the operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -530,7 +512,6 @@ "x-ms-skip-url-encoding": true }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -561,11 +542,9 @@ "description": "The filter to apply on the operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], diff --git a/src/ResourceManagement/Resource/ResourceManagement/FeatureClient.json b/src/ResourceManagement/Resource/ResourceManagement/FeatureClient.json index 0117c58b2b801..a04299a8bff84 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/FeatureClient.json +++ b/src/ResourceManagement/Resource/ResourceManagement/FeatureClient.json @@ -26,11 +26,9 @@ "description": "Gets a list of previewed features for all the providers in the current subscription.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -61,11 +59,9 @@ "description": "The namespace of the resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -103,11 +99,9 @@ "description": "Previewed feature name in the resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -144,11 +138,9 @@ "description": "Previewed feature name in the resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs index b6e04b13e86d0..ef401dca06e7a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs @@ -15,8 +15,8 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClientExtensions.cs index 1bab74e2b7d85..c8091c8180cfa 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClientExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class AuthorizationClientExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs index edc18250f6599..daf75bb8315dd 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// DeploymentOperationsOperations operations. + /// </summary> internal partial class DeploymentOperationsOperations : IServiceOperations<ResourceManagementClient>, IDeploymentOperationsOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs index c7876598edfee..7eb1c7c008d67 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class DeploymentOperationsOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs index bd8cefce989d7..41243a74dd8db 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// DeploymentsOperations operations. + /// </summary> internal partial class DeploymentsOperations : IServiceOperations<ResourceManagementClient>, IDeploymentsOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs index 23da2a82e95f7..928b1733d2e6f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class DeploymentsOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs index 1deafa6573385..0d209f82eb670 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClientExtensions.cs index 5b3daa7b95a5d..604fbe2c98d79 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClientExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class FeatureClientExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs index 718d0231f501b..775bc29204967 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// FeaturesOperations operations. + /// </summary> internal partial class FeaturesOperations : IServiceOperations<FeatureClient>, IFeaturesOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs index 49df6cf328822..d05a858fdc19d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class FeaturesOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs index e84c7e8ad0cef..4dad220f4c8e4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs @@ -9,8 +9,8 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs index 04658c5f9cc65..5df9817f839fd 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// DeploymentOperationsOperations operations. /// </summary> public partial interface IDeploymentOperationsOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs index add56758c988d..55a2f7ded2c40 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// DeploymentsOperations operations. /// </summary> public partial interface IDeploymentsOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs index fa34a7c83c558..4c28d4a8f18c7 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs @@ -8,7 +8,7 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs index a1117bd095128..1b80115c6c8af 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// FeaturesOperations operations. /// </summary> public partial interface IFeaturesOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs index 7b0fd270b1db3..538d9afbcfdb5 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// ManagementLocksOperations operations. /// </summary> public partial interface IManagementLocksOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs index d71d45eb25e6d..aa71824e16c2a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// ProvidersOperations operations. /// </summary> public partial interface IProvidersOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs index 19eff215f8611..f4bc904532c28 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// ResourceGroupsOperations operations. /// </summary> public partial interface IResourceGroupsOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs index 4541c38d7ab57..06498fe53f6cc 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs @@ -9,8 +9,8 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs index 5a4f68c0b73ff..772216fa83533 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// ResourceProviderOperationDetailsOperations operations. /// </summary> public partial interface IResourceProviderOperationDetailsOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs index 91696d2c65ee0..e414026fab561 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// ResourcesOperations operations. /// </summary> public partial interface IResourcesOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs index 3e7149542db7e..f643b24cb641a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs @@ -8,7 +8,7 @@ namespace Microsoft.Azure.Subscriptions using Newtonsoft.Json; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs index ad6a1ceb0e58c..7e13f00e9cdff 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Subscriptions using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// SubscriptionsOperations operations. /// </summary> public partial interface ISubscriptionsOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs index 97f4b7a4f3fa4..f109056703fad 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs @@ -8,11 +8,12 @@ namespace Microsoft.Azure.Management.Resources using Microsoft.Rest; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// TagsOperations operations. /// </summary> public partial interface ITagsOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs index 857187e2e15aa..e48c16f317ee2 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Subscriptions using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// TenantsOperations operations. /// </summary> public partial interface ITenantsOperations { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs index b27d009679665..2e221edfd6cde 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// ManagementLocksOperations operations. + /// </summary> internal partial class ManagementLocksOperations : IServiceOperations<AuthorizationClient>, IManagementLocksOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs index b262f31e788e1..a0bd4fe3c1fd4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class ManagementLocksOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/BasicDependency.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/BasicDependency.cs index 3ead29a93af79..2f8661115ce0e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/BasicDependency.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/BasicDependency.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment dependency information. /// </summary> public partial class BasicDependency { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Dependency.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Dependency.cs index dfa06f59a1079..bb3fc050dda44 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Dependency.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Dependency.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment dependency information. /// </summary> public partial class Dependency { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Deployment.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Deployment.cs index a93237a0c0353..3b5eb0081e58a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Deployment.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Deployment.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment operation parameters. /// </summary> public partial class Deployment { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtended.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtended.cs index 17fc5434f8ddb..5d609a1ab0964 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtended.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtended.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment information. /// </summary> public partial class DeploymentExtended { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtendedFilter.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtendedFilter.cs index b45ddf2eec902..da7764930e913 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtendedFilter.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtendedFilter.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment filter. /// </summary> public partial class DeploymentExtendedFilter { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperation.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperation.cs index 256bc39b4b416..35287fc85dc68 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperation.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperation.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment operation information. /// </summary> public partial class DeploymentOperation { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationProperties.cs index e71d2e4a8e62f..c693d660a87c6 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationProperties.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment operation properties. /// </summary> public partial class DeploymentOperationProperties { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentProperties.cs index 61990082d356a..8d623f4012c79 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentProperties.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment properties. /// </summary> public partial class DeploymentProperties { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentPropertiesExtended.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentPropertiesExtended.cs index 027f185352675..f784c70c8cc02 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentPropertiesExtended.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentPropertiesExtended.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Deployment properties with additional details. /// </summary> public partial class DeploymentPropertiesExtended { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentValidateResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentValidateResult.cs index e8a163dda58d0..92a498bbb8414 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentValidateResult.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentValidateResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Information from validate template deployment response. /// </summary> public partial class DeploymentValidateResult { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureProperties.cs index ccc8ad5264ae7..84b840ceb7bf8 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureProperties.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Previewed feature information. /// </summary> public partial class FeatureProperties { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureResult.cs index 9368f68574ae1..6ee3761ca0d59 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureResult.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Previewed feature information. /// </summary> public partial class FeatureResult { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResource.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResource.cs index 7c5edd5e2b61b..4a0e7b3dea525 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResource.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResource.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource information. /// </summary> public partial class GenericResource : Resource { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResourceFilter.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResourceFilter.cs index 55f7a095b6aa8..4ff206e97d4f7 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResourceFilter.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResourceFilter.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource filter. /// </summary> public partial class GenericResourceFilter { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockObject.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockObject.cs index 253f37807a518..4d3867b7bc18f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockObject.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockObject.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Management lock information. /// </summary> public partial class ManagementLockObject { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockProperties.cs index a4f63055f04eb..043b93d877d86 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockProperties.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The management lock properties. /// </summary> public partial class ManagementLockProperties { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ParametersLink.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ParametersLink.cs index 15bb26bd9eb16..894cd1ecf2d65 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ParametersLink.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ParametersLink.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Entity representing the reference to the deployment paramaters. /// </summary> public partial class ParametersLink { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Plan.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Plan.cs index c6be4eab09954..b0bc81124294c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Plan.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Plan.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Plan for the resource. /// </summary> public partial class Plan { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Provider.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Provider.cs index 307ff34af8b89..3edf086bedb7c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Provider.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Provider.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource provider information. /// </summary> public partial class Provider { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderResourceType.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderResourceType.cs index a6bc6064f4fcf..50d75fd010bc3 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderResourceType.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderResourceType.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource type managed by the resource provider. /// </summary> public partial class ProviderResourceType { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs index 3d77040f3e8e6..74541701d2cc7 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource group information. /// </summary> public partial class ResourceGroup { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtended.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtended.cs index b7e4163178a9c..c3a568baf808d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtended.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtended.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource group information. /// </summary> public partial class ResourceGroupExtended { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtendedFilter.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtendedFilter.cs index 08e97b8b3952e..0579954c067f8 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtendedFilter.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtendedFilter.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource group filter. /// </summary> public partial class ResourceGroupExtendedFilter { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFormatResourceProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFormatResourceProperties.cs index 48b90a7fc2963..134426abe34a3 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFormatResourceProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFormatResourceProperties.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The resource group properties. /// </summary> public partial class ResourceGroupFormatResourceProperties { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementError.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementError.cs index c7c36138ea915..d3feef948cc16 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementError.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementError.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> /// </summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementErrorWithDetails.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementErrorWithDetails.cs index 0c9071abe59f3..9519e2b17b63d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementErrorWithDetails.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementErrorWithDetails.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> /// </summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDefinition.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDefinition.cs index 4b34028b29799..0a590097c0498 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDefinition.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDefinition.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource provider operation information. /// </summary> public partial class ResourceProviderOperationDefinition { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDetailListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDetailListResult.cs index 4db3d893638e7..a5f9dd785cf40 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDetailListResult.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDetailListResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// List of resource provider operations. /// </summary> public partial class ResourceProviderOperationDetailListResult { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDisplayProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDisplayProperties.cs index 0dee763093e9f..83e10ec1331d2 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDisplayProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDisplayProperties.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Resource provider operation's display properties. /// </summary> public partial class ResourceProviderOperationDisplayProperties { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourcesMoveInfo.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourcesMoveInfo.cs index b2359e3cec928..cdbfed6724369 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourcesMoveInfo.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourcesMoveInfo.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Parameters of move resources. /// </summary> public partial class ResourcesMoveInfo { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs index 004c740b1d0c1..59838656b46e6 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Subscriptions.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Subscription information. /// </summary> public partial class Subscription { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagCount.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagCount.cs index 7a5039f56e569..a894cf64f9cff 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagCount.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagCount.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Tag count. /// </summary> public partial class TagCount { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagDetails.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagDetails.cs index 0a5647bbf507a..0e34464044a77 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagDetails.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagDetails.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Tag details. /// </summary> public partial class TagDetails { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagValue.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagValue.cs index d6b298b1e7e31..a013e7173bbbd 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagValue.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagValue.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Tag information. /// </summary> public partial class TagValue { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TargetResource.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TargetResource.cs index 664111a4324dc..b4e4e238a1e73 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TargetResource.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TargetResource.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Target resource. /// </summary> public partial class TargetResource { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TemplateLink.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TemplateLink.cs index 1f1f51f31c979..a48de714d6ae1 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TemplateLink.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TemplateLink.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Resources.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Entity representing the reference to the template. /// </summary> public partial class TemplateLink { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs index 65209050a4ec0..1522b64c4c23a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Subscriptions.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// Tenant Id information /// </summary> public partial class TenantIdDescription { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs index 307a45ced3b88..a7e416a74663e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// ProvidersOperations operations. + /// </summary> internal partial class ProvidersOperations : IServiceOperations<ResourceManagementClient>, IProvidersOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs index 2f4b3cfc1826e..e0767a9075b82 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class ProvidersOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs index 777ee57181aa2..0218c88aa1b8d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// ResourceGroupsOperations operations. + /// </summary> internal partial class ResourceGroupsOperations : IServiceOperations<ResourceManagementClient>, IResourceGroupsOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs index 02e28e788d31a..4e0069997360d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class ResourceGroupsOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs index d65070f6ab270..5ebdb2353a64e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs @@ -15,8 +15,8 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClientExtensions.cs index fe71e2bc0946e..571118b08cf27 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClientExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class ResourceManagementClientExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs index f85ba1ee258bf..087f22e1d31a4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// ResourceProviderOperationDetailsOperations operations. + /// </summary> internal partial class ResourceProviderOperationDetailsOperations : IServiceOperations<ResourceManagementClient>, IResourceProviderOperationDetailsOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs index eeb12611f75a0..a61cc7985fa3c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class ResourceProviderOperationDetailsOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs index c5550351dd852..c62b867942a6a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// ResourcesOperations operations. + /// </summary> internal partial class ResourcesOperations : IServiceOperations<ResourceManagementClient>, IResourcesOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs index f8d2bf8a8f887..20c466a1b4d71 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class ResourcesOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs index 4f446c0af0ca3..7065066beefad 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Subscriptions using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs index 86144864d5e28..0b1e75715c4b8 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Subscriptions using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class SubscriptionClientExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs index 0228b7d344fd4..2e1bc11e3bb4f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Subscriptions using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// SubscriptionsOperations operations. + /// </summary> internal partial class SubscriptionsOperations : IServiceOperations<SubscriptionClient>, ISubscriptionsOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs index 5ea440463b7a5..a0eb16b052d53 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Subscriptions using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class SubscriptionsOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs index 57a9aa49f47e4..9223ee751a4e5 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs @@ -13,10 +13,13 @@ namespace Microsoft.Azure.Management.Resources using Newtonsoft.Json; using System.Linq; using System.Linq.Expressions; - using Microsoft.Azure.OData; - using Microsoft.Azure; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// TagsOperations operations. + /// </summary> internal partial class TagsOperations : IServiceOperations<ResourceManagementClient>, ITagsOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs index 31efcfc32d5dc..656355a4e6c21 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Management.Resources using System.Threading.Tasks; using Microsoft.Rest; using System.Linq.Expressions; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class TagsOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs index 18bca03f619eb..75a3ea62e2fc4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Subscriptions using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// TenantsOperations operations. + /// </summary> internal partial class TenantsOperations : IServiceOperations<SubscriptionClient>, ITenantsOperations { /// <summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs index 4b0a4cd42c49b..8ca6f0770effd 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Subscriptions using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class TenantsOperationsExtensions diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClient.json b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClient.json index bd2e158833011..55d830458133c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClient.json +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClient.json @@ -33,11 +33,9 @@ "description": "Namespace of the resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -67,11 +65,9 @@ "description": "Namespace of the resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -102,11 +98,9 @@ "description": "Query parameters. If null is passed returns all deployments." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -137,11 +131,9 @@ "description": "Namespace of the resource provider." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -186,11 +178,9 @@ "description": "Query parameters. If null is passed returns all resource groups." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -222,11 +212,9 @@ "description": "The name of the resource group to check. The name is case insensitive." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -263,11 +251,9 @@ "description": "Parameters supplied to the create or update resource group service operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -301,11 +287,9 @@ "description": "The name of the resource group to be deleted. The name is case insensitive." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -334,11 +318,9 @@ "description": "The name of the resource group to get. The name is case insensitive." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -375,11 +357,9 @@ "description": "Parameters supplied to the update state resource group service operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -417,11 +397,9 @@ "description": "Query parameters. If null is passed returns all resource groups." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -462,11 +440,9 @@ "description": "move resources' parameters." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -501,11 +477,9 @@ "description": "Query parameters. If null is passed returns all resource groups." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -573,7 +547,6 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -637,7 +610,6 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -713,7 +685,6 @@ "description": "Create or update resource parameters." }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -783,7 +754,6 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -826,11 +796,9 @@ "description": "The value of the tag." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -865,11 +833,9 @@ "description": "The value of the tag." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -905,11 +871,9 @@ "description": "The name of the tag." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -943,11 +907,9 @@ "description": "The name of the tag." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -970,11 +932,9 @@ "description": "Get a list of subscription resource tags.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1019,11 +979,9 @@ "description": "Operation Id." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1068,11 +1026,9 @@ "description": "Query parameters." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1109,7 +1065,6 @@ "type": "string" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1152,11 +1107,9 @@ "description": "The name of the deployment." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1199,11 +1152,9 @@ "description": "Deployment to validate." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1255,11 +1206,9 @@ "description": "Additional parameters supplied to the operation." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1300,11 +1249,9 @@ "description": "The name of the deployment." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -1349,11 +1296,9 @@ "description": "Query parameters. If null is passed returns all deployments." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], diff --git a/src/ResourceManagement/Resource/ResourceManagement/SubscriptionClient.json b/src/ResourceManagement/Resource/ResourceManagement/SubscriptionClient.json index b47ae4fec53d2..7db4ae2816e19 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/SubscriptionClient.json +++ b/src/ResourceManagement/Resource/ResourceManagement/SubscriptionClient.json @@ -33,7 +33,6 @@ "description": "Id of the subscription." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" } ], @@ -56,11 +55,9 @@ "description": "Gets a list of the subscriptionIds.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -84,11 +81,9 @@ "description": "Gets a list of the tenantIds.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs index 2e122da5f6e2f..b8a610ad0f7e6 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs @@ -7,10 +7,11 @@ namespace Microsoft.Azure.Management.Storage using System.Threading.Tasks; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> + /// StorageAccountsOperations operations. /// </summary> public partial interface IStorageAccountsOperations { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs index c0591eb49bad8..68afa0e8c2768 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs @@ -8,7 +8,7 @@ namespace Microsoft.Azure.Management.Storage using Newtonsoft.Json; using Microsoft.Rest; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> @@ -60,5 +60,7 @@ public partial interface IStorageManagementClient IStorageAccountsOperations StorageAccounts { get; } + IUsageOperations Usage { get; } + } } diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IUsageOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IUsageOperations.cs new file mode 100644 index 0000000000000..e8001f2a32bb0 --- /dev/null +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IUsageOperations.cs @@ -0,0 +1,30 @@ +namespace Microsoft.Azure.Management.Storage +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// UsageOperations operations. + /// </summary> + public partial interface IUsageOperations + { + /// <summary> + /// Gets the current usage count and the limit for the resources under + /// the subscription. + /// </summary> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<UsageListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CheckNameAvailabilityResult.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CheckNameAvailabilityResult.cs index af12cc79a5bac..d6540ccc4c699 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CheckNameAvailabilityResult.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CheckNameAvailabilityResult.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The CheckNameAvailability operation response. /// </summary> public partial class CheckNameAvailabilityResult { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CustomDomain.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CustomDomain.cs index 0e8b2ceb5ca6d..bbfa50c055cd8 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CustomDomain.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CustomDomain.cs @@ -5,9 +5,11 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The custom domain assigned to this storage account. This can be set + /// via Update. /// </summary> public partial class CustomDomain { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Endpoints.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Endpoints.cs index f646d7e7b9dfb..5e7c3303ce0b1 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Endpoints.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Endpoints.cs @@ -5,9 +5,11 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The URIs that are used to perform a retrieval of a public blob, queue + /// or table object. /// </summary> public partial class Endpoints { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccount.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccount.cs index a135abc4e7705..7750c1fc8d9ef 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccount.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccount.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The storage account. /// </summary> public partial class StorageAccount : Resource { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCheckNameAvailabilityParameters.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCheckNameAvailabilityParameters.cs index c9fec40b6b42a..8cb33b850313e 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCheckNameAvailabilityParameters.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCheckNameAvailabilityParameters.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> /// </summary> diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCreateParameters.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCreateParameters.cs index 9943a9237b5ea..8ebe3465bbfad 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCreateParameters.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCreateParameters.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The parameters to provide for the account. /// </summary> public partial class StorageAccountCreateParameters : Resource { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountKeys.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountKeys.cs index f690f56e8a046..1540eee34fe50 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountKeys.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountKeys.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The access keys for the storage account. /// </summary> public partial class StorageAccountKeys { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountRegenerateKeyParameters.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountRegenerateKeyParameters.cs index cfb61ae1a481c..9e593f46b130b 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountRegenerateKeyParameters.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountRegenerateKeyParameters.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> /// </summary> diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountUpdateParameters.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountUpdateParameters.cs index ac2b4578f438c..994763d9af2ce 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountUpdateParameters.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountUpdateParameters.cs @@ -5,9 +5,10 @@ namespace Microsoft.Azure.Management.Storage.Models using Newtonsoft.Json; using Microsoft.Rest; using Microsoft.Rest.Serialization; - using Microsoft.Azure; + using Microsoft.Rest.Azure; /// <summary> + /// The parameters to update on the account. /// </summary> public partial class StorageAccountUpdateParameters : Resource { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Usage.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Usage.cs new file mode 100644 index 0000000000000..f6ca35c05acf2 --- /dev/null +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Usage.cs @@ -0,0 +1,44 @@ +namespace Microsoft.Azure.Management.Storage.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// Describes Storage Resource Usage. + /// </summary> + public partial class Usage + { + /// <summary> + /// Gets the unit of measurement. Possible values for this property + /// include: 'Count', 'Bytes', 'Seconds', 'Percent', + /// 'CountsPerSecond', 'BytesPerSecond' + /// </summary> + [JsonProperty(PropertyName = "unit")] + public UsageUnit? Unit { get; set; } + + /// <summary> + /// Gets the current count of the allocated resources in the + /// subscription. + /// </summary> + [JsonProperty(PropertyName = "currentValue")] + public int? CurrentValue { get; set; } + + /// <summary> + /// Gets the maximum count of the resources that can be allocated in + /// the subscription. + /// </summary> + [JsonProperty(PropertyName = "limit")] + public int? Limit { get; set; } + + /// <summary> + /// Gets the name of the type of usage. + /// </summary> + [JsonProperty(PropertyName = "name")] + public UsageName Name { get; set; } + + } +} diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageListResult.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageListResult.cs new file mode 100644 index 0000000000000..663b7d6e1aadc --- /dev/null +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageListResult.cs @@ -0,0 +1,22 @@ +namespace Microsoft.Azure.Management.Storage.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// The List Usages operation response. + /// </summary> + public partial class UsageListResult + { + /// <summary> + /// Gets or sets the list Storage Resource Usages. + /// </summary> + [JsonProperty(PropertyName = "value")] + public IList<Usage> Value { get; set; } + + } +} diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageName.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageName.cs new file mode 100644 index 0000000000000..36e102c23e4ac --- /dev/null +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageName.cs @@ -0,0 +1,28 @@ +namespace Microsoft.Azure.Management.Storage.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// The Usage Names. + /// </summary> + public partial class UsageName + { + /// <summary> + /// Gets a string describing the resource name. + /// </summary> + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + /// <summary> + /// Gets a localized string describing the resource name. + /// </summary> + [JsonProperty(PropertyName = "localizedValue")] + public string LocalizedValue { get; set; } + + } +} diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageUnit.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageUnit.cs new file mode 100644 index 0000000000000..76cfd21dc00c7 --- /dev/null +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageUnit.cs @@ -0,0 +1,26 @@ +namespace Microsoft.Azure.Management.Storage.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// <summary> + /// Defines values for UsageUnit. + /// </summary> + [JsonConverter(typeof(StringEnumConverter))] + public enum UsageUnit + { + [EnumMember(Value = "Count")] + Count, + [EnumMember(Value = "Bytes")] + Bytes, + [EnumMember(Value = "Seconds")] + Seconds, + [EnumMember(Value = "Percent")] + Percent, + [EnumMember(Value = "CountsPerSecond")] + CountsPerSecond, + [EnumMember(Value = "BytesPerSecond")] + BytesPerSecond + } +} diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs index 346c1eb722b3a..e9e13ac73bda0 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs @@ -12,9 +12,12 @@ namespace Microsoft.Azure.Management.Storage using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; + /// <summary> + /// StorageAccountsOperations operations. + /// </summary> internal partial class StorageAccountsOperations : IServiceOperations<StorageManagementClient>, IStorageAccountsOperations { /// <summary> diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs index 462c269fb8b96..7c8758e60ea88 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Storage using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class StorageAccountsOperationsExtensions diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs index 0274ccac4ccb4..ad4bb5602b01c 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Storage using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; /// <summary> @@ -65,6 +65,8 @@ public partial class StorageManagementClient : ServiceClient<StorageManagementCl public virtual IStorageAccountsOperations StorageAccounts { get; private set; } + public virtual IUsageOperations Usage { get; private set; } + /// <summary> /// Initializes a new instance of the StorageManagementClient class. /// </summary> @@ -171,6 +173,7 @@ public StorageManagementClient(Uri baseUri, ServiceClientCredentials credentials private void Initialize() { this.StorageAccounts = new StorageAccountsOperations(this); + this.Usage = new UsageOperations(this); this.BaseUri = new Uri("https://management.azure.com"); this.ApiVersion = "2015-05-01-preview"; this.AcceptLanguage = "en-US"; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClientExtensions.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClientExtensions.cs index cfee258e45cbb..8fb1efabd37c5 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClientExtensions.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClientExtensions.cs @@ -6,7 +6,7 @@ namespace Microsoft.Azure.Management.Storage using System.Threading; using System.Threading.Tasks; using Microsoft.Rest; - using Microsoft.Azure; + using Microsoft.Rest.Azure; using Models; public static partial class StorageManagementClientExtensions diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs new file mode 100644 index 0000000000000..071dbe1108042 --- /dev/null +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs @@ -0,0 +1,166 @@ +namespace Microsoft.Azure.Management.Storage +{ + using System; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// UsageOperations operations. + /// </summary> + internal partial class UsageOperations : IServiceOperations<StorageManagementClient>, IUsageOperations + { + /// <summary> + /// Initializes a new instance of the UsageOperations class. + /// </summary> + /// <param name='client'> + /// Reference to the service client. + /// </param> + internal UsageOperations(StorageManagementClient client) + { + this.Client = client; + } + + /// <summary> + /// Gets a reference to the StorageManagementClient + /// </summary> + public StorageManagementClient Client { get; private set; } + + /// <summary> + /// Gets the current usage count and the limit for the resources under the + /// subscription. + /// </summary> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<UsageListResult>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "List", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/providers/Microsoft.Storage/usages"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<UsageListResult>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<UsageListResult>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + } +} diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperationsExtensions.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperationsExtensions.cs new file mode 100644 index 0000000000000..863133b2332bf --- /dev/null +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperationsExtensions.cs @@ -0,0 +1,43 @@ +namespace Microsoft.Azure.Management.Storage +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + public static partial class UsageOperationsExtensions + { + /// <summary> + /// Gets the current usage count and the limit for the resources under the + /// subscription. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + public static UsageListResult List(this IUsageOperations operations) + { + return Task.Factory.StartNew(s => ((IUsageOperations)s).ListAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets the current usage count and the limit for the resources under the + /// subscription. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<UsageListResult> ListAsync( this IUsageOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<UsageListResult> result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + } +} diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagementClient.json b/src/ResourceManagement/Storage/StorageManagement/StorageManagementClient.json index 9287299ff4bf3..eef5e41e772dd 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagementClient.json +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagementClient.json @@ -35,11 +35,9 @@ "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -85,11 +83,9 @@ "description": "The parameters to provide for the created account." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -128,11 +124,9 @@ "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -167,11 +161,9 @@ "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -215,11 +207,9 @@ "description": "The parameters to update on the account. Note that only one property can be changed at a time using this API. " }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -256,11 +246,9 @@ "description": "The name of the storage account." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -283,11 +271,9 @@ "description": "Lists all the storage accounts available under the subscription. Note that storage keys are not returned; use the ListKeys operation for this.", "parameters": [ { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -318,11 +304,9 @@ "description": "The name of the resource group within the user’s subscription." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -369,11 +353,9 @@ "description": "Specifies name of the key which should be regenerated." }, { - "in": "query", "$ref": "#/parameters/ApiVersionParameter" }, { - "in": "query", "$ref": "#/parameters/SubscriptionIdParameter" } ], @@ -386,6 +368,31 @@ } } } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/usages": { + "get": { + "tags": [ + "Usage" + ], + "operationId": "Usage_List", + "description": "Gets the current usage count and the limit for the resources under the subscription.", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "$ref": "#/parameters/SubscriptionIdParameter" + } + ], + "responses": { + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/UsageListResult" + } + } + } + } } }, "definitions": { @@ -641,6 +648,63 @@ } } }, + "UsageName": { + "properties": { + "value": { + "type": "string", + "description": "Gets a string describing the resource name." + }, + "localizedValue": { + "type": "string", + "description": "Gets a localized string describing the resource name." + } + }, + "description": "The Usage Names." + }, + "Usage": { + "properties": { + "unit": { + "type": "string", + "description": "Gets the unit of measurement.", + "enum": [ + "Count", + "Bytes", + "Seconds", + "Percent", + "CountsPerSecond", + "BytesPerSecond" + ], + "x-ms-enum": "UsageUnit" + }, + "currentValue": { + "type": "integer", + "format": "int32", + "description": "Gets the current count of the allocated resources in the subscription." + }, + "limit": { + "type": "integer", + "format": "int32", + "description": "Gets the maximum count of the resources that can be allocated in the subscription." + }, + "name": { + "$ref": "#/definitions/UsageName", + "description": "Gets the name of the type of usage." + } + }, + "description": "Describes Storage Resource Usage." + }, + "UsageListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/Usage" + }, + "description": "Gets or sets the list Storage Resource Usages." + } + }, + "description": "The List Usages operation response." + }, "Resource": { "properties": { "id": { From 2d7c5f5087c7f43c406647e411333d9bfa02ff87 Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Fri, 24 Jul 2015 16:01:44 -0700 Subject: [PATCH 20/34] Updated test framework and tests --- .../ClientRuntime.Azure.TestFramework.csproj | 8 +++----- ...icrosoft.Rest.ClientRuntime.Azure.TestFramework.nuspec | 2 +- .../TestFramework/TestBase.cs | 2 +- .../TestFramework/TestEnvironmentFactory.cs | 6 +++--- .../TestFramework/TestUtilities.cs | 7 ++++--- .../TestFramework/packages.config | 2 +- .../Compute/Compute.Tests/Compute.Tests.csproj | 2 +- .../Compute/Compute.Tests/Helpers/Helpers.cs | 2 +- .../Compute.Tests/ScenarioTests/AvailabilitySetTests.cs | 2 +- .../Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs | 2 +- .../Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs | 2 +- .../Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs | 2 +- .../Compute/Compute.Tests/ScenarioTests/UsageTests.cs | 2 +- .../Compute.Tests/ScenarioTests/VMCertificateTests.cs | 2 +- .../Compute.Tests/ScenarioTests/VMDataDiskTests.cs | 2 +- .../Compute.Tests/ScenarioTests/VMMarketplaceTest.cs | 2 +- .../Compute.Tests/ScenarioTests/VMScenarioTests.cs | 2 +- .../Compute/Compute.Tests/ScenarioTests/VMTestBase.cs | 2 +- .../Compute/Compute.Tests/packages.config | 2 +- .../Compute/ComputeManagement/ComputeManagement.csproj | 4 ++-- .../Microsoft.Azure.Management.Compute.nuspec | 2 +- .../Compute/ComputeManagement/packages.config | 2 +- .../Network/Network.Tests/Network.Tests.csproj | 2 +- .../Network.Tests/Tests/ApplicationGatewayTests.cs | 2 +- .../Network/Network.Tests/Tests/GatewayOperationsTests.cs | 2 +- .../Network/Network.Tests/Tests/LoadBalancerTests.cs | 2 +- .../Network/Network.Tests/Tests/NetworkInterfaceTests.cs | 2 +- .../Network/Network.Tests/Tests/TestHelper.cs | 2 +- .../Network/Network.Tests/packages.config | 2 +- .../Microsoft.Azure.Management.Network.nuspec | 2 +- .../Network/NetworkManagement/NetworkManagement.csproj | 4 ++-- .../Network/NetworkManagement/packages.config | 2 +- .../Microsoft.Azure.Management.Resources.nuspec | 2 +- .../Resource/ResourceManagement/ResourceManagement.csproj | 4 ++-- .../Resource/ResourceManagement/packages.config | 2 +- .../InMemoryTests/ResourceGroupTests.InMemory.cs | 2 +- .../Resource/Resources.Tests/Resources.Tests.csproj | 2 +- .../ScenarioTests/ProviderTests.ScenarioTests.cs | 2 +- .../ScenarioTests/ResourceGroupTests.ScenarioTests.cs | 2 +- .../ScenarioTests/TagTests.ScenarioTests.cs | 2 +- .../Resource/Resources.Tests/packages.config | 2 +- .../Storage/Storage.Tests/Storage.Tests.csproj | 2 +- .../Storage/Storage.Tests/Tests/StorageAccountTests.cs | 2 +- .../Storage/Storage.Tests/packages.config | 2 +- .../Microsoft.Azure.Management.Storage.nuspec | 2 +- .../Storage/StorageManagement/StorageManagement.csproj | 4 ++-- .../Storage/StorageManagement/packages.config | 2 +- 47 files changed, 58 insertions(+), 59 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj index 7526f9dbc5685..ecae3186555ce 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj @@ -25,15 +25,13 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> - <HintPath>packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - <Private>True</Private> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> </Reference> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> - <HintPath>packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> - <Private>True</Private> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec index 596471f36f991..ee2c035a97b39 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec @@ -14,7 +14,7 @@ <description>Test utilities for xunit test suites for AutoRest generated Azure clients</description> <copyright>Copyright 2015</copyright> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestBase.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestBase.cs index 6d293cd2e5b54..68eee0d854dbf 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestBase.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestBase.cs @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; using System; using System.Collections.Generic; diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs index 9466a0e7cc8cf..57e089d3c474a 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs @@ -8,7 +8,7 @@ using Microsoft.Rest; using System.Net.Http; using Newtonsoft.Json.Linq; -using Microsoft.Azure.Authentication; +using Microsoft.Rest.Azure.Authentication; using System.Threading; namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework @@ -77,7 +77,7 @@ public static TestEnvironment GetTestEnvironment() { ServiceClientTracing.Information("Using AAD auth with username and password combination"); testEnv.Credentials = new UserTokenCredentials(testEnv.ClientId, - testEnv.Tenant, testEnv.UserName, password, testEnv.AsAzureEnvironment()); + testEnv.Tenant, testEnv.UserName, password, testEnv.AsAzureEnvironment(), null); } else if (testEnv.ServicePrincipal != null && password != null) { @@ -93,7 +93,7 @@ public static TestEnvironment GetTestEnvironment() //will authenticate the user if the connection string is nullOrEmpty and the mode is not playback ServiceClientTracing.Information("Using AAD auth with pop-up dialog using default environment..."); testEnv.Credentials = new UserTokenCredentials(testEnv.ClientId, - testEnv.Tenant, testEnv.AsAzureEnvironment()); + testEnv.Tenant, new Uri("urn:ietf:wg:oauth:2.0:oob"), testEnv.AsAzureEnvironment()); } //Getting subscriptions from server diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs index 9a63bc01d34c4..5189f2c3c12a6 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestUtilities.cs @@ -11,15 +11,16 @@ using System.Text; using System.Threading; using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; -using Microsoft.Azure.Authentication; +using Microsoft.Rest.Azure.Authentication; namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework { public static partial class TestUtilities { - public static AzureEnvironment AsAzureEnvironment(this TestEnvironment env) + public static ActiveDirectoryEnvironment AsAzureEnvironment(this TestEnvironment env) { - return new AzureEnvironment { + return new ActiveDirectoryEnvironment + { AuthenticationEndpoint = env.Endpoints.AADAuthUri, TokenAudience = env.Endpoints.AADTokenAudienceUri, ValidateAuthority = false diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config index d5b60e9ff87ea..b76f0e5e385a6 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config @@ -2,6 +2,6 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index c140ddcc63e7e..9b1360345d5af 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -163,7 +163,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Compute/Compute.Tests/Helpers/Helpers.cs b/src/ResourceManagement/Compute/Compute.Tests/Helpers/Helpers.cs index e29caaa1e176a..a618cb758cfb3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Helpers/Helpers.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/Helpers/Helpers.cs @@ -16,7 +16,7 @@ using System.Collections.Generic; using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; using Xunit; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs index a4695d0d208a3..bb54c3a71a57c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs @@ -17,7 +17,7 @@ using System.Collections.Generic; using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs index 393f93d1dd80d..a851c3cd781b5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtImgTests.cs @@ -16,7 +16,7 @@ using System; using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Xunit; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs index 515423cf54042..d94cca0f32903 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs @@ -20,7 +20,7 @@ using System.Collections.Generic; using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Xunit; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs index 9e831ec601c67..a44c53d239ad1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs @@ -13,7 +13,7 @@ // limitations under the License. // -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Network; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs index 42d13d0cf8b7b..d2d1b26064dac 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/UsageTests.cs @@ -14,7 +14,7 @@ // using System; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs index 4adb42a7db778..71f30ad393182 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs @@ -22,7 +22,7 @@ using Xunit; using System; using System.Collections.Generic; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace Compute.Tests diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs index 950516dd43134..5e8c011835780 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs @@ -13,7 +13,7 @@ // limitations under the License. // -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs index 0bf0ad428af75..b67bdb7e1f22e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs @@ -13,7 +13,7 @@ // limitations under the License. // -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs index b465c65079a80..0c91d62079e71 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs @@ -15,7 +15,7 @@ using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs index 9439a19d47fe5..d73ce7c1567af 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs @@ -18,7 +18,7 @@ using System.Diagnostics; using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.Network; diff --git a/src/ResourceManagement/Compute/Compute.Tests/packages.config b/src/ResourceManagement/Compute/Compute.Tests/packages.config index 5b31193adf60c..fdff77d4f9924 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/packages.config +++ b/src/ResourceManagement/Compute/Compute.Tests/packages.config @@ -2,7 +2,7 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj index 3dc364feca1bb..5f9f074b0bdc6 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj @@ -38,7 +38,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> @@ -56,7 +56,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec index e1c4a3a04bd96..a38c4283b16d5 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec +++ b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec @@ -27,7 +27,7 @@ Note: This client library is for Virtual Machines under Azure Resource Manager.< </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Compute/ComputeManagement/packages.config b/src/ResourceManagement/Compute/ComputeManagement/packages.config index 433f0dd1e0c7a..bbb89da0c9c9a 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/packages.config +++ b/src/ResourceManagement/Compute/ComputeManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj index a099e6f509f3d..868b32a0924b7 100644 --- a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj +++ b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj @@ -127,7 +127,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index c808c20d8eea4..789cabdc746b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Net; using System.Security.Cryptography.X509Certificates; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs index 76575dd2b2aa3..4305844473af7 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs index d387d8ebc6e18..4530d53985852 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/LoadBalancerTests.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs index aaac52b86f905..296403e2b0dc0 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/NetworkInterfaceTests.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Resources; diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/TestHelper.cs b/src/ResourceManagement/Network/Network.Tests/Tests/TestHelper.cs index 475c07f0dd381..880139fec16ef 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/TestHelper.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/TestHelper.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Network; using Microsoft.Azure.Management.Network.Models; using Xunit; diff --git a/src/ResourceManagement/Network/Network.Tests/packages.config b/src/ResourceManagement/Network/Network.Tests/packages.config index 5b31193adf60c..fdff77d4f9924 100644 --- a/src/ResourceManagement/Network/Network.Tests/packages.config +++ b/src/ResourceManagement/Network/Network.Tests/packages.config @@ -2,7 +2,7 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec b/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec index 958c41a1c1f8c..1fa4452e9475c 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec +++ b/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec @@ -28,7 +28,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj index 40165f75b2af5..49ef8102bc6ec 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj @@ -29,7 +29,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> </ItemGroup> @@ -43,7 +43,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Network/NetworkManagement/packages.config b/src/ResourceManagement/Network/NetworkManagement/packages.config index 433f0dd1e0c7a..bbb89da0c9c9a 100644 --- a/src/ResourceManagement/Network/NetworkManagement/packages.config +++ b/src/ResourceManagement/Network/NetworkManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec index 0aa191131d796..17b6013fc6108 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec +++ b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec @@ -24,7 +24,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index 59eda593b5ebd..0842a6a62b2b3 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -35,7 +35,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> @@ -53,7 +53,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Resource/ResourceManagement/packages.config b/src/ResourceManagement/Resource/ResourceManagement/packages.config index 433f0dd1e0c7a..bbb89da0c9c9a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/packages.config +++ b/src/ResourceManagement/Resource/ResourceManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceGroupTests.InMemory.cs b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceGroupTests.InMemory.cs index 14632c4d80f9a..05b789d572def 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceGroupTests.InMemory.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceGroupTests.InMemory.cs @@ -18,7 +18,7 @@ using System.Linq; using System.Net; using System.Net.Http; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Rest; diff --git a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj index 316653aee3a2e..6be23cb56ee45 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj +++ b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj @@ -171,7 +171,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs index 722821f571253..ba9ba3ed910f5 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ProviderTests.ScenarioTests.cs @@ -18,7 +18,7 @@ using System.Linq; using System.Net; using System.Net.Http; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs index 9bf16bc9d735e..6be640acdf44f 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/ResourceGroupTests.ScenarioTests.cs @@ -17,7 +17,7 @@ using System.Collections.Generic; using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs index 5d7a33d721a4a..6b10cf7a28b80 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TagTests.ScenarioTests.cs @@ -15,7 +15,7 @@ using System.Linq; using System.Net; -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test; using Xunit; diff --git a/src/ResourceManagement/Resource/Resources.Tests/packages.config b/src/ResourceManagement/Resource/Resources.Tests/packages.config index 5b31193adf60c..fdff77d4f9924 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/packages.config +++ b/src/ResourceManagement/Resource/Resources.Tests/packages.config @@ -2,7 +2,7 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj index 4df72db074280..2d54274571bc7 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj +++ b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj @@ -107,7 +107,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs b/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs index cc6eae27f443e..738c1a5a542e7 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs +++ b/src/ResourceManagement/Storage/Storage.Tests/Tests/StorageAccountTests.cs @@ -17,13 +17,13 @@ using System.Collections.Generic; using System.Linq; using System.Net; -using Microsoft.Azure; using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; using ResourceGroups.Tests; using Storage.Tests.Helpers; using Xunit; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Rest.Azure; namespace Storage.Tests { diff --git a/src/ResourceManagement/Storage/Storage.Tests/packages.config b/src/ResourceManagement/Storage/Storage.Tests/packages.config index 2299ff45d9598..fa8dfd7fff59c 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/packages.config +++ b/src/ResourceManagement/Storage/Storage.Tests/packages.config @@ -7,7 +7,7 @@ <package id="Microsoft.Data.Services.Client" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.WindowsAzure.ConfigurationManager" version="1.8.0.0" targetFramework="net451" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net451" /> <package id="System.Spatial" version="5.6.2" targetFramework="net451" /> diff --git a/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec b/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec index 292b061513943..ee5eb4536aedd 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec +++ b/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec @@ -28,7 +28,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.16-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj index c0bfccff2baf2..9fa52f0013d47 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj @@ -28,7 +28,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> @@ -46,7 +46,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.16-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Storage/StorageManagement/packages.config b/src/ResourceManagement/Storage/StorageManagement/packages.config index 433f0dd1e0c7a..bbb89da0c9c9a 100644 --- a/src/ResourceManagement/Storage/StorageManagement/packages.config +++ b/src/ResourceManagement/Storage/StorageManagement/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.16-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> From 634fb1609b3ec36b17f4b941c45c4bce27dfef2d Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Fri, 24 Jul 2015 16:40:23 -0700 Subject: [PATCH 21/34] Updated test framework --- .../ClientRuntime.Azure.TestFramework.Tests.csproj | 2 +- .../TestFramework.Tests/packages.config | 2 +- .../Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj | 2 +- .../TestFramework/Properties/AssemblyInfo.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj index 8b65bdbef7ecf..6d890bb3590cb 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj @@ -42,7 +42,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.15-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config index 2073e41d3ad88..fdff77d4f9924 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config @@ -2,7 +2,7 @@ <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.15-preview" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj index 8f468c751afde..5f9569417ad9d 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj @@ -5,7 +5,7 @@ Microsoft.Rest.ClientRuntime.Azure.TestFramework --> <SdkNuGetPackage Include="Microsoft.Rest.ClientRuntime.Azure.TestFramework"> - <PackageVersion>0.9.0-preview</PackageVersion> + <PackageVersion>0.9.1-preview</PackageVersion> <Folder>$(MSBuildThisFileDirectory)</Folder> </SdkNuGetPackage> </ItemGroup> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs index b3fe029a1bf39..abaadfc949109 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs @@ -17,4 +17,4 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("6eb355e3-e1e1-4f46-bcfa-737812ccff87")] [assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.1.0")] From a49101df1e8ec70d2e4e5d42c90de5c96c3fd54e Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Fri, 24 Jul 2015 17:07:04 -0700 Subject: [PATCH 22/34] Updated ClientRuntime to latest version and fixed TestFramework.Tests --- .../Client/ISimpleClient.cs | 2 +- .../TestFramework.Tests/Client/MockHandler.cs | 2 +- .../Client/SimpleClient.cs | 2 +- ...ntRuntime.Azure.TestFramework.Tests.csproj | 9 ++-- ...ionIdUsesValueFromTheConnectionString.json | 48 ------------------- .../TestFramework.Tests/packages.config | 2 +- .../ClientRuntime.Azure.TestFramework.csproj | 2 +- .../TestFramework/packages.config | 2 +- .../Compute.Tests/Compute.Tests.csproj | 2 +- .../Compute/Compute.Tests/packages.config | 2 +- .../ComputeManagement.csproj | 4 +- .../Compute/ComputeManagement/packages.config | 2 +- .../Network.Tests/Network.Tests.csproj | 2 +- .../Network/Network.Tests/packages.config | 2 +- .../NetworkManagement.csproj | 6 +-- .../Network/NetworkManagement/packages.config | 2 +- .../ResourceManagement.csproj | 4 +- .../ResourceManagement/packages.config | 2 +- .../Resources.Tests/Resources.Tests.csproj | 2 +- .../Resource/Resources.Tests/packages.config | 2 +- .../Storage.Tests/Storage.Tests.csproj | 2 +- .../Storage/Storage.Tests/packages.config | 2 +- .../StorageManagement.csproj | 4 +- .../Storage/StorageManagement/packages.config | 2 +- 24 files changed, 30 insertions(+), 81 deletions(-) delete mode 100644 src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheConnectionString.json diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/ISimpleClient.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/ISimpleClient.cs index 21ce983bd904d..90c72cc8fb961 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/ISimpleClient.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/ISimpleClient.cs @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Rest; using System; using System.Collections.Generic; diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/MockHandler.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/MockHandler.cs index 74ae8f883f763..660fe9259dfa3 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/MockHandler.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/MockHandler.cs @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Net.Http; diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/SimpleClient.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/SimpleClient.cs index e181ad790dc87..22781707b3e14 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/SimpleClient.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/Client/SimpleClient.cs @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using Microsoft.Azure; +using Microsoft.Rest.Azure; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Net.Http; diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj index 6d890bb3590cb..4b590c2b88fa8 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <Import Project="..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')"/> - <Import Project="..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')"/> + <Import Project="..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> + <Import Project="..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" /> <PropertyGroup> <SDKTestProject>true</SDKTestProject> <AutoRestProjects>true</AutoRestProjects> @@ -38,7 +38,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> @@ -95,9 +95,6 @@ <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\RdfeTestsWithCertAuthEnvironmentInDogfood.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> - <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\TestsWithSubscriptionIdUsesValueFromTheConnectionString.json"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </None> <None Include="SessionRecords\Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription\TestsWithSubscriptionIdUsesValueFromTheTestFile.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheConnectionString.json b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheConnectionString.json deleted file mode 100644 index 20fdd12dd128e..0000000000000 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Authentication.Subscription/TestsWithSubscriptionIdUsesValueFromTheConnectionString.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/ee39cb6d-d45b-4694-825a-f4d6f87ed72a/services/ServiceBus/CheckNamespaceAvailability?namespace=somenamespace", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2013-06-01" - ], - "User-Agent": [ - "Microsoft.Rest.ClientRuntime.Azure.TestFramework.Test.Client.SimpleClient/1.0.0.0" - ] - }, - "ResponseBody": "<entry xmlns=\"http://www.w3.org/2005/Atom\">\r\n <id>uuid:6da37206-384c-45b0-b83e-fa08ffb16dc6;id=12660</id>\r\n <title type=\"text\"></title>\r\n <updated>2014-10-28T21:59:00Z</updated>\r\n <content type=\"application/xml\">\r\n <NamespaceAvailability xmlns=\"http://schemas.microsoft.com/netservices/2010/10/servicebus/connect\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n <Result>true</Result>\r\n <ReasonDetail i:nil=\"true\" />\r\n </NamespaceAvailability>\r\n </content>\r\n</entry>", - "ResponseHeaders": { - "Content-Length": [ - "480" - ], - "Content-Type": [ - "application/atom+xml; type=entry; charset=utf-8" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/SN1" - ], - "x-ms-request-id": [ - "466768c4888020bfa9ff09b5598402d7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Oct 2014 21:58:59 GMT" - ], - "Server": [ - "1.0.6190.4411", - "(rd_rdfe_n.141028-0100)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "ee39cb6d-d45b-4694-825a-f4d6f87ed72a" - } -} \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config index fdff77d4f9924..0e7e7426806f0 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj index ecae3186555ce..4f29047d2491c 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj @@ -22,7 +22,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config index b76f0e5e385a6..c439b5d88e890 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index 9b1360345d5af..455de867fce43 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -159,7 +159,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> diff --git a/src/ResourceManagement/Compute/Compute.Tests/packages.config b/src/ResourceManagement/Compute/Compute.Tests/packages.config index fdff77d4f9924..0e7e7426806f0 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/packages.config +++ b/src/ResourceManagement/Compute/Compute.Tests/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj index 5f9f074b0bdc6..32a920e75a52c 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj @@ -35,7 +35,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> @@ -53,7 +53,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> diff --git a/src/ResourceManagement/Compute/ComputeManagement/packages.config b/src/ResourceManagement/Compute/ComputeManagement/packages.config index bbb89da0c9c9a..cdb0d8b733610 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.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj index 868b32a0924b7..88db11333e25e 100644 --- a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj +++ b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj @@ -123,7 +123,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> diff --git a/src/ResourceManagement/Network/Network.Tests/packages.config b/src/ResourceManagement/Network/Network.Tests/packages.config index fdff77d4f9924..0e7e7426806f0 100644 --- a/src/ResourceManagement/Network/Network.Tests/packages.config +++ b/src/ResourceManagement/Network/Network.Tests/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj index 49ef8102bc6ec..9630a972abdd8 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj @@ -25,7 +25,7 @@ </ItemGroup> <ItemGroup> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> @@ -40,7 +40,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> @@ -58,7 +58,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> diff --git a/src/ResourceManagement/Network/NetworkManagement/packages.config b/src/ResourceManagement/Network/NetworkManagement/packages.config index bbb89da0c9c9a..cdb0d8b733610 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.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index 0842a6a62b2b3..31db007d17892 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -32,7 +32,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> @@ -50,7 +50,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> diff --git a/src/ResourceManagement/Resource/ResourceManagement/packages.config b/src/ResourceManagement/Resource/ResourceManagement/packages.config index bbb89da0c9c9a..cdb0d8b733610 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.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj index 6be23cb56ee45..6e894a5d4a233 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj +++ b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj @@ -167,7 +167,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> diff --git a/src/ResourceManagement/Resource/Resources.Tests/packages.config b/src/ResourceManagement/Resource/Resources.Tests/packages.config index fdff77d4f9924..0e7e7426806f0 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/packages.config +++ b/src/ResourceManagement/Resource/Resources.Tests/packages.config @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj index 2d54274571bc7..d6194d7cfdf69 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj +++ b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj @@ -103,7 +103,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> diff --git a/src/ResourceManagement/Storage/Storage.Tests/packages.config b/src/ResourceManagement/Storage/Storage.Tests/packages.config index fa8dfd7fff59c..e3fb459e4b2bc 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/packages.config +++ b/src/ResourceManagement/Storage/Storage.Tests/packages.config @@ -6,7 +6,7 @@ <package id="Microsoft.Data.OData" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.Data.Services.Client" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.WindowsAzure.ConfigurationManager" version="1.8.0.0" targetFramework="net451" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net451" /> diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj index 9fa52f0013d47..24dbc1a5bccc9 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj @@ -25,7 +25,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> @@ -43,7 +43,7 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> diff --git a/src/ResourceManagement/Storage/StorageManagement/packages.config b/src/ResourceManagement/Storage/StorageManagement/packages.config index bbb89da0c9c9a..cdb0d8b733610 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.1.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> From 43b06bfda0f7e14bbf6316b53b165a0ae8e57c48 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Fri, 24 Jul 2015 18:33:12 -0700 Subject: [PATCH 23/34] Added creation of AutoRest ARM client in the ClientFactory --- .../Common.Authentication.Tests.csproj | 8 ++ .../MockCertificateAuthenticationFactory.cs | 6 ++ .../Mocks/MockClientFactory.cs | 11 +++ .../Mocks/MockTokenAuthenticationFactory.cs | 7 ++ .../packages.config | 2 + .../Authentication/AdalConfiguration.cs | 2 +- .../ServicePrincipalKeyStore.cs | 6 ++ .../Common.Authentication.csproj | 8 ++ .../Factories/AuthenticationFactory.cs | 84 ++++++++++++++++++- .../Factories/ClientFactory.cs | 44 ++++++++++ .../Interfaces/IAuthenticationFactory.cs | 3 + .../Interfaces/IClientFactory.cs | 4 + ...oft.Azure.Common.Authentication.nuget.proj | 2 +- .../Properties/AssemblyInfo.cs | 2 +- .../Common.Authentication/packages.config | 2 + 15 files changed, 187 insertions(+), 4 deletions(-) diff --git a/src/Authentication/Common.Authentication.Tests/Common.Authentication.Tests.csproj b/src/Authentication/Common.Authentication.Tests/Common.Authentication.Tests.csproj index 43c8032b0f2e3..616c1ae4c39ab 100644 --- a/src/Authentication/Common.Authentication.Tests/Common.Authentication.Tests.csproj +++ b/src/Authentication/Common.Authentication.Tests/Common.Authentication.Tests.csproj @@ -36,6 +36,14 @@ <HintPath>..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\..\..\packages\Microsoft.Rest.ClientRuntime.1.1.1\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.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="Microsoft.WindowsAzure.Management.Storage"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.WindowsAzure.Management.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll</HintPath> </Reference> diff --git a/src/Authentication/Common.Authentication.Tests/Mocks/MockCertificateAuthenticationFactory.cs b/src/Authentication/Common.Authentication.Tests/Mocks/MockCertificateAuthenticationFactory.cs index 65328c311d271..3caad13605a25 100644 --- a/src/Authentication/Common.Authentication.Tests/Mocks/MockCertificateAuthenticationFactory.cs +++ b/src/Authentication/Common.Authentication.Tests/Mocks/MockCertificateAuthenticationFactory.cs @@ -56,5 +56,11 @@ public SubscriptionCloudCredentials GetSubscriptionCloudCredentials(AzureContext { return new CertificateCloudCredentials(context.Subscription.Id.ToString(), Certificate); } + + + public Rest.ServiceClientCredentials GetServiceClientCredentials(AzureContext context) + { + throw new System.NotImplementedException(); + } } } diff --git a/src/Authentication/Common.Authentication.Tests/Mocks/MockClientFactory.cs b/src/Authentication/Common.Authentication.Tests/Mocks/MockClientFactory.cs index 5585fd7aa6d9e..444ef936d9abf 100644 --- a/src/Authentication/Common.Authentication.Tests/Mocks/MockClientFactory.cs +++ b/src/Authentication/Common.Authentication.Tests/Mocks/MockClientFactory.cs @@ -90,5 +90,16 @@ public List<System.Net.Http.Headers.ProductInfoHeaderValue> UserAgents throw new NotImplementedException(); } } + + public TClient CreateArmClient<TClient>(AzureContext context, AzureEnvironment.Endpoint endpoint) where TClient : Rest.ServiceClient<TClient> + { + var creds = AzureSession.AuthenticationFactory.GetServiceClientCredentials(context); + return CreateCustomArmClient<TClient>(creds, context.Environment.GetEndpointAsUri(endpoint)); + } + + public TClient CreateCustomArmClient<TClient>(params object[] parameters) where TClient : Rest.ServiceClient<TClient> + { + return ManagementClients.FirstOrDefault(o => o is TClient) as TClient; + } } } diff --git a/src/Authentication/Common.Authentication.Tests/Mocks/MockTokenAuthenticationFactory.cs b/src/Authentication/Common.Authentication.Tests/Mocks/MockTokenAuthenticationFactory.cs index c7b323287cfe6..85f1e406f1633 100644 --- a/src/Authentication/Common.Authentication.Tests/Mocks/MockTokenAuthenticationFactory.cs +++ b/src/Authentication/Common.Authentication.Tests/Mocks/MockTokenAuthenticationFactory.cs @@ -15,6 +15,7 @@ using Microsoft.Azure; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Rest; using System; using System.Security; @@ -68,5 +69,11 @@ public SubscriptionCloudCredentials GetSubscriptionCloudCredentials(AzureContext { return new AccessTokenCredential(context.Subscription.Id, Token); } + + + public ServiceClientCredentials GetServiceClientCredentials(AzureContext context) + { + return new TokenCredentials(Token.AccessToken); + } } } diff --git a/src/Authentication/Common.Authentication.Tests/packages.config b/src/Authentication/Common.Authentication.Tests/packages.config index dd1fa243f43aa..b34cddfab6a5a 100644 --- a/src/Authentication/Common.Authentication.Tests/packages.config +++ b/src/Authentication/Common.Authentication.Tests/packages.config @@ -8,6 +8,8 @@ <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Net.Http" version="2.2.22" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Microsoft.WindowsAzure.Management.Storage" version="5.0.0" targetFramework="net45" /> <package id="Moq" version="4.2.1409.1722" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> diff --git a/src/Authentication/Common.Authentication/Authentication/AdalConfiguration.cs b/src/Authentication/Common.Authentication/Authentication/AdalConfiguration.cs index 1032394029c89..5caadd6d56b0c 100644 --- a/src/Authentication/Common.Authentication/Authentication/AdalConfiguration.cs +++ b/src/Authentication/Common.Authentication/Authentication/AdalConfiguration.cs @@ -28,7 +28,7 @@ public class AdalConfiguration // These constants define the default values to use for AD authentication // against RDFE // - private const string PowerShellClientId = "1950a258-227b-4e31-a9cf-717495945fc2"; + public const string PowerShellClientId = "1950a258-227b-4e31-a9cf-717495945fc2"; public static readonly Uri PowerShellRedirectUri = new Uri("urn:ietf:wg:oauth:2.0:oob"); diff --git a/src/Authentication/Common.Authentication/Authentication/ServicePrincipalKeyStore.cs b/src/Authentication/Common.Authentication/Authentication/ServicePrincipalKeyStore.cs index c5f47119a5492..8932ceab8e34c 100644 --- a/src/Authentication/Common.Authentication/Authentication/ServicePrincipalKeyStore.cs +++ b/src/Authentication/Common.Authentication/Authentication/ServicePrincipalKeyStore.cs @@ -88,6 +88,10 @@ public static SecureString GetKey(string appId, string tenantId) } return null; } + catch + { + // we could be running in an environment that does not have credentials store + } finally { if (pCredential != IntPtr.Zero) @@ -95,6 +99,8 @@ public static SecureString GetKey(string appId, string tenantId) CredStore.NativeMethods.CredFree(pCredential); } } + + return null; } diff --git a/src/Authentication/Common.Authentication/Common.Authentication.csproj b/src/Authentication/Common.Authentication/Common.Authentication.csproj index cafe8403be862..a9d19cab33537 100644 --- a/src/Authentication/Common.Authentication/Common.Authentication.csproj +++ b/src/Authentication/Common.Authentication/Common.Authentication.csproj @@ -144,6 +144,14 @@ <HintPath>..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\..\..\packages\Microsoft.Rest.ClientRuntime.1.1.1\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.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="System.Security" /> <Reference Include="System.Windows.Forms" /> </ItemGroup> diff --git a/src/Authentication/Common.Authentication/Factories/AuthenticationFactory.cs b/src/Authentication/Common.Authentication/Factories/AuthenticationFactory.cs index 5238af8f55553..f4d78fc34d66f 100644 --- a/src/Authentication/Common.Authentication/Factories/AuthenticationFactory.cs +++ b/src/Authentication/Common.Authentication/Factories/AuthenticationFactory.cs @@ -18,6 +18,9 @@ using System.Linq; using System.Security; using Hyak.Common; +using Microsoft.Rest; +using Microsoft.Rest.Azure.Authentication; +using Microsoft.IdentityModel.Clients.ActiveDirectory; namespace Microsoft.Azure.Common.Authentication.Factories { @@ -32,7 +35,12 @@ public AuthenticationFactory() public ITokenProvider TokenProvider { get; set; } - public IAccessToken Authenticate(AzureAccount account, AzureEnvironment environment, string tenant, SecureString password, ShowDialog promptBehavior, + public IAccessToken Authenticate( + AzureAccount account, + AzureEnvironment environment, + string tenant, + SecureString password, + ShowDialog promptBehavior, AzureEnvironment.Endpoint resourceId = AzureEnvironment.Endpoint.ActiveDirectoryServiceEndpointResourceId) { var configuration = GetAdalConfiguration(environment, tenant, resourceId); @@ -109,5 +117,79 @@ private AdalConfiguration GetAdalConfiguration(AzureEnvironment environment, str ValidateAuthority = !environment.OnPremise }; } + + public ServiceClientCredentials GetServiceClientCredentials(AzureContext context) + { + if (context.Subscription == null) + { + throw new ApplicationException(Resources.InvalidDefaultSubscription); + } + + if (context.Account == null) + { + throw new ArgumentException(Resources.AccountNotFound); + } + + if (context.Account.Type == AzureAccount.AccountType.Certificate) + { + throw new NotSupportedException(AzureAccount.AccountType.Certificate.ToString()); + } + + if (context.Account.Type == AzureAccount.AccountType.AccessToken) + { + return new TokenCredentials(context.Account.GetProperty(AzureAccount.Property.AccessToken)); + } + + var tenant = context.Subscription.GetPropertyAsArray(AzureSubscription.Property.Tenants) + .Intersect(context.Account.GetPropertyAsArray(AzureAccount.Property.Tenants)) + .FirstOrDefault(); + + if (tenant == null) + { + throw new ArgumentException(Resources.TenantNotFound); + } + + try + { + TracingAdapter.Information(Resources.UPNAuthenticationTrace, + context.Account.Id, context.Environment.Name, tenant); + + // TODO: When we will refactor the code, need to add tracing + /*TracingAdapter.Information(Resources.UPNAuthenticationTokenTrace, + token.LoginType, token.TenantId, token.UserId);*/ + + var env = new ActiveDirectoryEnvironment + { + AuthenticationEndpoint = context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ActiveDirectory), + TokenAudience = context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ActiveDirectoryServiceEndpointResourceId), + ValidateAuthority = !context.Environment.OnPremise + }; + + if(context.Account.Type == AzureAccount.AccountType.User) + { + return new UserTokenCredentials( + AdalConfiguration.PowerShellClientId, + tenant, + AdalConfiguration.PowerShellRedirectUri, + env, + new PlatformParameters(PromptBehavior.Never, null), + AzureSession.TokenCache); + } + else if (context.Account.Type == AzureAccount.AccountType.ServicePrincipal) + { + return new Microsoft.Rest.Azure.Authentication.ApplicationTokenCredentials( + context.Account.Id, + tenant, + UserTokenProvider.ConvertToString(ServicePrincipalKeyStore.GetKey(context.Account.Id, tenant)), + env); + } + throw new NotSupportedException(context.Account.Type.ToString()); + } + catch (Exception ex) + { + TracingAdapter.Information(Resources.AdalAuthException, ex.Message); + throw new ArgumentException(Resources.InvalidSubscriptionState, ex); + } + } } } diff --git a/src/Authentication/Common.Authentication/Factories/ClientFactory.cs b/src/Authentication/Common.Authentication/Factories/ClientFactory.cs index 3b66d4d975404..eeaf37c4426f0 100644 --- a/src/Authentication/Common.Authentication/Factories/ClientFactory.cs +++ b/src/Authentication/Common.Authentication/Factories/ClientFactory.cs @@ -35,6 +35,50 @@ public ClientFactory() UserAgents = new List<ProductInfoHeaderValue>(); } + public virtual TClient CreateArmClient<TClient>(AzureContext context, AzureEnvironment.Endpoint endpoint) where TClient : Microsoft.Rest.ServiceClient<TClient> + { + if (context == null) + { + throw new ApplicationException(Resources.InvalidDefaultSubscription); + } + + var creds = AzureSession.AuthenticationFactory.GetServiceClientCredentials(context); + TClient client = CreateCustomArmClient<TClient>(context.Environment.GetEndpointAsUri(endpoint), creds, new DelegatingHandler[]{}); + + var subscriptionId = typeof(TClient).GetProperty("SubscriptionId"); + if (subscriptionId != null && context.Subscription != null) + { + subscriptionId.SetValue(client, context.Subscription.Id.ToString()); + } + + return client; + } + + public virtual TClient CreateCustomArmClient<TClient>(params object[] parameters) where TClient : Microsoft.Rest.ServiceClient<TClient> + { + List<Type> types = new List<Type>(); + foreach (object obj in parameters) + { + types.Add(obj.GetType()); + } + + var constructor = typeof(TClient).GetConstructor(types.ToArray()); + + if (constructor == null) + { + throw new InvalidOperationException(string.Format(Resources.InvalidManagementClientType, typeof(TClient).Name)); + } + + TClient client = (TClient)constructor.Invoke(parameters); + + foreach (ProductInfoHeaderValue userAgent in UserAgents) + { + client.UserAgent.Add(userAgent); + } + + return client; + } + public virtual TClient CreateClient<TClient>(AzureContext context, AzureEnvironment.Endpoint endpoint) where TClient : ServiceClient<TClient> { if (context == null) diff --git a/src/Authentication/Common.Authentication/Interfaces/IAuthenticationFactory.cs b/src/Authentication/Common.Authentication/Interfaces/IAuthenticationFactory.cs index 7559523a781a6..5279afed7a983 100644 --- a/src/Authentication/Common.Authentication/Interfaces/IAuthenticationFactory.cs +++ b/src/Authentication/Common.Authentication/Interfaces/IAuthenticationFactory.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Rest; using System.Security; namespace Microsoft.Azure.Common.Authentication @@ -33,5 +34,7 @@ IAccessToken Authenticate(AzureAccount account, AzureEnvironment environment, st AzureEnvironment.Endpoint resourceId = AzureEnvironment.Endpoint.ActiveDirectoryServiceEndpointResourceId); SubscriptionCloudCredentials GetSubscriptionCloudCredentials(AzureContext context); + + ServiceClientCredentials GetServiceClientCredentials(AzureContext context); } } diff --git a/src/Authentication/Common.Authentication/Interfaces/IClientFactory.cs b/src/Authentication/Common.Authentication/Interfaces/IClientFactory.cs index 75738c184d22d..b45c75a32c3ac 100644 --- a/src/Authentication/Common.Authentication/Interfaces/IClientFactory.cs +++ b/src/Authentication/Common.Authentication/Interfaces/IClientFactory.cs @@ -24,6 +24,10 @@ namespace Microsoft.Azure.Common.Authentication { public interface IClientFactory { + TClient CreateArmClient<TClient>(AzureContext context, AzureEnvironment.Endpoint endpoint) where TClient : Microsoft.Rest.ServiceClient<TClient>; + + TClient CreateCustomArmClient<TClient>(params object[] parameters) where TClient : Microsoft.Rest.ServiceClient<TClient>; + TClient CreateClient<TClient>(AzureContext context, AzureEnvironment.Endpoint endpoint) where TClient : ServiceClient<TClient>; TClient CreateClient<TClient>(AzureProfile profile, AzureEnvironment.Endpoint endpoint) where TClient : ServiceClient<TClient>; diff --git a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj index b29dadc77395b..2e5bbe7021b3e 100644 --- a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj +++ b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj @@ -5,7 +5,7 @@ Microsoft.Azure.Common.Authentication --> <SdkNuGetPackage Include="Microsoft.Azure.Common.Authentication"> - <PackageVersion>1.1.0-preview</PackageVersion> + <PackageVersion>1.1.1-preview</PackageVersion> <Folder>$(MSBuildThisFileDirectory)</Folder> </SdkNuGetPackage> </ItemGroup> diff --git a/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs b/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs index 57ffdc7319780..d894518ba2525 100644 --- a/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs +++ b/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs @@ -26,7 +26,7 @@ [assembly: CLSCompliant(false)] [assembly: Guid("4f3ab2e4-cc7a-43ac-bb15-f481fcf94d58")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.1.0")] #if CODESIGN [assembly: InternalsVisibleTo("Common.Authentication.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] diff --git a/src/Authentication/Common.Authentication/packages.config b/src/Authentication/Common.Authentication/packages.config index 917c99ba77d6e..d88435b03fd61 100644 --- a/src/Authentication/Common.Authentication/packages.config +++ b/src/Authentication/Common.Authentication/packages.config @@ -8,5 +8,7 @@ <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> <package id="Microsoft.Net.Http" version="2.2.22" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file From d7d6d264c8c2095ccb9fb998b4cd6f3a369706f0 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan <hovsepm@microsoft.com> Date: Mon, 27 Jul 2015 12:14:27 -0700 Subject: [PATCH 24/34] Fixed dependency for Authentication package. --- .../Microsoft.Azure.Common.Authentication.nuget.proj | 2 +- .../Microsoft.Azure.Common.Authentication.nuspec | 1 + .../Common.Authentication/Properties/AssemblyInfo.cs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj index 2e5bbe7021b3e..2167676e22efa 100644 --- a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj +++ b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuget.proj @@ -5,7 +5,7 @@ Microsoft.Azure.Common.Authentication --> <SdkNuGetPackage Include="Microsoft.Azure.Common.Authentication"> - <PackageVersion>1.1.1-preview</PackageVersion> + <PackageVersion>1.1.2-preview</PackageVersion> <Folder>$(MSBuildThisFileDirectory)</Folder> </SdkNuGetPackage> </ItemGroup> diff --git a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuspec b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuspec index 6f1ff80bbb59b..b6175c6dad621 100644 --- a/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuspec +++ b/src/Authentication/Common.Authentication/Microsoft.Azure.Common.Authentication.nuspec @@ -17,6 +17,7 @@ <dependencies> <dependency id="Microsoft.Azure.Common" version="[2.1.0,3.0)" /> <dependency id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs b/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs index d894518ba2525..ac633e4e36f72 100644 --- a/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs +++ b/src/Authentication/Common.Authentication/Properties/AssemblyInfo.cs @@ -26,7 +26,7 @@ [assembly: CLSCompliant(false)] [assembly: Guid("4f3ab2e4-cc7a-43ac-bb15-f481fcf94d58")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.1.1.0")] +[assembly: AssemblyFileVersion("1.1.2.0")] #if CODESIGN [assembly: InternalsVisibleTo("Common.Authentication.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] From 14985d4467b5ac52fee898eeab6f418760b9c7a0 Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Mon, 27 Jul 2015 14:10:04 -0700 Subject: [PATCH 25/34] Fixed NuGet.Config files and updated ResourceManagement swagger files --- src/Authentication/NuGet.Config | 8 +- .../NuGet.Config | 8 +- src/Common/NuGet.Config | 8 +- src/Gallery/NuGet.Config | 8 +- src/KeyVault/NuGet.Config | 8 +- src/ResourceManagement/ApiApp/NuGet.Config | 8 +- .../ApiManagement/NuGet.Config | 8 +- .../Authorization/NuGet.Config | 8 +- .../Automation/NuGet.Config | 8 +- src/ResourceManagement/Batch/NuGet.Config | 8 +- src/ResourceManagement/Commerce/NuGet.Config | 8 +- src/ResourceManagement/Compute/NuGet.Config | 8 +- .../DataFactory/NuGet.Config | 8 +- src/ResourceManagement/Dns/NuGet.Config | 8 +- src/ResourceManagement/Insights/NuGet.Config | 8 +- .../KeyVaultManagement/NuGet.Config | 8 +- src/ResourceManagement/Network/NuGet.Config | 8 +- .../OperationalInsights/NuGet.Config | 8 +- .../RedisCache/NuGet.Config | 8 +- src/ResourceManagement/Resource/NuGet.Config | 8 +- .../AuthorizationClient.json | 69 ++++++------ .../ResourceManagement/FeatureClient.json | 2 +- .../Generated/IManagementLocksOperations.cs | 24 ++-- .../Generated/IResourceGroupsOperations.cs | 27 ++++- .../Generated/IResourcesOperations.cs | 30 +++++ .../Generated/ManagementLocksOperations.cs | 104 +++++++++--------- .../ManagementLocksOperationsExtensions.cs | 72 ++++++------ ...agementLockObject.cs => ManagementLock.cs} | 14 +-- .../Generated/Models/ResourceGroup.cs | 29 +++-- .../Generated/Models/ResourceGroupExtended.cs | 54 --------- ...tendedFilter.cs => ResourceGroupFilter.cs} | 2 +- ...operties.cs => ResourceGroupProperties.cs} | 6 +- .../Generated/ResourceGroupsOperations.cs | 64 +++++++---- .../ResourceGroupsOperationsExtensions.cs | 70 +++++++++--- ...ourceProviderOperationDetailsOperations.cs | 6 +- .../Generated/ResourcesOperations.cs | 53 +++++++-- .../ResourcesOperationsExtensions.cs | 66 +++++++++++ .../Generated/TagsOperations.cs | 16 +-- .../ResourceManagementClient.json | 100 +++++++---------- .../ResourceManagementClientOData.json | 21 ---- .../SubscriptionClient.json | 2 +- .../InMemoryTests/ResourceTests.InMemory.cs | 12 +- src/ResourceManagement/Sql/NuGet.Config | 8 +- src/ResourceManagement/Storage/NuGet.Config | 8 +- .../StreamAnalytics/NuGet.Config | 8 +- .../TrafficManager/NuGet.Config | 8 +- src/ResourceManagement/WebSite/NuGet.Config | 8 +- src/Search/NuGet.Config | 8 +- src/ServiceManagement/Automation/NuGet.Config | 8 +- src/ServiceManagement/Compute/NuGet.Config | 8 +- .../ExpressRoute/NuGet.Config | 8 +- src/ServiceManagement/Management/NuGet.Config | 8 +- .../MediaServices/NuGet.Config | 8 +- src/ServiceManagement/Monitoring/NuGet.Config | 8 +- src/ServiceManagement/Network/NuGet.Config | 8 +- src/ServiceManagement/RemoteApp/NuGet.Config | 8 +- src/ServiceManagement/Scheduler/NuGet.Config | 8 +- src/ServiceManagement/ServiceBus/NuGet.Config | 8 +- .../SiteRecovery/NuGet.Config | 8 +- src/ServiceManagement/Sql/NuGet.Config | 8 +- src/ServiceManagement/StorSimple/NuGet.Config | 8 +- src/ServiceManagement/Storage/NuGet.Config | 8 +- src/ServiceManagement/Store/NuGet.Config | 8 +- .../TrafficManager/NuGet.Config | 8 +- src/ServiceManagement/WebSite/NuGet.Config | 8 +- 65 files changed, 703 insertions(+), 484 deletions(-) rename src/ResourceManagement/Resource/ResourceManagement/Generated/Models/{ManagementLockObject.cs => ManagementLock.cs} (72%) delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtended.cs rename src/ResourceManagement/Resource/ResourceManagement/Generated/Models/{ResourceGroupExtendedFilter.cs => ResourceGroupFilter.cs} (92%) rename src/ResourceManagement/Resource/ResourceManagement/Generated/Models/{ResourceGroupFormatResourceProperties.cs => ResourceGroupProperties.cs} (70%) delete mode 100644 src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClientOData.json diff --git a/src/Authentication/NuGet.Config b/src/Authentication/NuGet.Config index edafa204a2dd4..2de911013532a 100644 --- a/src/Authentication/NuGet.Config +++ b/src/Authentication/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\packages" /> + </config> +</configuration> diff --git a/src/ClientRuntime.Azure.TestFramework/NuGet.Config b/src/ClientRuntime.Azure.TestFramework/NuGet.Config index edafa204a2dd4..2de911013532a 100644 --- a/src/ClientRuntime.Azure.TestFramework/NuGet.Config +++ b/src/ClientRuntime.Azure.TestFramework/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\packages" /> + </config> +</configuration> diff --git a/src/Common/NuGet.Config b/src/Common/NuGet.Config index edafa204a2dd4..2de911013532a 100644 --- a/src/Common/NuGet.Config +++ b/src/Common/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\packages" /> + </config> +</configuration> diff --git a/src/Gallery/NuGet.Config b/src/Gallery/NuGet.Config index edafa204a2dd4..2de911013532a 100644 --- a/src/Gallery/NuGet.Config +++ b/src/Gallery/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\packages" /> + </config> +</configuration> diff --git a/src/KeyVault/NuGet.Config b/src/KeyVault/NuGet.Config index edafa204a2dd4..2de911013532a 100644 --- a/src/KeyVault/NuGet.Config +++ b/src/KeyVault/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/ApiApp/NuGet.Config b/src/ResourceManagement/ApiApp/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/ApiApp/NuGet.Config +++ b/src/ResourceManagement/ApiApp/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/ApiManagement/NuGet.Config b/src/ResourceManagement/ApiManagement/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/ApiManagement/NuGet.Config +++ b/src/ResourceManagement/ApiManagement/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Authorization/NuGet.Config b/src/ResourceManagement/Authorization/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Authorization/NuGet.Config +++ b/src/ResourceManagement/Authorization/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Automation/NuGet.Config b/src/ResourceManagement/Automation/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Automation/NuGet.Config +++ b/src/ResourceManagement/Automation/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Batch/NuGet.Config b/src/ResourceManagement/Batch/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Batch/NuGet.Config +++ b/src/ResourceManagement/Batch/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Commerce/NuGet.Config b/src/ResourceManagement/Commerce/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Commerce/NuGet.Config +++ b/src/ResourceManagement/Commerce/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Compute/NuGet.Config b/src/ResourceManagement/Compute/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Compute/NuGet.Config +++ b/src/ResourceManagement/Compute/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/DataFactory/NuGet.Config b/src/ResourceManagement/DataFactory/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/DataFactory/NuGet.Config +++ b/src/ResourceManagement/DataFactory/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Dns/NuGet.Config b/src/ResourceManagement/Dns/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Dns/NuGet.Config +++ b/src/ResourceManagement/Dns/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Insights/NuGet.Config b/src/ResourceManagement/Insights/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Insights/NuGet.Config +++ b/src/ResourceManagement/Insights/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/KeyVaultManagement/NuGet.Config b/src/ResourceManagement/KeyVaultManagement/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/KeyVaultManagement/NuGet.Config +++ b/src/ResourceManagement/KeyVaultManagement/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Network/NuGet.Config b/src/ResourceManagement/Network/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Network/NuGet.Config +++ b/src/ResourceManagement/Network/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/OperationalInsights/NuGet.Config b/src/ResourceManagement/OperationalInsights/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/OperationalInsights/NuGet.Config +++ b/src/ResourceManagement/OperationalInsights/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/RedisCache/NuGet.Config b/src/ResourceManagement/RedisCache/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/RedisCache/NuGet.Config +++ b/src/ResourceManagement/RedisCache/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Resource/NuGet.Config b/src/ResourceManagement/Resource/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Resource/NuGet.Config +++ b/src/ResourceManagement/Resource/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Resource/ResourceManagement/AuthorizationClient.json b/src/ResourceManagement/Resource/ResourceManagement/AuthorizationClient.json index 8950191d7a298..20433e198d351 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/AuthorizationClient.json +++ b/src/ResourceManagement/Resource/ResourceManagement/AuthorizationClient.json @@ -44,7 +44,7 @@ "in": "body", "required": true, "schema": { - "$ref": "#/definitions/ManagementLockProperties" + "$ref": "#/definitions/ManagementLock" }, "description": "The management lock parameters." }, @@ -56,16 +56,16 @@ } ], "responses": { - "201": { + "200": { "description": "", "schema": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" } }, - "200": { + "201": { "description": "", "schema": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" } } } @@ -128,7 +128,7 @@ "in": "body", "required": true, "schema": { - "$ref": "#/definitions/ManagementLockProperties" + "$ref": "#/definitions/ManagementLock" }, "description": "Create or update management lock parameters." }, @@ -143,13 +143,13 @@ "200": { "description": "", "schema": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" } }, "201": { "description": "", "schema": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" } } } @@ -213,13 +213,13 @@ } ], "responses": { - "202": { + "204": { "description": "" }, "200": { "description": "" }, - "204": { + "202": { "description": "" } } @@ -245,7 +245,7 @@ "in": "body", "required": true, "schema": { - "$ref": "#/definitions/ManagementLockProperties" + "$ref": "#/definitions/ManagementLock" }, "description": "The management lock parameters." }, @@ -257,16 +257,16 @@ } ], "responses": { - "200": { + "201": { "description": "", "schema": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" } }, - "201": { + "200": { "description": "", "schema": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" } } } @@ -296,10 +296,10 @@ "204": { "description": "" }, - "202": { + "200": { "description": "" }, - "200": { + "202": { "description": "" } } @@ -326,16 +326,16 @@ } ], "responses": { - "204": { + "200": { "description": "", "schema": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" } }, - "200": { + "204": { "description": "", "schema": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" } } } @@ -371,13 +371,13 @@ } ], "responses": { - "200": { + "204": { "description": "" }, - "202": { + "200": { "description": "" }, - "204": { + "202": { "description": "" } } @@ -421,7 +421,7 @@ } }, "x-ms-pageable": true, - "x-ms-odata": "#/definitions/ManagementLockObject" + "x-ms-odata": "#/definitions/ManagementLock" } }, "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{parentResourcePath}/{resourceType}/{resourceName}/providers/Microsoft.Authorization/locks": { @@ -492,7 +492,7 @@ } }, "x-ms-pageable": true, - "x-ms-odata": "#/definitions/ManagementLockObject" + "x-ms-odata": "#/definitions/ManagementLock" } }, "/{nextLink}": { @@ -557,7 +557,7 @@ } }, "x-ms-pageable": true, - "x-ms-odata": "#/definitions/ManagementLockObject" + "x-ms-odata": "#/definitions/ManagementLock" } } }, @@ -588,7 +588,7 @@ }, "description": "Resource filter." }, - "ResourceGroupExtendedFilter": { + "ResourceGroupFilter": { "properties": { "tagName": { "type": "string", @@ -620,23 +620,26 @@ }, "description": "The management lock properties." }, - "ManagementLockObject": { + "ManagementLock": { "properties": { "properties": { "$ref": "#/definitions/ManagementLockProperties", "description": "Gets or sets the properties of the lock." }, "id": { + "readOnly": true, "type": "string", - "description": "Gets or sets the Id of the lock." + "description": "Gets the Id of the lock." }, "type": { + "readOnly": true, "type": "string", - "description": "Gets or sets the type of the lock." + "description": "Gets the type of the lock." }, "name": { + "readOnly": true, "type": "string", - "description": "Gets or sets the name of the lock." + "description": "Gets the name of the lock." } }, "description": "Management lock information." @@ -646,7 +649,7 @@ "value": { "type": "array", "items": { - "$ref": "#/definitions/ManagementLockObject" + "$ref": "#/definitions/ManagementLock" }, "description": "Gets or sets the list of locks." }, diff --git a/src/ResourceManagement/Resource/ResourceManagement/FeatureClient.json b/src/ResourceManagement/Resource/ResourceManagement/FeatureClient.json index a04299a8bff84..1b52764561e22 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/FeatureClient.json +++ b/src/ResourceManagement/Resource/ResourceManagement/FeatureClient.json @@ -182,7 +182,7 @@ }, "description": "Resource filter." }, - "ResourceGroupExtendedFilter": { + "ResourceGroupFilter": { "properties": { "tagName": { "type": "string", diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs index 538d9afbcfdb5..f9ef2229dd7f4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs @@ -35,7 +35,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<ManagementLock>> CreateOrUpdateAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, string lockName, ManagementLock parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Create or update a management lock at the resource level or any /// level below resource. @@ -67,7 +67,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<ManagementLock>> CreateOrUpdateAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLock parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Deletes the management lock of a resource or any level below /// resource. @@ -112,7 +112,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtSubscriptionLevelWithHttpMessagesAsync(string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<ManagementLock>> CreateOrUpdateAtSubscriptionLevelWithHttpMessagesAsync(string lockName, ManagementLock parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Deletes the management lock of a subscription. /// </summary> @@ -138,7 +138,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<ManagementLockObject>> GetWithHttpMessagesAsync(string lockName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<ManagementLock>> GetWithHttpMessagesAsync(string lockName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Deletes the management lock of a resource group. /// </summary> @@ -170,7 +170,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLock>>> ListAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a resource or any level below /// resource. @@ -199,7 +199,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLock>>> ListAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get a list of management locks at resource level or below. /// </summary> @@ -212,7 +212,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ManagementLockObject>>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLock>>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a subscription. /// </summary> @@ -225,7 +225,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtSubscriptionLevelWithHttpMessagesAsync(Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLock>>> ListAtSubscriptionLevelWithHttpMessagesAsync(Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a resource group. /// </summary> @@ -238,7 +238,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceGroupLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLock>>> ListAtResourceGroupLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a resource or any level below /// resource. @@ -252,7 +252,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLock>>> ListAtResourceLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get a list of management locks at resource level or below. /// </summary> @@ -265,7 +265,7 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ManagementLockObject>>> ListNextNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLock>>> ListNextNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets all the management locks of a subscription. /// </summary> @@ -278,6 +278,6 @@ public partial interface IManagementLocksOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtSubscriptionLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ManagementLock>>> ListAtSubscriptionLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs index f4bc904532c28..a41eaabdbb9d9 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs @@ -66,7 +66,24 @@ public partial interface IResourceGroupsOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceGroupExtended>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<ResourceGroup>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Create a resource group. + /// </summary> + /// <param name='resourceGroupName'> + /// The name of the resource group to be created or updated. + /// </param> + /// <param name='parameters'> + /// Parameters supplied to the create or update resource group service + /// operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<ResourceGroup>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Begin deleting resource group.To determine whether the operation /// has finished processing the request, call @@ -112,7 +129,7 @@ public partial interface IResourceGroupsOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceGroupExtended>> GetWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<ResourceGroup>> GetWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Resource groups can be updated through a simple PATCH operation to /// a group address. The format of the request is the same as that @@ -133,7 +150,7 @@ public partial interface IResourceGroupsOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<ResourceGroupExtended>> PatchWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<ResourceGroup>> PatchWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Gets a collection of resource groups. /// </summary> @@ -149,7 +166,7 @@ public partial interface IResourceGroupsOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ResourceGroupExtended>>> ListWithHttpMessagesAsync(Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ResourceGroup>>> ListWithHttpMessagesAsync(Expression<Func<ResourceGroupFilter, bool>> filter = default(Expression<Func<ResourceGroupFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> /// Get all of the resources under a subscription. /// </summary> @@ -175,6 +192,6 @@ public partial interface IResourceGroupsOperations /// <param name='cancellationToken'> /// The cancellation token. /// </param> - Task<AzureOperationResponse<Page<ResourceGroupExtended>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task<AzureOperationResponse<Page<ResourceGroup>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs index e414026fab561..3b8676c007449 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs @@ -134,6 +134,36 @@ public partial interface IResourcesOperations /// </param> Task<AzureOperationResponse<GenericResource>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, GenericResource parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// <summary> + /// Create a resource. + /// </summary> + /// <param name='resourceGroupName'> + /// The name of the resource group. The name is case insensitive. + /// </param> + /// <param name='resourceProviderNamespace'> + /// Resource identity. + /// </param> + /// <param name='parentResourcePath'> + /// Resource identity. + /// </param> + /// <param name='resourceType'> + /// Resource identity. + /// </param> + /// <param name='resourceName'> + /// Resource identity. + /// </param> + /// <param name='apiVersion'> + /// </param> + /// <param name='parameters'> + /// Create or update resource parameters. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<GenericResource>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, GenericResource parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> /// Returns a resource belonging to a resource group. /// </summary> /// <param name='resourceGroupName'> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs index 2e221edfd6cde..ad2d370b70792 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs @@ -56,7 +56,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<ManagementLock>> CreateOrUpdateAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, string lockName, ManagementLock parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -154,7 +154,7 @@ internal ManagementLocksOperations(AuthorizationClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -173,7 +173,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockObject>(); + var result = new AzureOperationResponse<ManagementLock>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -181,16 +181,16 @@ internal ManagementLocksOperations(AuthorizationClient client) result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockObject>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ManagementLock>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockObject>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ManagementLock>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -230,7 +230,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<ManagementLock>> CreateOrUpdateAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLock parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -371,7 +371,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockObject>(); + var result = new AzureOperationResponse<ManagementLock>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -382,13 +382,13 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockObject>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ManagementLock>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockObject>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ManagementLock>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -537,7 +537,7 @@ internal ManagementLocksOperations(AuthorizationClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || 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)); ex.Request = httpRequest; @@ -578,7 +578,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockObject>> CreateOrUpdateAtSubscriptionLevelWithHttpMessagesAsync(string lockName, ManagementLockProperties parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<ManagementLock>> CreateOrUpdateAtSubscriptionLevelWithHttpMessagesAsync(string lockName, ManagementLock parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (lockName == null) { @@ -670,7 +670,7 @@ internal ManagementLocksOperations(AuthorizationClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -689,7 +689,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockObject>(); + var result = new AzureOperationResponse<ManagementLock>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -697,16 +697,16 @@ internal ManagementLocksOperations(AuthorizationClient client) result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockObject>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ManagementLock>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockObject>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ManagementLock>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -810,7 +810,7 @@ internal ManagementLocksOperations(AuthorizationClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || 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)); ex.Request = httpRequest; @@ -848,7 +848,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ManagementLockObject>> GetWithHttpMessagesAsync(string lockName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<ManagementLock>> GetWithHttpMessagesAsync(string lockName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (lockName == null) { @@ -931,7 +931,7 @@ internal ManagementLocksOperations(AuthorizationClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -950,7 +950,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ManagementLockObject>(); + var result = new AzureOperationResponse<ManagementLock>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -958,16 +958,16 @@ internal ManagementLocksOperations(AuthorizationClient client) result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockObject>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ManagementLock>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ManagementLockObject>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ManagementLock>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1080,7 +1080,7 @@ internal ManagementLocksOperations(AuthorizationClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || 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)); ex.Request = httpRequest; @@ -1121,7 +1121,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLock>>> ListAtResourceGroupLevelWithHttpMessagesAsync(string resourceGroupName, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1228,7 +1228,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ManagementLockObject>>(); + var result = new AzureOperationResponse<Page<ManagementLock>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -1239,7 +1239,7 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLock>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1275,7 +1275,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLock>>> ListAtResourceLevelWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1406,7 +1406,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ManagementLockObject>>(); + var result = new AzureOperationResponse<Page<ManagementLock>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -1417,7 +1417,7 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLock>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1438,7 +1438,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLock>>> ListNextWithHttpMessagesAsync(string nextLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextLink == null) { @@ -1532,7 +1532,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ManagementLockObject>>(); + var result = new AzureOperationResponse<Page<ManagementLock>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -1543,7 +1543,7 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLock>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1564,7 +1564,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtSubscriptionLevelWithHttpMessagesAsync(Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLock>>> ListAtSubscriptionLevelWithHttpMessagesAsync(Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -1665,7 +1665,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ManagementLockObject>>(); + var result = new AzureOperationResponse<Page<ManagementLock>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -1676,7 +1676,7 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLock>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1697,7 +1697,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceGroupLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLock>>> ListAtResourceGroupLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1785,7 +1785,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ManagementLockObject>>(); + var result = new AzureOperationResponse<Page<ManagementLock>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -1796,7 +1796,7 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLock>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1817,7 +1817,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtResourceLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLock>>> ListAtResourceLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1905,7 +1905,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ManagementLockObject>>(); + var result = new AzureOperationResponse<Page<ManagementLock>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -1916,7 +1916,7 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLock>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1937,7 +1937,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListNextNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLock>>> ListNextNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -2025,7 +2025,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ManagementLockObject>>(); + var result = new AzureOperationResponse<Page<ManagementLock>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -2036,7 +2036,7 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLock>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -2057,7 +2057,7 @@ internal ManagementLocksOperations(AuthorizationClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ManagementLockObject>>> ListAtSubscriptionLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ManagementLock>>> ListAtSubscriptionLevelNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -2145,7 +2145,7 @@ internal ManagementLocksOperations(AuthorizationClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ManagementLockObject>>(); + var result = new AzureOperationResponse<Page<ManagementLock>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -2156,7 +2156,7 @@ internal ManagementLocksOperations(AuthorizationClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ManagementLockObject>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ManagementLock>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs index a0bd4fe3c1fd4..89814eb02738c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs @@ -27,7 +27,7 @@ public static partial class ManagementLocksOperationsExtensions /// <param name='parameters'> /// The management lock parameters. /// </param> - public static ManagementLockObject CreateOrUpdateAtResourceGroupLevel(this IManagementLocksOperations operations, string resourceGroupName, string lockName, ManagementLockProperties parameters) + public static ManagementLock CreateOrUpdateAtResourceGroupLevel(this IManagementLocksOperations operations, string resourceGroupName, string lockName, ManagementLock parameters) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).CreateOrUpdateAtResourceGroupLevelAsync(resourceGroupName, lockName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -50,9 +50,9 @@ public static ManagementLockObject CreateOrUpdateAtResourceGroupLevel(this IMana /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockObject> CreateOrUpdateAtResourceGroupLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, string lockName, ManagementLockProperties parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<ManagementLock> CreateOrUpdateAtResourceGroupLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, string lockName, ManagementLock parameters, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockObject> result = await operations.CreateOrUpdateAtResourceGroupLevelWithHttpMessagesAsync(resourceGroupName, lockName, parameters, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<ManagementLock> result = await operations.CreateOrUpdateAtResourceGroupLevelWithHttpMessagesAsync(resourceGroupName, lockName, parameters, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -84,7 +84,7 @@ public static ManagementLockObject CreateOrUpdateAtResourceGroupLevel(this IMana /// <param name='parameters'> /// Create or update management lock parameters. /// </param> - public static ManagementLockObject CreateOrUpdateAtResourceLevel(this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLockProperties parameters) + public static ManagementLock CreateOrUpdateAtResourceLevel(this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLock parameters) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).CreateOrUpdateAtResourceLevelAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, lockName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -120,9 +120,9 @@ public static ManagementLockObject CreateOrUpdateAtResourceLevel(this IManagemen /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockObject> CreateOrUpdateAtResourceLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLockProperties parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<ManagementLock> CreateOrUpdateAtResourceLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string lockName, ManagementLock parameters, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockObject> result = await operations.CreateOrUpdateAtResourceLevelWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, lockName, parameters, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<ManagementLock> result = await operations.CreateOrUpdateAtResourceLevelWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, lockName, parameters, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -199,7 +199,7 @@ public static void DeleteAtResourceLevel(this IManagementLocksOperations operati /// <param name='parameters'> /// The management lock parameters. /// </param> - public static ManagementLockObject CreateOrUpdateAtSubscriptionLevel(this IManagementLocksOperations operations, string lockName, ManagementLockProperties parameters) + public static ManagementLock CreateOrUpdateAtSubscriptionLevel(this IManagementLocksOperations operations, string lockName, ManagementLock parameters) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).CreateOrUpdateAtSubscriptionLevelAsync(lockName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -219,9 +219,9 @@ public static ManagementLockObject CreateOrUpdateAtSubscriptionLevel(this IManag /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockObject> CreateOrUpdateAtSubscriptionLevelAsync( this IManagementLocksOperations operations, string lockName, ManagementLockProperties parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<ManagementLock> CreateOrUpdateAtSubscriptionLevelAsync( this IManagementLocksOperations operations, string lockName, ManagementLock parameters, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockObject> result = await operations.CreateOrUpdateAtSubscriptionLevelWithHttpMessagesAsync(lockName, parameters, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<ManagementLock> result = await operations.CreateOrUpdateAtSubscriptionLevelWithHttpMessagesAsync(lockName, parameters, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -265,7 +265,7 @@ public static void DeleteAtSubscriptionLevel(this IManagementLocksOperations ope /// <param name='lockName'> /// Name of the management lock. /// </param> - public static ManagementLockObject Get(this IManagementLocksOperations operations, string lockName) + public static ManagementLock Get(this IManagementLocksOperations operations, string lockName) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).GetAsync(lockName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -282,9 +282,9 @@ public static ManagementLockObject Get(this IManagementLocksOperations operation /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ManagementLockObject> GetAsync( this IManagementLocksOperations operations, string lockName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<ManagementLock> GetAsync( this IManagementLocksOperations operations, string lockName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ManagementLockObject> result = await operations.GetWithHttpMessagesAsync(lockName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<ManagementLock> result = await operations.GetWithHttpMessagesAsync(lockName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -337,7 +337,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='filter'> /// The filter to apply on the operation. /// </param> - public static Page<ManagementLockObject> ListAtResourceGroupLevel(this IManagementLocksOperations operations, string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) + public static Page<ManagementLock> ListAtResourceGroupLevel(this IManagementLocksOperations operations, string resourceGroupName, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>)) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceGroupLevelAsync(resourceGroupName, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -357,9 +357,9 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ManagementLockObject>> ListAtResourceGroupLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLock>> ListAtResourceGroupLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtResourceGroupLevelWithHttpMessagesAsync(resourceGroupName, filter, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLock>> result = await operations.ListAtResourceGroupLevelWithHttpMessagesAsync(resourceGroupName, filter, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -387,7 +387,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='filter'> /// The filter to apply on the operation. /// </param> - public static Page<ManagementLockObject> ListAtResourceLevel(this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) + public static Page<ManagementLock> ListAtResourceLevel(this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>)) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceLevelAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -419,9 +419,9 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ManagementLockObject>> ListAtResourceLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLock>> ListAtResourceLevelAsync( this IManagementLocksOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtResourceLevelWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, filter, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLock>> result = await operations.ListAtResourceLevelWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, filter, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -434,7 +434,7 @@ public static void DeleteAtResourceGroupLevel(this IManagementLocksOperations op /// <param name='nextLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static Page<ManagementLockObject> ListNext(this IManagementLocksOperations operations, string nextLink) + public static Page<ManagementLock> ListNext(this IManagementLocksOperations operations, string nextLink) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListNextAsync(nextLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -451,9 +451,9 @@ public static Page<ManagementLockObject> ListNext(this IManagementLocksOperation /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ManagementLockObject>> ListNextAsync( this IManagementLocksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLock>> ListNextAsync( this IManagementLocksOperations operations, string nextLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLock>> result = await operations.ListNextWithHttpMessagesAsync(nextLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -466,7 +466,7 @@ public static Page<ManagementLockObject> ListNext(this IManagementLocksOperation /// <param name='filter'> /// The filter to apply on the operation. /// </param> - public static Page<ManagementLockObject> ListAtSubscriptionLevel(this IManagementLocksOperations operations, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>)) + public static Page<ManagementLock> ListAtSubscriptionLevel(this IManagementLocksOperations operations, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>)) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtSubscriptionLevelAsync(filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -483,9 +483,9 @@ public static Page<ManagementLockObject> ListNext(this IManagementLocksOperation /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ManagementLockObject>> ListAtSubscriptionLevelAsync( this IManagementLocksOperations operations, Expression<Func<ManagementLockObject, bool>> filter = default(Expression<Func<ManagementLockObject, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLock>> ListAtSubscriptionLevelAsync( this IManagementLocksOperations operations, Expression<Func<ManagementLock, bool>> filter = default(Expression<Func<ManagementLock, bool>>), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtSubscriptionLevelWithHttpMessagesAsync(filter, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLock>> result = await operations.ListAtSubscriptionLevelWithHttpMessagesAsync(filter, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -498,7 +498,7 @@ public static Page<ManagementLockObject> ListNext(this IManagementLocksOperation /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static Page<ManagementLockObject> ListAtResourceGroupLevelNext(this IManagementLocksOperations operations, string nextPageLink) + public static Page<ManagementLock> ListAtResourceGroupLevelNext(this IManagementLocksOperations operations, string nextPageLink) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceGroupLevelNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -515,9 +515,9 @@ public static Page<ManagementLockObject> ListAtResourceGroupLevelNext(this IMana /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ManagementLockObject>> ListAtResourceGroupLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLock>> ListAtResourceGroupLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtResourceGroupLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLock>> result = await operations.ListAtResourceGroupLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -530,7 +530,7 @@ public static Page<ManagementLockObject> ListAtResourceGroupLevelNext(this IMana /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static Page<ManagementLockObject> ListAtResourceLevelNext(this IManagementLocksOperations operations, string nextPageLink) + public static Page<ManagementLock> ListAtResourceLevelNext(this IManagementLocksOperations operations, string nextPageLink) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtResourceLevelNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -547,9 +547,9 @@ public static Page<ManagementLockObject> ListAtResourceLevelNext(this IManagemen /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ManagementLockObject>> ListAtResourceLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLock>> ListAtResourceLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtResourceLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLock>> result = await operations.ListAtResourceLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -562,7 +562,7 @@ public static Page<ManagementLockObject> ListAtResourceLevelNext(this IManagemen /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static Page<ManagementLockObject> ListNextNext(this IManagementLocksOperations operations, string nextPageLink) + public static Page<ManagementLock> ListNextNext(this IManagementLocksOperations operations, string nextPageLink) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListNextNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -579,9 +579,9 @@ public static Page<ManagementLockObject> ListNextNext(this IManagementLocksOpera /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ManagementLockObject>> ListNextNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLock>> ListNextNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListNextNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLock>> result = await operations.ListNextNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -594,7 +594,7 @@ public static Page<ManagementLockObject> ListNextNext(this IManagementLocksOpera /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static Page<ManagementLockObject> ListAtSubscriptionLevelNext(this IManagementLocksOperations operations, string nextPageLink) + public static Page<ManagementLock> ListAtSubscriptionLevelNext(this IManagementLocksOperations operations, string nextPageLink) { return Task.Factory.StartNew(s => ((IManagementLocksOperations)s).ListAtSubscriptionLevelNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -611,9 +611,9 @@ public static Page<ManagementLockObject> ListAtSubscriptionLevelNext(this IManag /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ManagementLockObject>> ListAtSubscriptionLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ManagementLock>> ListAtSubscriptionLevelNextAsync( this IManagementLocksOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ManagementLockObject>> result = await operations.ListAtSubscriptionLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ManagementLock>> result = await operations.ListAtSubscriptionLevelNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockObject.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLock.cs similarity index 72% rename from src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockObject.cs rename to src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLock.cs index 4d3867b7bc18f..761df295d6ba5 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockObject.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLock.cs @@ -10,7 +10,7 @@ namespace Microsoft.Azure.Management.Resources.Models /// <summary> /// Management lock information. /// </summary> - public partial class ManagementLockObject + public partial class ManagementLock { /// <summary> /// Gets or sets the properties of the lock. @@ -19,22 +19,22 @@ public partial class ManagementLockObject public ManagementLockProperties Properties { get; set; } /// <summary> - /// Gets or sets the Id of the lock. + /// Gets the Id of the lock. /// </summary> [JsonProperty(PropertyName = "id")] - public string Id { get; set; } + public string Id { get; private set; } /// <summary> - /// Gets or sets the type of the lock. + /// Gets the type of the lock. /// </summary> [JsonProperty(PropertyName = "type")] - public string Type { get; set; } + public string Type { get; private set; } /// <summary> - /// Gets or sets the name of the lock. + /// Gets the name of the lock. /// </summary> [JsonProperty(PropertyName = "name")] - public string Name { get; set; } + public string Name { get; private set; } } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs index 74541701d2cc7..0d95d2ab78a4e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs @@ -12,6 +12,23 @@ namespace Microsoft.Azure.Management.Resources.Models /// </summary> public partial class ResourceGroup { + /// <summary> + /// Gets the ID of the resource group. + /// </summary> + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// <summary> + /// Gets or sets the Name of the resource group. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// <summary> + /// </summary> + [JsonProperty(PropertyName = "properties")] + public ResourceGroupProperties Properties { get; set; } + /// <summary> /// Gets or sets the location of the resource group. It cannot be /// changed after the resource group has been created. Has to be one @@ -21,23 +38,11 @@ public partial class ResourceGroup [JsonProperty(PropertyName = "location")] public string Location { get; set; } - /// <summary> - /// Gets or sets the resource group properties. - /// </summary> - [JsonProperty(PropertyName = "properties")] - public object Properties { get; set; } - /// <summary> /// Gets or sets the tags attached to the resource group. /// </summary> [JsonProperty(PropertyName = "tags")] public IDictionary<string, string> Tags { get; set; } - /// <summary> - /// Gets or sets resource group provisioning state. - /// </summary> - [JsonProperty(PropertyName = "provisioningState")] - public string ProvisioningState { get; set; } - } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtended.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtended.cs deleted file mode 100644 index c3a568baf808d..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtended.cs +++ /dev/null @@ -1,54 +0,0 @@ -namespace Microsoft.Azure.Management.Resources.Models -{ - using System; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - /// <summary> - /// Resource group information. - /// </summary> - public partial class ResourceGroupExtended - { - /// <summary> - /// Gets or sets the ID of the resource group. - /// </summary> - [JsonProperty(PropertyName = "id")] - public string Id { get; set; } - - /// <summary> - /// Gets or sets the Name of the resource group. - /// </summary> - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// <summary> - /// </summary> - [JsonProperty(PropertyName = "properties")] - public ResourceGroupFormatResourceProperties Properties { get; set; } - - /// <summary> - /// Gets or sets the location of the resource group. It cannot be - /// changed after the resource group has been created. Has to be one - /// of the supported Azure Locations, such as West US, East US, West - /// Europe, East Asia, etc. - /// </summary> - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } - - /// <summary> - /// Gets or sets the tags attached to the resource group. - /// </summary> - [JsonProperty(PropertyName = "tags")] - public IDictionary<string, string> Tags { get; set; } - - /// <summary> - /// Gets or sets resource group provisioning state. - /// </summary> - [JsonProperty(PropertyName = "provisioningState")] - public string ProvisioningState { get; set; } - - } -} diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtendedFilter.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFilter.cs similarity index 92% rename from src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtendedFilter.cs rename to src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFilter.cs index 0579954c067f8..2edf452bfb583 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupExtendedFilter.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFilter.cs @@ -10,7 +10,7 @@ namespace Microsoft.Azure.Management.Resources.Models /// <summary> /// Resource group filter. /// </summary> - public partial class ResourceGroupExtendedFilter + public partial class ResourceGroupFilter { /// <summary> /// Gets or sets the tag name. diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFormatResourceProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupProperties.cs similarity index 70% rename from src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFormatResourceProperties.cs rename to src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupProperties.cs index 134426abe34a3..12c0bb39b7c2a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFormatResourceProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupProperties.cs @@ -10,13 +10,13 @@ namespace Microsoft.Azure.Management.Resources.Models /// <summary> /// The resource group properties. /// </summary> - public partial class ResourceGroupFormatResourceProperties + public partial class ResourceGroupProperties { /// <summary> - /// Gets or sets resource group provisioning state. + /// Gets resource group provisioning state. /// </summary> [JsonProperty(PropertyName = "provisioningState")] - public string ProvisioningState { get; set; } + public string ProvisioningState { get; private set; } } } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs index 0218c88aa1b8d..abc821d68d73a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs @@ -283,7 +283,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NotFound") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NotFound"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -317,6 +317,32 @@ internal ResourceGroupsOperations(ResourceManagementClient client) return result; } + /// <summary> + /// Create a resource group. + /// </summary> + /// <param name='resourceGroupName'> + /// The name of the resource group to be created or updated. + /// </param> + /// <param name='parameters'> + /// Parameters supplied to the create or update resource group service + /// operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + public async Task<AzureOperationResponse<ResourceGroup>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse<ResourceGroup> response = await BeginCreateOrUpdateWithHttpMessagesAsync( + resourceGroupName, parameters, customHeaders, cancellationToken); + return await this.Client.GetPutOrPatchOperationResultAsync<ResourceGroup>(response, + customHeaders, + cancellationToken); + } + /// <summary> /// Create a resource group. /// </summary> @@ -333,7 +359,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceGroupExtended>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<ResourceGroup>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -361,7 +387,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL string url = this.Client.BaseUri.AbsoluteUri + @@ -425,7 +451,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created") || 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); @@ -444,7 +470,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceGroupExtended>(); + var result = new AzureOperationResponse<ResourceGroup>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -455,13 +481,13 @@ internal ResourceGroupsOperations(ResourceManagementClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceGroupExtended>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ResourceGroup>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceGroupExtended>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ResourceGroup>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -625,7 +651,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceGroupExtended>> GetWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<ResourceGroup>> GetWithHttpMessagesAsync(string resourceGroupName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -727,7 +753,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceGroupExtended>(); + var result = new AzureOperationResponse<ResourceGroup>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -738,7 +764,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceGroupExtended>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ResourceGroup>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -766,7 +792,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<ResourceGroupExtended>> PatchWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<ResourceGroup>> PatchWithHttpMessagesAsync(string resourceGroupName, ResourceGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -877,7 +903,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<ResourceGroupExtended>(); + var result = new AzureOperationResponse<ResourceGroup>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -888,7 +914,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<ResourceGroupExtended>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<ResourceGroup>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -912,7 +938,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ResourceGroupExtended>>> ListWithHttpMessagesAsync(Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ResourceGroup>>> ListWithHttpMessagesAsync(Expression<Func<ResourceGroupFilter, bool>> filter = default(Expression<Func<ResourceGroupFilter, bool>>), int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.ApiVersion == null) { @@ -1018,7 +1044,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ResourceGroupExtended>>(); + var result = new AzureOperationResponse<Page<ResourceGroup>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -1029,7 +1055,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ResourceGroupExtended>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ResourceGroup>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { @@ -1170,7 +1196,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<Page<ResourceGroupExtended>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<Page<ResourceGroup>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1258,7 +1284,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var result = new AzureOperationResponse<Page<ResourceGroupExtended>>(); + var result = new AzureOperationResponse<Page<ResourceGroup>>(); result.Request = httpRequest; result.Response = httpResponse; if (httpResponse.Headers.Contains("x-ms-request-id")) @@ -1269,7 +1295,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - result.Body = JsonConvert.DeserializeObject<Page<ResourceGroupExtended>>(responseContent, this.Client.DeserializationSettings); + result.Body = JsonConvert.DeserializeObject<Page<ResourceGroup>>(responseContent, this.Client.DeserializationSettings); } if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs index 4e0069997360d..773f8e8c0820c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs @@ -101,7 +101,7 @@ public static partial class ResourceGroupsOperationsExtensions /// Parameters supplied to the create or update resource group service /// operation. /// </param> - public static ResourceGroupExtended CreateOrUpdate(this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters) + public static ResourceGroup CreateOrUpdate(this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters) { return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).CreateOrUpdateAsync(resourceGroupName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -122,9 +122,49 @@ public static ResourceGroupExtended CreateOrUpdate(this IResourceGroupsOperation /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceGroupExtended> CreateOrUpdateAsync( this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<ResourceGroup> CreateOrUpdateAsync( this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceGroupExtended> result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, parameters, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<ResourceGroup> result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, parameters, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Create a resource group. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The name of the resource group to be created or updated. + /// </param> + /// <param name='parameters'> + /// Parameters supplied to the create or update resource group service + /// operation. + /// </param> + public static ResourceGroup BeginCreateOrUpdate(this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters) + { + return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Create a resource group. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The name of the resource group to be created or updated. + /// </param> + /// <param name='parameters'> + /// Parameters supplied to the create or update resource group service + /// operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<ResourceGroup> BeginCreateOrUpdateAsync( this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<ResourceGroup> result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, parameters, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -203,7 +243,7 @@ public static void BeginDelete(this IResourceGroupsOperations operations, string /// <param name='resourceGroupName'> /// The name of the resource group to get. The name is case insensitive. /// </param> - public static ResourceGroupExtended Get(this IResourceGroupsOperations operations, string resourceGroupName) + public static ResourceGroup Get(this IResourceGroupsOperations operations, string resourceGroupName) { return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).GetAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -220,9 +260,9 @@ public static ResourceGroupExtended Get(this IResourceGroupsOperations operation /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceGroupExtended> GetAsync( this IResourceGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<ResourceGroup> GetAsync( this IResourceGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceGroupExtended> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<ResourceGroup> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -242,7 +282,7 @@ public static ResourceGroupExtended Get(this IResourceGroupsOperations operation /// <param name='parameters'> /// Parameters supplied to the update state resource group service operation. /// </param> - public static ResourceGroupExtended Patch(this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters) + public static ResourceGroup Patch(this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters) { return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).PatchAsync(resourceGroupName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -266,9 +306,9 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<ResourceGroupExtended> PatchAsync( this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<ResourceGroup> PatchAsync( this IResourceGroupsOperations operations, string resourceGroupName, ResourceGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<ResourceGroupExtended> result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, parameters, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<ResourceGroup> result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, parameters, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -284,7 +324,7 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// <param name='top'> /// Query parameters. If null is passed returns all resource groups. /// </param> - public static Page<ResourceGroupExtended> List(this IResourceGroupsOperations operations, Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?)) + public static Page<ResourceGroup> List(this IResourceGroupsOperations operations, Expression<Func<ResourceGroupFilter, bool>> filter = default(Expression<Func<ResourceGroupFilter, bool>>), int? top = default(int?)) { return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).ListAsync(filter, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -304,9 +344,9 @@ public static ResourceGroupExtended Patch(this IResourceGroupsOperations operati /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ResourceGroupExtended>> ListAsync( this IResourceGroupsOperations operations, Expression<Func<ResourceGroupExtendedFilter, bool>> filter = default(Expression<Func<ResourceGroupExtendedFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ResourceGroup>> ListAsync( this IResourceGroupsOperations operations, Expression<Func<ResourceGroupFilter, bool>> filter = default(Expression<Func<ResourceGroupFilter, bool>>), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ResourceGroupExtended>> result = await operations.ListWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ResourceGroup>> result = await operations.ListWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false); return result.Body; } @@ -351,7 +391,7 @@ public static Page<GenericResource> ListResourcesNext(this IResourceGroupsOperat /// <param name='nextPageLink'> /// NextLink from the previous successful call to List operation. /// </param> - public static Page<ResourceGroupExtended> ListNext(this IResourceGroupsOperations operations, string nextPageLink) + public static Page<ResourceGroup> ListNext(this IResourceGroupsOperations operations, string nextPageLink) { return Task.Factory.StartNew(s => ((IResourceGroupsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } @@ -368,9 +408,9 @@ public static Page<ResourceGroupExtended> ListNext(this IResourceGroupsOperation /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public static async Task<Page<ResourceGroupExtended>> ListNextAsync( this IResourceGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task<Page<ResourceGroup>> ListNextAsync( this IResourceGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - AzureOperationResponse<Page<ResourceGroupExtended>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + AzureOperationResponse<Page<ResourceGroup>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); return result.Body; } diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs index 087f22e1d31a4..f6c20c753be78 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs @@ -136,7 +136,7 @@ internal ResourceProviderOperationDetailsOperations(ResourceManagementClient cli } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -163,13 +163,13 @@ internal ResourceProviderOperationDetailsOperations(ResourceManagementClient cli result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); result.Body = JsonConvert.DeserializeObject<ResourceProviderOperationDetailListResult>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); result.Body = JsonConvert.DeserializeObject<ResourceProviderOperationDetailListResult>(responseContent, this.Client.DeserializationSettings); diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs index c62b867942a6a..550408d4ab029 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs @@ -614,7 +614,7 @@ internal ResourcesOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || 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), "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; @@ -640,6 +640,45 @@ internal ResourcesOperations(ResourceManagementClient client) return result; } + /// <summary> + /// Create a resource. + /// </summary> + /// <param name='resourceGroupName'> + /// The name of the resource group. The name is case insensitive. + /// </param> + /// <param name='resourceProviderNamespace'> + /// Resource identity. + /// </param> + /// <param name='parentResourcePath'> + /// Resource identity. + /// </param> + /// <param name='resourceType'> + /// Resource identity. + /// </param> + /// <param name='resourceName'> + /// Resource identity. + /// </param> + /// <param name='apiVersion'> + /// </param> + /// <param name='parameters'> + /// Create or update resource parameters. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + public async Task<AzureOperationResponse<GenericResource>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, GenericResource parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse<GenericResource> response = await BeginCreateOrUpdateWithHttpMessagesAsync( + resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, apiVersion, parameters, customHeaders, cancellationToken); + return await this.Client.GetPutOrPatchOperationResultAsync<GenericResource>(response, + customHeaders, + cancellationToken); + } + /// <summary> /// Create a resource. /// </summary> @@ -669,7 +708,7 @@ internal ResourcesOperations(ResourceManagementClient client) /// <param name='cancellationToken'> /// Cancellation token. /// </param> - public async Task<AzureOperationResponse<GenericResource>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, GenericResource parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task<AzureOperationResponse<GenericResource>> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, GenericResource parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -722,7 +761,7 @@ internal ResourcesOperations(ResourceManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL string url = this.Client.BaseUri.AbsoluteUri + @@ -790,7 +829,7 @@ internal ResourcesOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -969,7 +1008,7 @@ internal ResourcesOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -996,13 +1035,13 @@ internal ResourcesOperations(ResourceManagementClient client) result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); result.Body = JsonConvert.DeserializeObject<GenericResource>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); result.Body = JsonConvert.DeserializeObject<GenericResource>(responseContent, this.Client.DeserializationSettings); diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs index 20c466a1b4d71..c9d077960e99f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs @@ -272,6 +272,72 @@ public static GenericResource CreateOrUpdate(this IResourcesOperations operation return result.Body; } + /// <summary> + /// Create a resource. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The name of the resource group. The name is case insensitive. + /// </param> + /// <param name='resourceProviderNamespace'> + /// Resource identity. + /// </param> + /// <param name='parentResourcePath'> + /// Resource identity. + /// </param> + /// <param name='resourceType'> + /// Resource identity. + /// </param> + /// <param name='resourceName'> + /// Resource identity. + /// </param> + /// <param name='apiVersion'> + /// </param> + /// <param name='parameters'> + /// Create or update resource parameters. + /// </param> + public static GenericResource BeginCreateOrUpdate(this IResourcesOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, GenericResource parameters) + { + return Task.Factory.StartNew(s => ((IResourcesOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, apiVersion, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Create a resource. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The name of the resource group. The name is case insensitive. + /// </param> + /// <param name='resourceProviderNamespace'> + /// Resource identity. + /// </param> + /// <param name='parentResourcePath'> + /// Resource identity. + /// </param> + /// <param name='resourceType'> + /// Resource identity. + /// </param> + /// <param name='resourceName'> + /// Resource identity. + /// </param> + /// <param name='apiVersion'> + /// </param> + /// <param name='parameters'> + /// Create or update resource parameters. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<GenericResource> BeginCreateOrUpdateAsync( this IResourcesOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, GenericResource parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<GenericResource> result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, apiVersion, parameters, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + /// <summary> /// Returns a resource belonging to a resource group. /// </summary> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs index 9223ee751a4e5..ec0e6ad4b772b 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs @@ -142,7 +142,7 @@ internal TagsOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); ex.Request = httpRequest; @@ -272,7 +272,7 @@ internal TagsOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -299,13 +299,13 @@ internal TagsOperations(ResourceManagementClient client) result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); result.Body = JsonConvert.DeserializeObject<TagValue>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); result.Body = JsonConvert.DeserializeObject<TagValue>(responseContent, this.Client.DeserializationSettings); @@ -412,7 +412,7 @@ internal TagsOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); @@ -439,13 +439,13 @@ internal TagsOperations(ResourceManagementClient client) result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); result.Body = JsonConvert.DeserializeObject<TagDetails>(responseContent, this.Client.DeserializationSettings); } // Deserialize Response - if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); result.Body = JsonConvert.DeserializeObject<TagDetails>(responseContent, this.Client.DeserializationSettings); @@ -552,7 +552,7 @@ internal TagsOperations(ResourceManagementClient client) } HttpStatusCode statusCode = httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); - if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); ex.Request = httpRequest; diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClient.json b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClient.json index 55d830458133c..4608a37609fb7 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClient.json +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClient.json @@ -219,10 +219,10 @@ } ], "responses": { - "404": { + "204": { "description": "" }, - "204": { + "404": { "description": "" } } @@ -261,16 +261,20 @@ "201": { "description": "", "schema": { - "$ref": "#/definitions/ResourceGroupExtended" + "$ref": "#/definitions/ResourceGroup" } }, "200": { "description": "", "schema": { - "$ref": "#/definitions/ResourceGroupExtended" + "$ref": "#/definitions/ResourceGroup" } + }, + "202": { + "description": "" } - } + }, + "x-ms-long-running-operation": true }, "delete": { "tags": [ @@ -328,7 +332,7 @@ "200": { "description": "", "schema": { - "$ref": "#/definitions/ResourceGroupExtended" + "$ref": "#/definitions/ResourceGroup" } } } @@ -367,7 +371,7 @@ "200": { "description": "", "schema": { - "$ref": "#/definitions/ResourceGroupExtended" + "$ref": "#/definitions/ResourceGroup" } } } @@ -412,7 +416,7 @@ } }, "x-ms-pageable": true, - "x-ms-odata": "#/definitions/ResourceGroupExtendedFilter" + "x-ms-odata": "#/definitions/ResourceGroupFilter" } }, "/subscriptions/{subscriptionId}/resourceGroups/{sourceResourceGroupName}/moveResources": { @@ -614,13 +618,13 @@ } ], "responses": { - "204": { + "200": { "description": "" }, - "202": { + "204": { "description": "" }, - "200": { + "202": { "description": "" } } @@ -695,13 +699,17 @@ "$ref": "#/definitions/GenericResource" } }, + "202": { + "description": "" + }, "200": { "description": "", "schema": { "$ref": "#/definitions/GenericResource" } } - } + }, + "x-ms-long-running-operation": true }, "get": { "tags": [ @@ -758,13 +766,13 @@ } ], "responses": { - "204": { + "200": { "description": "", "schema": { "$ref": "#/definitions/GenericResource" } }, - "200": { + "204": { "description": "", "schema": { "$ref": "#/definitions/GenericResource" @@ -803,10 +811,10 @@ } ], "responses": { - "204": { + "200": { "description": "" }, - "200": { + "204": { "description": "" } } @@ -840,13 +848,13 @@ } ], "responses": { - "201": { + "200": { "description": "", "schema": { "$ref": "#/definitions/TagValue" } }, - "200": { + "201": { "description": "", "schema": { "$ref": "#/definitions/TagValue" @@ -878,13 +886,13 @@ } ], "responses": { - "201": { + "200": { "description": "", "schema": { "$ref": "#/definitions/TagDetails" } }, - "200": { + "201": { "description": "", "schema": { "$ref": "#/definitions/TagDetails" @@ -914,10 +922,10 @@ } ], "responses": { - "204": { + "200": { "description": "" }, - "200": { + "204": { "description": "" } } @@ -1069,13 +1077,13 @@ } ], "responses": { - "204": { + "200": { "description": "", "schema": { "$ref": "#/definitions/ResourceProviderOperationDetailListResult" } }, - "200": { + "204": { "description": "", "schema": { "$ref": "#/definitions/ResourceProviderOperationDetailListResult" @@ -1342,7 +1350,7 @@ }, "description": "Resource filter." }, - "ResourceGroupExtendedFilter": { + "ResourceGroupFilter": { "properties": { "tagName": { "type": "string", @@ -1480,51 +1488,29 @@ }, "description": "List of resource groups." }, - "ResourceGroup": { - "properties": { - "location": { - "type": "string", - "description": "Gets or sets the location of the resource group. It cannot be changed after the resource group has been created. Has to be one of the supported Azure Locations, such as West US, East US, West Europe, East Asia, etc." - }, - "properties": { - "type": "object", - "description": "Gets or sets the resource group properties." - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Gets or sets the tags attached to the resource group." - }, - "provisioningState": { - "type": "string", - "description": "Gets or sets resource group provisioning state." - } - }, - "description": "Resource group information." - }, - "ResourceGroupFormatResourceProperties": { + "ResourceGroupProperties": { "properties": { "provisioningState": { + "readOnly": true, "type": "string", - "description": "Gets or sets resource group provisioning state." + "description": "Gets resource group provisioning state." } }, "description": "The resource group properties." }, - "ResourceGroupExtended": { + "ResourceGroup": { "properties": { "id": { + "readOnly": true, "type": "string", - "description": "Gets or sets the ID of the resource group." + "description": "Gets the ID of the resource group." }, "name": { "type": "string", "description": "Gets or sets the Name of the resource group." }, "properties": { - "$ref": "#/definitions/ResourceGroupFormatResourceProperties" + "$ref": "#/definitions/ResourceGroupProperties" }, "location": { "type": "string", @@ -1536,10 +1522,6 @@ "type": "string" }, "description": "Gets or sets the tags attached to the resource group." - }, - "provisioningState": { - "type": "string", - "description": "Gets or sets resource group provisioning state." } }, "description": "Resource group information." @@ -1549,7 +1531,7 @@ "value": { "type": "array", "items": { - "$ref": "#/definitions/ResourceGroupExtended" + "$ref": "#/definitions/ResourceGroup" }, "description": "Gets or sets the list of resource groups." }, diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClientOData.json b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClientOData.json deleted file mode 100644 index a96ab695d6fba..0000000000000 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagementClientOData.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "definitions": { - "GenericResourceFilter": { - "properties": { - "resourceType": { - "type": "string", - "description": "Gets or sets the type of the resource." - }, - "tagname": { - "type": "string", - "description": "Gets or sets the tag name." - }, - "tagvalue": { - "type": "string", - "description": "Gets or sets the tag value." - } - }, - "description": "Resource filter." - } - } -} \ No newline at end of file diff --git a/src/ResourceManagement/Resource/ResourceManagement/SubscriptionClient.json b/src/ResourceManagement/Resource/ResourceManagement/SubscriptionClient.json index 7db4ae2816e19..b8ef2159628fe 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/SubscriptionClient.json +++ b/src/ResourceManagement/Resource/ResourceManagement/SubscriptionClient.json @@ -126,7 +126,7 @@ }, "description": "Resource filter." }, - "ResourceGroupExtendedFilter": { + "ResourceGroupFilter": { "properties": { "tagName": { "type": "string", diff --git a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceTests.InMemory.cs b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceTests.InMemory.cs index e86290a5b643b..8651a95a3930c 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceTests.InMemory.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/InMemoryTests/ResourceTests.InMemory.cs @@ -52,7 +52,7 @@ public void ResourceGetValidateMessage() 'name':'site1', 'siteMode': 'Standard', 'computeMode':'Dedicated', - 'provisioningState':'Running' + 'provisioningState':'Succeeded' } }") }; @@ -71,7 +71,7 @@ public void ResourceGetValidateMessage() Assert.Equal("site1", result.Name); Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.Id); Assert.True(result.Properties.ToString().Contains("Dedicated")); - Assert.Equal("Running", (result.Properties as JObject)["provisioningState"]); + Assert.Equal("Succeeded", (result.Properties as JObject)["provisioningState"]); } [Fact] @@ -137,7 +137,7 @@ public void ResourceListValidateMessage() 'name':'site1', 'siteMode': 'Standard', 'computeMode':'Dedicated', - 'provisioningState':'Running' + 'provisioningState':'Succeeded' } }, { @@ -175,7 +175,7 @@ public void ResourceListValidateMessage() Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.First().Id); Assert.Equal("/subscriptions/12345/resourceGroups/foo/providers/Microsoft.Web/Sites/site1", result.First().Id); Assert.True(result.First().Properties.ToString().Contains("Dedicated")); - Assert.Equal("Running", (result.First().Properties as JObject)["provisioningState"]); + Assert.Equal("Succeeded", (result.First().Properties as JObject)["provisioningState"]); } [Fact] @@ -242,7 +242,7 @@ public void ResourceCreateOrUpdateValidateMessage() 'name':'site3', 'siteMode': 'Standard', 'computeMode':'Dedicated', - 'provisioningState':'Running' + 'provisioningState':'Succeeded' } }") }; @@ -282,7 +282,7 @@ public void ResourceCreateOrUpdateValidateMessage() // Validate result Assert.Equal("South Central US", result.Location); - Assert.Equal("Running", (result.Properties as JObject)["provisioningState"]); + Assert.Equal("Succeeded", (result.Properties as JObject)["provisioningState"]); Assert.Equal("finance", result.Tags["department"]); Assert.Equal("tagvalue", result.Tags["tagname"]); Assert.True(result.Properties.ToString().Contains("Dedicated")); diff --git a/src/ResourceManagement/Sql/NuGet.Config b/src/ResourceManagement/Sql/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/Sql/NuGet.Config +++ b/src/ResourceManagement/Sql/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/Storage/NuGet.Config b/src/ResourceManagement/Storage/NuGet.Config index dcff8ff3ab0e9..4f17a255bb2f9 100644 --- a/src/ResourceManagement/Storage/NuGet.Config +++ b/src/ResourceManagement/Storage/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> \ No newline at end of file diff --git a/src/ResourceManagement/StreamAnalytics/NuGet.Config b/src/ResourceManagement/StreamAnalytics/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/StreamAnalytics/NuGet.Config +++ b/src/ResourceManagement/StreamAnalytics/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/TrafficManager/NuGet.Config b/src/ResourceManagement/TrafficManager/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/TrafficManager/NuGet.Config +++ b/src/ResourceManagement/TrafficManager/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ResourceManagement/WebSite/NuGet.Config b/src/ResourceManagement/WebSite/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ResourceManagement/WebSite/NuGet.Config +++ b/src/ResourceManagement/WebSite/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/Search/NuGet.Config b/src/Search/NuGet.Config index edafa204a2dd4..2de911013532a 100644 --- a/src/Search/NuGet.Config +++ b/src/Search/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Automation/NuGet.Config b/src/ServiceManagement/Automation/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Automation/NuGet.Config +++ b/src/ServiceManagement/Automation/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Compute/NuGet.Config b/src/ServiceManagement/Compute/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Compute/NuGet.Config +++ b/src/ServiceManagement/Compute/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/ExpressRoute/NuGet.Config b/src/ServiceManagement/ExpressRoute/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/ExpressRoute/NuGet.Config +++ b/src/ServiceManagement/ExpressRoute/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Management/NuGet.Config b/src/ServiceManagement/Management/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Management/NuGet.Config +++ b/src/ServiceManagement/Management/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/MediaServices/NuGet.Config b/src/ServiceManagement/MediaServices/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/MediaServices/NuGet.Config +++ b/src/ServiceManagement/MediaServices/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Monitoring/NuGet.Config b/src/ServiceManagement/Monitoring/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Monitoring/NuGet.Config +++ b/src/ServiceManagement/Monitoring/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Network/NuGet.Config b/src/ServiceManagement/Network/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Network/NuGet.Config +++ b/src/ServiceManagement/Network/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/RemoteApp/NuGet.Config b/src/ServiceManagement/RemoteApp/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/RemoteApp/NuGet.Config +++ b/src/ServiceManagement/RemoteApp/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Scheduler/NuGet.Config b/src/ServiceManagement/Scheduler/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Scheduler/NuGet.Config +++ b/src/ServiceManagement/Scheduler/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/ServiceBus/NuGet.Config b/src/ServiceManagement/ServiceBus/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/ServiceBus/NuGet.Config +++ b/src/ServiceManagement/ServiceBus/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/SiteRecovery/NuGet.Config b/src/ServiceManagement/SiteRecovery/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/SiteRecovery/NuGet.Config +++ b/src/ServiceManagement/SiteRecovery/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Sql/NuGet.Config b/src/ServiceManagement/Sql/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Sql/NuGet.Config +++ b/src/ServiceManagement/Sql/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/StorSimple/NuGet.Config b/src/ServiceManagement/StorSimple/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/StorSimple/NuGet.Config +++ b/src/ServiceManagement/StorSimple/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Storage/NuGet.Config b/src/ServiceManagement/Storage/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Storage/NuGet.Config +++ b/src/ServiceManagement/Storage/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/Store/NuGet.Config b/src/ServiceManagement/Store/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/Store/NuGet.Config +++ b/src/ServiceManagement/Store/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/TrafficManager/NuGet.Config b/src/ServiceManagement/TrafficManager/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/TrafficManager/NuGet.Config +++ b/src/ServiceManagement/TrafficManager/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> diff --git a/src/ServiceManagement/WebSite/NuGet.Config b/src/ServiceManagement/WebSite/NuGet.Config index dcff8ff3ab0e9..ffd4ee71e6421 100644 --- a/src/ServiceManagement/WebSite/NuGet.Config +++ b/src/ServiceManagement/WebSite/NuGet.Config @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<settings> - <repositoryPath>..\..\..\packages</repositoryPath> -</settings> +<configuration> + <config> + <add key="repositorypath" value="..\..\..\packages" /> + </config> +</configuration> From a0780a614e19a0197a01028a9e4016bcec203483 Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Mon, 27 Jul 2015 14:40:36 -0700 Subject: [PATCH 26/34] Fixed Compute test --- .../Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs index bb54c3a71a57c..ed009b203f06d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs +++ b/src/ResourceManagement/Compute/Compute.Tests/ScenarioTests/AvailabilitySetTests.cs @@ -33,7 +33,7 @@ public class AvailabilitySetTests ComputeManagementClient computeClient; ResourceManagementClient resourcesClient; - ResourceGroupExtended resourceGroup; + ResourceGroup resourceGroup; string subId; string location; From 11a8e76b816ade31a8906e5a39e1e14d42f13067 Mon Sep 17 00:00:00 2001 From: yugangw-msft <yugangw@microsoft.com> Date: Mon, 27 Jul 2015 14:55:51 -0700 Subject: [PATCH 27/34] add generate command file for storage library --- .../Resource/ResourceManagement/generate.cmd | 16 + .../StorageManagementClient.json | 704 ------------------ .../Storage/StorageManagement/generate.cmd | 14 + 3 files changed, 30 insertions(+), 704 deletions(-) create mode 100644 src/ResourceManagement/Resource/ResourceManagement/generate.cmd delete mode 100644 src/ResourceManagement/Storage/StorageManagement/StorageManagementClient.json create mode 100644 src/ResourceManagement/Storage/StorageManagement/generate.cmd diff --git a/src/ResourceManagement/Resource/ResourceManagement/generate.cmd b/src/ResourceManagement/Resource/ResourceManagement/generate.cmd new file mode 100644 index 0000000000000..df5ff9b9ac283 --- /dev/null +++ b/src/ResourceManagement/Resource/ResourceManagement/generate.cmd @@ -0,0 +1,16 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +set autoRestVersion=0.11.0-Nightly20150727 +set specUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-resources/2014-04-01-preview/swagger/resources.json?token=AFvFAUt8kd8h4EHb6NQ9pfECnwPrhv9wks5Vv8qQwA==" + +:: uncomment the line below if you are using the nightly build +REM set source=-Source https://www.myget.org/F/autorest/api/v2 + +set repoRoot=%~dp0..\..\..\.. +set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe + +%repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %specUrl% -Header NONE \ No newline at end of file diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagementClient.json b/src/ResourceManagement/Storage/StorageManagement/StorageManagementClient.json deleted file mode 100644 index 9287299ff4bf3..0000000000000 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagementClient.json +++ /dev/null @@ -1,704 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "title": "StorageManagementClient", - "version": "2015-05-01-preview" - }, - "host": "management.azure.com", - "schemes": [ - "https" - ], - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "paths": { - "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/checkNameAvailability": { - "post": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_CheckNameAvailability", - "description": "Checks that account name is valid and is not in use.", - "parameters": [ - { - "name": "accountName", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/StorageAccountCheckNameAvailabilityParameters" - }, - "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " - }, - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/CheckNameAvailabilityResult" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}": { - "put": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_Create", - "description": "Asynchronously creates a new storage account with the specified parameters. Existing accounts cannot be updated with this API and should instead use the Update Storage Account API. If an account is already created and subsequent PUT request is issued with exact same set of properties, then HTTP 200 would be returned. ", - "parameters": [ - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group within the user’s subscription." - }, - { - "name": "accountName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/StorageAccountCreateParameters" - }, - "description": "The parameters to provide for the created account." - }, - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/StorageAccount" - } - }, - "202": { - "description": "" - } - }, - "x-ms-long-running-operation": true - }, - "delete": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_Delete", - "description": "Deletes a storage account in Microsoft Azure.", - "parameters": [ - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group within the user’s subscription." - }, - { - "name": "accountName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " - }, - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "" - }, - "204": { - "description": "" - } - } - }, - "get": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_GetProperties", - "description": "Returns the properties for the specified storage account including but not limited to name, account type, location, and account status. The ListKeys operation should be used to retrieve storage keys.", - "parameters": [ - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group within the user’s subscription." - }, - { - "name": "accountName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " - }, - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/StorageAccount" - } - } - } - }, - "patch": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_Update", - "description": "Updates the account type or tags for a storage account. It can also be used to add a custom domain (note that custom domains cannot be added via the Create operation). Only one custom domain is supported per storage account. This API can only be used to update one of tags, accountType, or customDomain per call. To update multiple of these properties, call the API multiple times with one change per call. This call does not change the storage keys for the account. If you want to change storage account keys, use the RegenerateKey operation. The location and name of the storage account cannot be changed after creation.", - "parameters": [ - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group within the user’s subscription." - }, - { - "name": "accountName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " - }, - { - "name": "parameters", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/StorageAccountUpdateParameters" - }, - "description": "The parameters to update on the account. Note that only one property can be changed at a time using this API. " - }, - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/StorageAccount" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/listKeys": { - "post": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_ListKeys", - "description": "Lists the access keys for the specified storage account.", - "parameters": [ - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group." - }, - { - "name": "accountName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the storage account." - }, - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/StorageAccountKeys" - } - } - } - } - }, - "/subscriptions/{subscriptionId}/providers/Microsoft.Storage/storageAccounts": { - "get": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_List", - "description": "Lists all the storage accounts available under the subscription. Note that storage keys are not returned; use the ListKeys operation for this.", - "parameters": [ - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/StorageAccountListResult" - } - } - }, - "x-ms-pageable": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts": { - "get": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_ListByResourceGroup", - "description": "Lists all the storage accounts available under the given resource group. Note that storage keys are not returned; use the ListKeys operation for this.", - "parameters": [ - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group within the user’s subscription." - }, - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/StorageAccountListResult" - } - } - }, - "x-ms-pageable": true - } - }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/regenerateKey": { - "post": { - "tags": [ - "StorageAccounts" - ], - "operationId": "StorageAccounts_RegenerateKey", - "description": "Regenerates the access keys for the specified storage account.", - "parameters": [ - { - "name": "resourceGroupName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the resource group within the user’s subscription." - }, - { - "name": "accountName", - "in": "path", - "required": true, - "type": "string", - "description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. " - }, - { - "name": "regenerateKey", - "in": "body", - "required": true, - "schema": { - "$ref": "#/definitions/StorageAccountRegenerateKeyParameters" - }, - "description": "Specifies name of the key which should be regenerated." - }, - { - "in": "query", - "$ref": "#/parameters/ApiVersionParameter" - }, - { - "in": "query", - "$ref": "#/parameters/SubscriptionIdParameter" - } - ], - "responses": { - "200": { - "description": "", - "schema": { - "$ref": "#/definitions/StorageAccountKeys" - } - } - } - } - } - }, - "definitions": { - "StorageAccountCheckNameAvailabilityParameters": { - "properties": { - "name": { - "type": "string" - }, - "type": { - "type": "string" - } - } - }, - "CheckNameAvailabilityResult": { - "properties": { - "nameAvailable": { - "type": "boolean", - "description": "Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used." - }, - "reason": { - "type": "string", - "description": "Gets the reason that a storage account name could not be used. The Reason element is only returned if NameAvailable is false.", - "enum": [ - "AccountNameInvalid", - "AlreadyExists" - ], - "x-ms-enum": "Reason" - }, - "message": { - "type": "string", - "description": "Gets an error message explaining the Reason value in more detail." - } - }, - "description": "The CheckNameAvailability operation response." - }, - "StorageAccountPropertiesCreateParameters": { - "properties": { - "accountType": { - "type": "string", - "description": "Gets or sets the account type.", - "enum": [ - "Standard_LRS", - "Standard_ZRS", - "Standard_GRS", - "Standard_RAGRS", - "Premium_LRS" - ], - "x-ms-enum": "AccountType" - } - } - }, - "StorageAccountCreateParameters": { - "properties": { - "properties": { - "$ref": "#/definitions/StorageAccountPropertiesCreateParameters" - } - }, - "allOf": [ - { - "$ref": "Resource" - } - ], - "description": "The parameters to provide for the account." - }, - "Endpoints": { - "properties": { - "blob": { - "type": "string", - "description": "Gets the blob endpoint." - }, - "queue": { - "type": "string", - "description": "Gets the queue endpoint." - }, - "table": { - "type": "string", - "description": "Gets the table endpoint." - } - }, - "description": "The URIs that are used to perform a retrieval of a public blob, queue or table object." - }, - "CustomDomain": { - "properties": { - "name": { - "type": "string", - "description": "Gets or sets the custom domain name. Name is the CNAME source." - }, - "useSubDomain": { - "type": "boolean", - "description": "Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates" - } - }, - "description": "The custom domain assigned to this storage account. This can be set via Update." - }, - "StorageAccountProperties": { - "properties": { - "provisioningState": { - "type": "string", - "description": "Gets the status of the storage account at the time the operation was called.", - "enum": [ - "Creating", - "ResolvingDNS", - "Succeeded" - ], - "x-ms-enum": "ProvisioningState" - }, - "accountType": { - "type": "string", - "description": "Gets the type of the storage account.", - "enum": [ - "Standard_LRS", - "Standard_ZRS", - "Standard_GRS", - "Standard_RAGRS", - "Premium_LRS" - ], - "x-ms-enum": "AccountType" - }, - "primaryEndpoints": { - "$ref": "#/definitions/Endpoints", - "description": "Gets the URLs that are used to perform a retrieval of a public blob, queue or table object.Note that StandardZRS and PremiumLRS accounts only return the blob endpoint." - }, - "primaryLocation": { - "type": "string", - "description": "Gets the location of the primary for the storage account." - }, - "statusOfPrimary": { - "type": "string", - "description": "Gets the status indicating whether the primary location of the storage account is available or unavailable.", - "enum": [ - "Available", - "Unavailable" - ], - "x-ms-enum": "AccountStatus" - }, - "lastGeoFailoverTime": { - "type": "string", - "format": "date-time", - "description": "Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never been a failover instance. Only available if the accountType is StandardGRS or StandardRAGRS." - }, - "secondaryLocation": { - "type": "string", - "description": "Gets the location of the geo replicated secondary for the storage account. Only available if the accountType is StandardGRS or StandardRAGRS." - }, - "statusOfSecondary": { - "type": "string", - "description": "Gets the status indicating whether the secondary location of the storage account is available or unavailable. Only available if the accountType is StandardGRS or StandardRAGRS.", - "enum": [ - "Available", - "Unavailable" - ], - "x-ms-enum": "AccountStatus" - }, - "creationTime": { - "type": "string", - "format": "date-time", - "description": "Gets the creation date and time of the storage account in UTC." - }, - "customDomain": { - "$ref": "#/definitions/CustomDomain", - "description": "Gets the user assigned custom domain assigned to this storage account." - }, - "secondaryEndpoints": { - "$ref": "#/definitions/Endpoints", - "description": "Gets the URLs that are used to perform a retrieval of a public blob, queue or table object from the secondary location of the storage account. Only available if the accountType is StandardRAGRS." - } - } - }, - "StorageAccount": { - "properties": { - "properties": { - "$ref": "#/definitions/StorageAccountProperties" - } - }, - "allOf": [ - { - "$ref": "Resource" - } - ], - "description": "The storage account." - }, - "StorageAccountKeys": { - "properties": { - "key1": { - "type": "string", - "description": "Gets the value of key 1." - }, - "key2": { - "type": "string", - "description": "Gets the value of key 2." - } - }, - "description": "The access keys for the storage account." - }, - "StorageAccountListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/StorageAccount" - }, - "description": "Gets the list of storage accounts and their properties." - }, - "nextLink": { - "type": "string", - "description": "Gets the link to the next set of results. Currently this will always be empty as the API does not support pagination." - } - }, - "description": "The list storage accounts operation response." - }, - "StorageAccountPropertiesUpdateParameters": { - "properties": { - "accountType": { - "type": "string", - "description": "Gets or sets the account type. Note that StandardZRS and PremiumLRS accounts cannot be changed to other account types, and other account types cannot be changed to StandardZRS or PremiumLRS.", - "enum": [ - "Standard_LRS", - "Standard_ZRS", - "Standard_GRS", - "Standard_RAGRS", - "Premium_LRS" - ], - "x-ms-enum": "AccountType" - }, - "customDomain": { - "$ref": "#/definitions/CustomDomain", - "description": "User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property." - } - } - }, - "StorageAccountUpdateParameters": { - "properties": { - "properties": { - "$ref": "#/definitions/StorageAccountPropertiesUpdateParameters" - } - }, - "allOf": [ - { - "$ref": "Resource" - } - ], - "description": "The parameters to update on the account." - }, - "StorageAccountRegenerateKeyParameters": { - "properties": { - "keyName": { - "type": "string", - "enum": [ - "key1", - "key2" - ], - "x-ms-enum": "KeyName" - } - } - }, - "Resource": { - "properties": { - "id": { - "readOnly": true, - "type": "string", - "description": "Resource Id" - }, - "name": { - "readOnly": true, - "type": "string", - "description": "Resource name" - }, - "type": { - "readOnly": true, - "type": "string", - "description": "Resource type" - }, - "location": { - "type": "string", - "description": "Resource location" - }, - "tags": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Resource tags" - } - }, - "required": [ - "location" - ], - "x-ms-external": true - }, - "SubResource": { - "properties": { - "id": { - "type": "string", - "description": "Resource Id" - } - }, - "x-ms-external": true - } - }, - "parameters": { - "SubscriptionIdParameter": { - "name": "subscriptionId", - "in": "path", - "required": true, - "type": "string", - "description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." - }, - "ApiVersionParameter": { - "name": "api-version", - "in": "query", - "required": true, - "type": "string", - "description": "Client Api Version." - } - } -} \ No newline at end of file diff --git a/src/ResourceManagement/Storage/StorageManagement/generate.cmd b/src/ResourceManagement/Storage/StorageManagement/generate.cmd new file mode 100644 index 0000000000000..87bad183964b2 --- /dev/null +++ b/src/ResourceManagement/Storage/StorageManagement/generate.cmd @@ -0,0 +1,14 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +set autoRestVersion=0.11.0-Nightly20150727 +set specUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-storage/2015-05-01-preview/swagger/storage.json?token=AFvFAVctRHBXqAdfxX2kk3jAvsCrCqxXks5Vv-IDwA==" +set source=-Source https://www.myget.org/F/autorest/api/v2 + +set repoRoot=%~dp0..\..\..\.. +set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe + +%repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Storage -Input %specUrl% -Header NONE \ No newline at end of file From dc33c7671a36c280b62f8dbdbd6d0ed796af42aa Mon Sep 17 00:00:00 2001 From: yugangw-msft <yugangw@microsoft.com> Date: Mon, 27 Jul 2015 16:29:40 -0700 Subject: [PATCH 28/34] add more clients to generate for resource --- .../Resource/ResourceManagement/generate.cmd | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/ResourceManagement/Resource/ResourceManagement/generate.cmd b/src/ResourceManagement/Resource/ResourceManagement/generate.cmd index df5ff9b9ac283..1da677ef8d00a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/generate.cmd +++ b/src/ResourceManagement/Resource/ResourceManagement/generate.cmd @@ -4,13 +4,19 @@ :: set autoRestVersion=0.11.0-Nightly20150727 -set specUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-resources/2014-04-01-preview/swagger/resources.json?token=AFvFAUt8kd8h4EHb6NQ9pfECnwPrhv9wks5Vv8qQwA==" +set source=-Source https://www.myget.org/F/autorest/api/v2 -:: uncomment the line below if you are using the nightly build -REM set source=-Source https://www.myget.org/F/autorest/api/v2 +set resSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-resources/2014-04-01-preview/swagger/resources.json?token=AFvFAUt8kd8h4EHb6NQ9pfECnwPrhv9wks5Vv8qQwA==" +set authSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-authorization/2015-01-01/swagger/authorization.json?token=AFvFAdC1UDb8X4apaW2jBlybnEIsDIEjks5Vv_eWwA==" +set featureSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-features/2014-08-01-preview/swagger/features.json?token=AFvFAdK0vX5j75nicb0DQY5ihN425UExks5Vv_fGwA==" +set subscriptionSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-subscriptions/2014-04-01-preview/swagger/subscriptions.json?token=AFvFAbQmNVtX9zfhY0EO8vcXdF6iOyyKks5Vv_flwA==" set repoRoot=%~dp0..\..\..\.. set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe %repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %specUrl% -Header NONE \ No newline at end of file + +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %resSpecUrl% -Header NONE +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %authSpecUrl% -Header NONE +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %featureSpecUrl% -Header NONE +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %subscriptionSpecUrl% -Header NONE \ No newline at end of file From e1f22f127b09bb1d91b5117f800cd8d5fa204c39 Mon Sep 17 00:00:00 2001 From: yugangw-msft <yugangw@microsoft.com> Date: Mon, 27 Jul 2015 16:58:08 -0700 Subject: [PATCH 29/34] regenerate lib --- .../ResourcesManagementTestUtilities.cs | 1 - .../DeploymentOperationsOperations.cs | 21 +++- .../Generated/DeploymentsOperations.cs | 42 +++++-- .../Generated/FeaturesOperations.cs | 42 +++++-- .../Generated/ISubscriptionClient.cs | 2 +- .../Generated/ISubscriptionsOperations.cs | 2 +- .../Generated/ITenantsOperations.cs | 2 +- .../Generated/ManagementLocksOperations.cs | 105 +++++++++++++----- .../Generated/Models/Subscription.cs | 2 +- .../Generated/Models/TenantIdDescription.cs | 2 +- .../Generated/ProvidersOperations.cs | 35 ++++-- .../Generated/ResourceGroupsOperations.cs | 63 ++++++++--- ...ourceProviderOperationDetailsOperations.cs | 7 +- .../Generated/ResourcesOperations.cs | 49 +++++--- .../Generated/SubscriptionClient.cs | 2 +- .../Generated/SubscriptionClientExtensions.cs | 2 +- .../Generated/SubscriptionsOperations.cs | 23 ++-- .../SubscriptionsOperationsExtensions.cs | 2 +- .../Generated/TagsOperations.cs | 42 +++++-- .../Generated/TenantsOperations.cs | 16 ++- .../Generated/TenantsOperationsExtensions.cs | 2 +- .../Resource/ResourceManagement/generate.cmd | 12 +- .../DeploymentTests.ScenarioTests.cs | 4 +- .../SubscriptionTests.ScenarioTests.cs | 3 +- .../TenantTests.ScenarioTests.cs | 4 +- .../ResourcesManagementTestUtilities.cs | 12 +- .../Generated/StorageAccountsOperations.cs | 77 +++++++++---- .../Generated/UsageOperations.cs | 7 +- .../Storage/StorageManagement/generate.cmd | 5 +- 29 files changed, 407 insertions(+), 181 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/Helpers/ResourcesManagementTestUtilities.cs b/src/ResourceManagement/Network/Network.Tests/Helpers/ResourcesManagementTestUtilities.cs index 335232db80972..7f74850992d55 100644 --- a/src/ResourceManagement/Network/Network.Tests/Helpers/ResourcesManagementTestUtilities.cs +++ b/src/ResourceManagement/Network/Network.Tests/Helpers/ResourcesManagementTestUtilities.cs @@ -13,7 +13,6 @@ // limitations under the License. // -using Microsoft.Azure.Subscriptions; using ResourceGroups.Tests; namespace Microsoft.Azure.Test diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs index daf75bb8315dd..7fe8a841afa33 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs @@ -136,8 +136,11 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -287,8 +290,11 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -407,8 +413,11 @@ internal DeploymentOperationsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs index 41243a74dd8db..ba2257800ca2d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs @@ -127,8 +127,11 @@ internal DeploymentsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -265,8 +268,11 @@ internal DeploymentsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -426,8 +432,11 @@ internal DeploymentsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -579,8 +588,11 @@ internal DeploymentsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -729,8 +741,11 @@ internal DeploymentsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -849,8 +864,11 @@ internal DeploymentsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs index 775bc29204967..ba7c7cc1a7bf1 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs @@ -108,8 +108,11 @@ internal FeaturesOperations(FeatureClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -242,8 +245,11 @@ internal FeaturesOperations(FeatureClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -385,8 +391,11 @@ internal FeaturesOperations(FeatureClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -528,8 +537,11 @@ internal FeaturesOperations(FeatureClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -649,8 +661,11 @@ internal FeaturesOperations(FeatureClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -769,8 +784,11 @@ internal FeaturesOperations(FeatureClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs index f643b24cb641a..523b0d59190b2 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections.Generic; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs index 7e13f00e9cdff..d813ffdea8399 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections.Generic; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs index e48c16f317ee2..9b86921fb0582 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections.Generic; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs index ad2d370b70792..486587bc69173 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs @@ -135,8 +135,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -333,8 +336,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -522,8 +528,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -651,8 +660,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -795,8 +807,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -916,8 +931,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1065,8 +1083,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1194,8 +1215,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1372,8 +1396,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1498,8 +1525,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1631,8 +1661,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1751,8 +1784,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1871,8 +1907,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1991,8 +2030,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -2111,8 +2153,11 @@ internal ManagementLocksOperations(AuthorizationClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs index 59838656b46e6..6bc54359dc1b1 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions.Models +namespace Microsoft.Azure.Management.Resources.Models { using System; using System.Collections.Generic; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs index 1522b64c4c23a..4457c4f83cb4c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions.Models +namespace Microsoft.Azure.Management.Resources.Models { using System; using System.Collections.Generic; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs index a7e416a74663e..6d0448cbda8d5 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs @@ -118,8 +118,11 @@ internal ProvidersOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -252,8 +255,11 @@ internal ProvidersOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -385,8 +391,11 @@ internal ProvidersOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -519,8 +528,11 @@ internal ProvidersOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -639,8 +651,11 @@ internal ProvidersOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs index abc821d68d73a..eaad511bc85b2 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs @@ -134,8 +134,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -268,8 +271,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -432,8 +438,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -598,8 +607,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -719,8 +731,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -865,8 +880,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -1010,8 +1028,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1130,8 +1151,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1250,8 +1274,11 @@ internal ResourceGroupsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs index f6c20c753be78..c69842e40d936 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs @@ -121,8 +121,11 @@ internal ResourceProviderOperationDetailsOperations(ResourceManagementClient cli } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs index 550408d4ab029..25df4213b31cb 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs @@ -126,8 +126,11 @@ internal ResourcesOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -258,8 +261,11 @@ internal ResourcesOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -431,8 +437,11 @@ internal ResourcesOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -599,8 +608,11 @@ internal ResourcesOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -810,8 +822,11 @@ internal ResourcesOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -993,8 +1008,11 @@ internal ResourcesOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1119,8 +1137,11 @@ internal ResourcesOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs index 7065066beefad..85a2a706c73f3 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections.Generic; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs index 0b1e75715c4b8..9b2e7ee53a1a0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs index 2e1bc11e3bb4f..b7c9a115ea6ad 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections.Generic; @@ -111,8 +111,11 @@ internal SubscriptionsOperations(SubscriptionClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -236,8 +239,11 @@ internal SubscriptionsOperations(SubscriptionClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -356,8 +362,11 @@ internal SubscriptionsOperations(SubscriptionClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs index a0eb16b052d53..24dc09c249b13 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs index ec0e6ad4b772b..85fc6705a878c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs @@ -127,8 +127,11 @@ internal TagsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -257,8 +260,11 @@ internal TagsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -397,8 +403,11 @@ internal TagsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -537,8 +546,11 @@ internal TagsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -649,8 +661,11 @@ internal TagsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -769,8 +784,11 @@ internal TagsOperations(ResourceManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs index 75a3ea62e2fc4..106ce17eadb9e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections.Generic; @@ -107,8 +107,11 @@ internal TenantsOperations(SubscriptionClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -227,8 +230,11 @@ internal TenantsOperations(SubscriptionClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs index 8ca6f0770effd..0b5ba7d7fa373 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.Subscriptions +namespace Microsoft.Azure.Management.Resources { using System; using System.Collections; diff --git a/src/ResourceManagement/Resource/ResourceManagement/generate.cmd b/src/ResourceManagement/Resource/ResourceManagement/generate.cmd index 1da677ef8d00a..db20494323a9e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/generate.cmd +++ b/src/ResourceManagement/Resource/ResourceManagement/generate.cmd @@ -13,10 +13,12 @@ set subscriptionSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api- set repoRoot=%~dp0..\..\..\.. set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe - +set generateFolder=%~dp0Generated %repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %resSpecUrl% -Header NONE -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %authSpecUrl% -Header NONE -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %featureSpecUrl% -Header NONE -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %subscriptionSpecUrl% -Header NONE \ No newline at end of file +if exist %generateFolder% rd /S /Q %generateFolder% + +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %resSpecUrl% -outputDirectory %generateFolder% -Header NONE +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %authSpecUrl% -outputDirectory %generateFolder% -Header NONE +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %featureSpecUrl% -outputDirectory %generateFolder% -Header NONE +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %subscriptionSpecUrl% -outputDirectory %generateFolder% -Header NONE \ No newline at end of file diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs index 313b82582098d..f27d44fd79192 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/DeploymentTests.ScenarioTests.cs @@ -17,14 +17,12 @@ using System.IO; using System.Linq; using System.Net; -using System.Runtime.Serialization.Formatters; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test; -using Newtonsoft.Json; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Newtonsoft.Json.Linq; using Xunit; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs index a5ea6a8dd35c2..5ffb7f7c34202 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/SubscriptionTests.ScenarioTests.cs @@ -16,11 +16,10 @@ using System.Linq; using System.Net; using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Subscriptions; using Microsoft.Azure.Test; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Microsoft.Rest.TransientFaultHandling; using Xunit; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { diff --git a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs index c3486bca02eb7..d31edcac61bd3 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/ScenarioTests/TenantTests.ScenarioTests.cs @@ -15,11 +15,11 @@ using System.Linq; using System.Net; -using Microsoft.Azure.Subscriptions; +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Microsoft.Rest.TransientFaultHandling; using Xunit; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; namespace ResourceGroups.Tests { diff --git a/src/ResourceManagement/Resource/Resources.Tests/SpecTestSupport.Resources/ResourcesManagementTestUtilities.cs b/src/ResourceManagement/Resource/Resources.Tests/SpecTestSupport.Resources/ResourcesManagementTestUtilities.cs index 9667394da0c54..1196ad3b9902e 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/SpecTestSupport.Resources/ResourcesManagementTestUtilities.cs +++ b/src/ResourceManagement/Resource/Resources.Tests/SpecTestSupport.Resources/ResourcesManagementTestUtilities.cs @@ -13,16 +13,16 @@ // limitations under the License. // -using Microsoft.Azure.Subscriptions; using ResourceGroups.Tests; +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Resources.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Linq; namespace Microsoft.Azure.Test { - using Microsoft.Azure.Management.Resources; - using Microsoft.Azure.Management.Resources.Models; - using Microsoft.Rest.ClientRuntime.Azure.TestFramework; - using System; - using System.Linq; + public static class ResourcesManagementTestUtilities { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs index e9e13ac73bda0..02d117910f457 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs @@ -117,8 +117,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(accountName, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -316,8 +319,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -465,8 +471,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -599,8 +608,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -761,8 +773,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -908,8 +923,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1034,8 +1052,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1170,8 +1191,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1323,8 +1347,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Serialize Request string requestContent = JsonConvert.SerializeObject(regenerateKey, this.Client.SerializationSettings); httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); @@ -1448,8 +1475,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { @@ -1570,8 +1600,11 @@ internal StorageAccountsOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs index 071dbe1108042..2c30d264998da 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs @@ -108,8 +108,11 @@ internal UsageOperations(StorageManagementClient client) } // Set Credentials - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (shouldTrace) { diff --git a/src/ResourceManagement/Storage/StorageManagement/generate.cmd b/src/ResourceManagement/Storage/StorageManagement/generate.cmd index 87bad183964b2..7b6fc83607cf7 100644 --- a/src/ResourceManagement/Storage/StorageManagement/generate.cmd +++ b/src/ResourceManagement/Storage/StorageManagement/generate.cmd @@ -9,6 +9,9 @@ set source=-Source https://www.myget.org/F/autorest/api/v2 set repoRoot=%~dp0..\..\..\.. set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe +set generateFolder=%~dp0Generated %repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Storage -Input %specUrl% -Header NONE \ No newline at end of file + +if exist %generateFolder% rd /S /Q %generateFolder% +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Storage -Input %specUrl% -outputDirectory %generateFolder% -Header NONE \ No newline at end of file From dc0bdbe66ffe43ea1c3ac538f36b81781c66dcdc Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Tue, 28 Jul 2015 18:13:31 -0700 Subject: [PATCH 30/34] Updated to latest client runtime --- ...ntRuntime.Azure.TestFramework.Tests.csproj | 14 +++++----- .../TestFramework.Tests/packages.config | 9 +++--- .../ClientRuntime.Azure.TestFramework.csproj | 28 +++++++++++-------- ...ientRuntime.Azure.TestFramework.nuget.proj | 2 +- ...t.ClientRuntime.Azure.TestFramework.nuspec | 2 +- .../TestFramework/Properties/AssemblyInfo.cs | 2 +- .../TestFramework/TestEnvironmentFactory.cs | 3 +- .../TestFramework/packages.config | 7 +++-- .../Compute.Tests/Compute.Tests.csproj | 14 +++++----- .../Compute/Compute.Tests/packages.config | 7 +++-- .../ComputeManagement.csproj | 12 +++++--- .../Microsoft.Azure.Management.Compute.nuspec | 2 +- .../Compute/ComputeManagement/packages.config | 6 ++-- .../Network.Tests/Network.Tests.csproj | 14 +++++----- .../Network/Network.Tests/packages.config | 7 +++-- .../Microsoft.Azure.Management.Network.nuspec | 2 +- .../NetworkManagement.csproj | 22 ++++++--------- .../Network/NetworkManagement/packages.config | 6 ++-- ...icrosoft.Azure.Management.Resources.nuspec | 2 +- .../ResourceManagement.csproj | 16 +++++++---- .../ResourceManagement/packages.config | 6 ++-- .../Resources.Tests/Resources.Tests.csproj | 14 +++++----- .../Resource/Resources.Tests/packages.config | 7 +++-- .../Storage.Tests/Storage.Tests.csproj | 14 +++++----- .../Storage/Storage.Tests/packages.config | 7 +++-- .../Microsoft.Azure.Management.Storage.nuspec | 2 +- .../StorageManagement.csproj | 12 +++++--- .../Storage/StorageManagement/packages.config | 6 ++-- 28 files changed, 134 insertions(+), 111 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj index 4b590c2b88fa8..f8ce3c12e7483 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj @@ -30,19 +30,19 @@ <Reference Include="System.Data" /> <Reference Include="System.Xml" /> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config index 0e7e7426806f0..dcc1ae9049f19 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> @@ -10,4 +11,4 @@ <package id="xunit.core" version="2.0.0" targetFramework="net45" /> <package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" /> <package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" /> -</packages> +</packages> \ No newline at end of file diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj index 4f29047d2491c..a780fcac28af2 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj @@ -13,6 +13,22 @@ </PropertyGroup> <Import Project="..\..\..\tools\Library.Settings.targets" /> <ItemGroup> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="System" /> <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> @@ -21,18 +37,6 @@ <Reference Include="Newtonsoft.Json"> <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> - </Reference> </ItemGroup> <ItemGroup> <Compile Include="CredManCache.cs" /> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj index 5f9569417ad9d..5954a736d81eb 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuget.proj @@ -5,7 +5,7 @@ Microsoft.Rest.ClientRuntime.Azure.TestFramework --> <SdkNuGetPackage Include="Microsoft.Rest.ClientRuntime.Azure.TestFramework"> - <PackageVersion>0.9.1-preview</PackageVersion> + <PackageVersion>0.9.2-preview</PackageVersion> <Folder>$(MSBuildThisFileDirectory)</Folder> </SdkNuGetPackage> </ItemGroup> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec index ee2c035a97b39..872d83d129370 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Microsoft.Rest.ClientRuntime.Azure.TestFramework.nuspec @@ -14,7 +14,7 @@ <description>Test utilities for xunit test suites for AutoRest generated Azure clients</description> <copyright>Copyright 2015</copyright> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.20,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs index abaadfc949109..cd5bcc736d33d 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/Properties/AssemblyInfo.cs @@ -17,4 +17,4 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("6eb355e3-e1e1-4f46-bcfa-737812ccff87")] [assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.9.1.0")] +[assembly: AssemblyFileVersion("0.9.2.0")] diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs index 57e089d3c474a..a143413527c8f 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/TestEnvironmentFactory.cs @@ -5,11 +5,10 @@ using System.Collections.Generic; using System.Linq; using Microsoft.Rest.ClientRuntime.Azure.TestFramework.HttpRecorder; -using Microsoft.Rest; using System.Net.Http; using Newtonsoft.Json.Linq; -using Microsoft.Rest.Azure.Authentication; using System.Threading; +using Microsoft.Rest.Azure.Authentication; namespace Microsoft.Rest.ClientRuntime.Azure.TestFramework { diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config index c439b5d88e890..0b70b5eb4abc1 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index 455de867fce43..825b180b927ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -151,19 +151,19 @@ </ItemGroup> <ItemGroup> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Compute/Compute.Tests/packages.config b/src/ResourceManagement/Compute/Compute.Tests/packages.config index 0e7e7426806f0..2fbdbea1400ad 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/packages.config +++ b/src/ResourceManagement/Compute/Compute.Tests/packages.config @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj index 32a920e75a52c..7b138eb1cf5e4 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj +++ b/src/ResourceManagement/Compute/ComputeManagement/ComputeManagement.csproj @@ -35,10 +35,12 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> </When> @@ -53,10 +55,12 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec index a38c4283b16d5..b68ffd4509fa8 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec +++ b/src/ResourceManagement/Compute/ComputeManagement/Microsoft.Azure.Management.Compute.nuspec @@ -27,7 +27,7 @@ Note: This client library is for Virtual Machines under Azure Resource Manager.< </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.20,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Compute/ComputeManagement/packages.config b/src/ResourceManagement/Compute/ComputeManagement/packages.config index cdb0d8b733610..28594d3be54ab 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/packages.config +++ b/src/ResourceManagement/Compute/ComputeManagement/packages.config @@ -1,7 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj index 88db11333e25e..38ed3f6365ea7 100644 --- a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj +++ b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj @@ -115,19 +115,19 @@ <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Network/Network.Tests/packages.config b/src/ResourceManagement/Network/Network.Tests/packages.config index 0e7e7426806f0..2fbdbea1400ad 100644 --- a/src/ResourceManagement/Network/Network.Tests/packages.config +++ b/src/ResourceManagement/Network/Network.Tests/packages.config @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec b/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec index 1fa4452e9475c..7b1a6ab743ffd 100644 --- a/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec +++ b/src/ResourceManagement/Network/NetworkManagement/Microsoft.Azure.Management.Network.nuspec @@ -28,7 +28,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.20,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj index 9630a972abdd8..e5d11723e2c66 100644 --- a/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj +++ b/src/ResourceManagement/Network/NetworkManagement/NetworkManagement.csproj @@ -23,16 +23,6 @@ <None Include="Microsoft.Azure.Management.Network.nuget.proj" /> <None Include="packages.config" /> </ItemGroup> - <ItemGroup> - <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> - <Private>True</Private> - </Reference> - </ItemGroup> <Choose> <When Condition=" '$(LibraryFxTarget)' == 'portable' "> <ItemGroup> @@ -40,10 +30,12 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> </When> @@ -58,10 +50,12 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.13\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Network/NetworkManagement/packages.config b/src/ResourceManagement/Network/NetworkManagement/packages.config index cdb0d8b733610..28594d3be54ab 100644 --- a/src/ResourceManagement/Network/NetworkManagement/packages.config +++ b/src/ResourceManagement/Network/NetworkManagement/packages.config @@ -1,7 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec index 17b6013fc6108..4637b39bd1487 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec +++ b/src/ResourceManagement/Resource/ResourceManagement/Microsoft.Azure.Management.Resources.nuspec @@ -24,7 +24,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.20,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index 31db007d17892..787aa1e6cb065 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -30,12 +30,14 @@ <ItemGroup> <Reference Include="Newtonsoft.Json"> <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> - </Reference> + </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> </When> @@ -48,12 +50,14 @@ <Reference Include="System.Runtime.Serialization" /> <Reference Include="Newtonsoft.Json"> <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> - </Reference> + </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Resource/ResourceManagement/packages.config b/src/ResourceManagement/Resource/ResourceManagement/packages.config index cdb0d8b733610..28594d3be54ab 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/packages.config +++ b/src/ResourceManagement/Resource/ResourceManagement/packages.config @@ -1,7 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj index 6e894a5d4a233..95dded8bae4ba 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj +++ b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj @@ -159,19 +159,19 @@ <Reference Include="System.Net.Http" /> <Reference Include="System.Runtime.Serialization" /> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Resource/Resources.Tests/packages.config b/src/ResourceManagement/Resource/Resources.Tests/packages.config index 0e7e7426806f0..2fbdbea1400ad 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/packages.config +++ b/src/ResourceManagement/Resource/Resources.Tests/packages.config @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.5.207081303-alpha" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj index d6194d7cfdf69..b803a721ee026 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj +++ b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj @@ -95,19 +95,19 @@ <HintPath>$(LibraryNugetPackageFolder)\System.Spatial.5.6.2\lib\net40\System.Spatial.dll</HintPath> </Reference> <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> - <Private>True</Private> - </Reference> - <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.3.5.207081303-alpha\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Storage/Storage.Tests/packages.config b/src/ResourceManagement/Storage/Storage.Tests/packages.config index e3fb459e4b2bc..b149a8984d033 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/packages.config +++ b/src/ResourceManagement/Storage/Storage.Tests/packages.config @@ -5,9 +5,10 @@ <package id="Microsoft.Data.Edm" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.Data.OData" version="5.6.2" targetFramework="net451" /> <package id="Microsoft.Data.Services.Client" version="5.6.2" targetFramework="net451" /> - <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Microsoft.WindowsAzure.ConfigurationManager" version="1.8.0.0" targetFramework="net451" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net451" /> <package id="System.Spatial" version="5.6.2" targetFramework="net451" /> diff --git a/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec b/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec index ee5eb4536aedd..543003394aea9 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec +++ b/src/ResourceManagement/Storage/StorageManagement/Microsoft.Azure.Management.Storage.nuspec @@ -28,7 +28,7 @@ </group> </references> <dependencies> - <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.18-preview,2.0)" /> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.20,2.0)" /> </dependencies> </metadata> <files> diff --git a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj index 24dbc1a5bccc9..69a9138be4dd6 100644 --- a/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj +++ b/src/ResourceManagement/Storage/StorageManagement/StorageManagement.csproj @@ -25,10 +25,12 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> </When> @@ -43,10 +45,12 @@ <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.1.1\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.18-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> </Reference> </ItemGroup> </When> diff --git a/src/ResourceManagement/Storage/StorageManagement/packages.config b/src/ResourceManagement/Storage/StorageManagement/packages.config index cdb0d8b733610..28594d3be54ab 100644 --- a/src/ResourceManagement/Storage/StorageManagement/packages.config +++ b/src/ResourceManagement/Storage/StorageManagement/packages.config @@ -1,7 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <packages> - <package id="Microsoft.Rest.ClientRuntime" version="1.1.1" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.18-preview" targetFramework="net45" /> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> From dc4f9e0b20e2209d181af47a4df44b0f2f97baac Mon Sep 17 00:00:00 2001 From: Tony Tang <tonytang@microsoft.com> Date: Tue, 28 Jul 2015 23:17:17 -0700 Subject: [PATCH 31/34] Add .NET SDK for Logic App --- .../InMemoryTests/Base.InMemoryTests.cs | 35 + .../WorkflowAccessKeys.InMemoryTests.cs | 424 ++++ .../WorkflowRunActions.InMemoryTests.cs | 259 +++ .../WorkflowRuns.InMemoryTests.cs | 292 +++ .../WorkflowTriggerHistories.InMemoryTests.cs | 260 +++ .../WorkflowTriggers.InMemoryTests.cs | 300 +++ .../WorkflowVersions.InMemoryTests.cs | 203 ++ .../InMemoryTests/Workflows.InMemoryTests.cs | 782 +++++++ .../Logic/Logic.Tests/Logic.Tests.csproj | 143 ++ .../Logic.Tests/Properties/AssemblyInfo.cs | 36 + .../ScenarioTests/Base.ScenarioTests.cs | 131 ++ .../WorkflowAccessKeys.ScenarioTests.cs | 179 ++ .../WorkflowRunAction.ScenarioTests.cs | 75 + .../WorkflowRuns.ScenarioTests.cs | 69 + .../WorkflowTriggerHistories.ScenarioTests.cs | 106 + .../WorkflowTriggers.ScenarioTests.cs | 128 ++ .../WorkflowVersions.ScenarioTests.cs | 61 + .../ScenarioTests/Workflows.ScenarioTests.cs | 314 +++ .../CreateAndDelete.json | 241 +++ .../CreateAndList.json | 190 ++ .../RegenerateAndListSecretKeys.json | 253 +++ .../ListAndGetActions.json | 303 +++ .../RunGetAndListRuns.json | 528 +++++ .../GetHistory.json | 288 +++ .../ListHistory.json | 288 +++ .../GetAndListTriggers.json | 237 +++ .../ListNoTrigger.json | 180 ++ .../RunTrigger.json | 174 ++ .../CreateAndGetWorkflowVersion.json | 180 ++ .../CreateAndDeleteWorkflow.json | 180 ++ .../CreateAndEnableDisableWorkflow.json | 339 ++++ .../DeleteAllWorkflows.json | 116 ++ .../ListWorkflow.json | 357 ++++ .../UpdateAndRunWorkflow.json | 135 ++ .../ValidateAndRunWorkflow.json | 306 +++ .../Utilities/RecordedDelegatingHandler.cs | 92 + .../Utilities/ValidationUtilities.cs | 42 + .../Logic/Logic.Tests/packages.config | 14 + src/ResourceManagement/Logic/Logic.sln | 40 + .../Generated/ILogicManagementClient.cs | 93 + .../IWorkflowAccessKeysOperations.cs | 171 ++ .../IWorkflowRunActionsOperations.cs | 98 + .../Generated/IWorkflowRunsOperations.cs | 111 + .../IWorkflowTriggerHistoriesOperations.cs | 95 + .../Generated/IWorkflowTriggersOperations.cs | 111 + .../Generated/IWorkflowVersionsOperations.cs | 57 + .../Generated/IWorkflowsOperations.cs | 258 +++ .../Generated/LogicManagementClient.cs | 233 +++ .../LogicManagementClientExtensions.cs | 33 + .../Generated/Models/ContentHash.cs | 44 + .../Generated/Models/ContentLink.cs | 62 + .../Generated/Models/KeyType.cs | 37 + .../Generated/Models/ParameterType.cs | 49 + .../Generated/Models/RecurrenceFrequency.cs | 45 + .../Models/RegenerateSecretKeyParameters.cs | 39 + .../Generated/Models/ResourceReference.cs | 50 + .../Generated/Models/RunWorkflowParameters.cs | 44 + .../LogicManagement/Generated/Models/Sku.cs | 45 + .../Generated/Models/SkuName.cs | 43 + .../Generated/Models/Workflow.cs | 93 + .../Generated/Models/WorkflowAccessKey.cs | 56 + .../Generated/Models/WorkflowFilter.cs | 40 + .../Generated/Models/WorkflowParameter.cs | 52 + .../Generated/Models/WorkflowRun.cs | 88 + .../Generated/Models/WorkflowRunAction.cs | 94 + .../Models/WorkflowRunActionFilter.cs | 41 + .../Generated/Models/WorkflowRunFilter.cs | 40 + .../Generated/Models/WorkflowRunTrigger.cs | 100 + .../Generated/Models/WorkflowSecretKeys.cs | 44 + .../Generated/Models/WorkflowState.cs | 41 + .../Generated/Models/WorkflowStatus.cs | 49 + .../Generated/Models/WorkflowTrigger.cs | 95 + .../Generated/Models/WorkflowTriggerFilter.cs | 40 + .../Models/WorkflowTriggerHistory.cs | 106 + .../Models/WorkflowTriggerRecurrence.cs | 58 + .../Generated/Models/WorkflowVersion.cs | 93 + .../Generated/WorkflowAccessKeysOperations.cs | 1128 +++++++++++ .../WorkflowAccessKeysOperationsExtensions.cs | 340 ++++ .../Generated/WorkflowRunActionsOperations.cs | 517 +++++ .../WorkflowRunActionsOperationsExtensions.cs | 171 ++ .../Generated/WorkflowRunsOperations.cs | 641 ++++++ .../WorkflowRunsOperationsExtensions.cs | 202 ++ .../WorkflowTriggerHistoriesOperations.cs | 509 +++++ ...lowTriggerHistoriesOperationsExtensions.cs | 165 ++ .../Generated/WorkflowTriggersOperations.cs | 641 ++++++ .../WorkflowTriggersOperationsExtensions.cs | 202 ++ .../Generated/WorkflowVersionsOperations.cs | 214 ++ .../WorkflowVersionsOperationsExtensions.cs | 77 + .../Generated/WorkflowsOperations.cs | 1798 +++++++++++++++++ .../WorkflowsOperationsExtensions.cs | 547 +++++ .../LogicManagement/LogicManagement.csproj | 60 + ...icrosoft.Azure.Management.Logic.nuget.proj | 9 + .../Microsoft.Azure.Management.Logic.nuspec | 39 + .../Properties/AssemblyInfo.cs | 31 + .../Logic/LogicManagement/packages.config | 6 + src/ResourceManagement/Logic/NuGet.Config | 4 + .../ResourceManagement.csproj | 1 - 97 files changed, 18429 insertions(+), 1 deletion(-) create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Base.InMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowAccessKeys.InMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/Logic.Tests.csproj create mode 100644 src/ResourceManagement/Logic/Logic.Tests/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowAccessKeys.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowRunAction.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowRuns.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/CreateAndDelete.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/CreateAndList.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/RegenerateAndListSecretKeys.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowRunActionsScenarioTests/ListAndGetActions.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowRunsScenarioTests/RunGetAndListRuns.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests/GetHistory.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests/ListHistory.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/GetAndListTriggers.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/ListNoTrigger.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/RunTrigger.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowVersionsScenarioTests/CreateAndGetWorkflowVersion.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/CreateAndDeleteWorkflow.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/CreateAndEnableDisableWorkflow.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/DeleteAllWorkflows.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/ListWorkflow.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/UpdateAndRunWorkflow.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/ValidateAndRunWorkflow.json create mode 100644 src/ResourceManagement/Logic/Logic.Tests/Utilities/RecordedDelegatingHandler.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/Utilities/ValidationUtilities.cs create mode 100644 src/ResourceManagement/Logic/Logic.Tests/packages.config create mode 100644 src/ResourceManagement/Logic/Logic.sln create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/ILogicManagementClient.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowAccessKeysOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowRunActionsOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowRunsOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowTriggerHistoriesOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowTriggersOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowVersionsOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowsOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/LogicManagementClient.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/LogicManagementClientExtensions.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/ContentHash.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/ContentLink.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/KeyType.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/ParameterType.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/RecurrenceFrequency.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/RegenerateSecretKeyParameters.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/ResourceReference.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/RunWorkflowParameters.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/Sku.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/SkuName.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/Workflow.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowAccessKey.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowFilter.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowParameter.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRun.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunAction.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunActionFilter.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunFilter.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunTrigger.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowSecretKeys.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowState.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowStatus.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTrigger.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerFilter.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerHistory.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerRecurrence.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowVersion.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowAccessKeysOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowAccessKeysOperationsExtensions.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunActionsOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunActionsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunsOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggerHistoriesOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggerHistoriesOperationsExtensions.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggersOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggersOperationsExtensions.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowVersionsOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowVersionsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowsOperations.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/LogicManagement.csproj create mode 100644 src/ResourceManagement/Logic/LogicManagement/Microsoft.Azure.Management.Logic.nuget.proj create mode 100644 src/ResourceManagement/Logic/LogicManagement/Microsoft.Azure.Management.Logic.nuspec create mode 100644 src/ResourceManagement/Logic/LogicManagement/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Logic/LogicManagement/packages.config create mode 100644 src/ResourceManagement/Logic/NuGet.Config diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Base.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Base.InMemoryTests.cs new file mode 100644 index 0000000000000..c264d6e7189d2 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Base.InMemoryTests.cs @@ -0,0 +1,35 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System.Net.Http; + using Microsoft.Azure.Management.Logic; + using Microsoft.Rest; + + public class BaseInMemoryTests + { + protected StringContent Empty = new StringContent(string.Empty); + + protected ILogicManagementClient CreateLogicManagementClient(RecordedDelegatingHandler handler) + { + var client = new LogicManagementClient(new TokenCredentials("token"), handler); + client.SubscriptionId = "66666666-6666-6666-6666-666666666666"; + + return client; + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowAccessKeys.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowAccessKeys.InMemoryTests.cs new file mode 100644 index 0000000000000..208c21464b196 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowAccessKeys.InMemoryTests.cs @@ -0,0 +1,424 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System.Linq; + using System.Net; + using System.Net.Http; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Xunit; + + public class WorkflowAccessKeysInMemoryTests : BaseInMemoryTests + { + #region Constructor + + private StringContent Key { get; set; } + + private StringContent KeyListResponse { get; set; } + + private StringContent SecretKeyResponse { get; set; } + + public WorkflowAccessKeysInMemoryTests() + { + var key = @"{ + 'id': '/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/accessKeys/default', + 'name': 'default' +}"; + var secretKeyResponse = @"{ + 'primarySecretKey':'8aa2Wy7zVNteALvwVCA4PV9RRRyZKqMpR-cOsEDA098', + 'secondarySecretKey':'mZTJ0CxAyzZhfpVqW__i2Zz7inZkihMPJkkrwaxUthk' +}"; + + var keyListResponseFormat = @"{{ 'value': [ {0} ], 'nextLink': 'http://management.azure.com/keyNextLink' }}"; + + this.Key = new StringContent(key); + this.SecretKeyResponse = new StringContent(secretKeyResponse); + this.KeyListResponse = new StringContent(string.Format(keyListResponseFormat, key)); + } + + #endregion + + #region WorkflowAccessKeys_List + + [Fact] + public void WorkflowAccessKeys_List_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.List(null, "wfName")); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.List("rgName", null)); + Assert.Throws<CloudException>(() => client.WorkflowAccessKeys.List("rgName", "wfName")); + } + + [Fact] + public void WorkflowAccessKeys_List_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.KeyListResponse + }; + + var response = client.WorkflowAccessKeys.List("rgName", "wfName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateKeyListResponse1(response); + } + + #endregion + + #region WorkflowAccessKeys_ListNext + + [Fact] + public void WorkflowAccessKeys_ListNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.ListNext(null)); + Assert.Throws<CloudException>(() => client.WorkflowAccessKeys.ListNext("http://management.azure.com/link")); + } + + [Fact] + public void WorkflowAccessKeys_ListNext_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.KeyListResponse + }; + + var response = client.WorkflowAccessKeys.ListNext("http://management.azure.com/link"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateKeyListResponse1(response); + } + + #endregion + + #region WorkflowAccessKeys_Get + + [Fact] + public void WorkflowAccessKeys_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.Get(null, "wfName", "accessKeyName")); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.Get("rgName", null, "accessKeyName")); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.Get("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowAccessKeys.Get("rgName", "wfName", "accessKeyName")); + } + + [Fact] + public void WorkflowAccessKeys_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Key + }; + + var key = client.WorkflowAccessKeys.Get("rgName", "wfName", "accessKeyName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateKey1(key); + } + + #endregion + + #region WorkflowAccessKeys_CreateOrUpdate + + [Fact] + public void WorkflowAccessKeys_CreateOrUpdate_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.CreateOrUpdate(null, "wfName", "accessKeyName", new WorkflowAccessKey())); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.CreateOrUpdate("rgName", null, "accessKeyName", new WorkflowAccessKey())); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.CreateOrUpdate("rgName", "wfName", null, new WorkflowAccessKey())); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.CreateOrUpdate("rgName", "wfName", "accessKeyName", null)); + Assert.Throws<CloudException>(() => client.WorkflowAccessKeys.CreateOrUpdate("rgName", "wfName", "accessKeyName", new WorkflowAccessKey())); + } + + [Fact] + public void WorkflowAccessKeys_CreateOrUpdate_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Key + }; + + var key = client.WorkflowAccessKeys.CreateOrUpdate("rgName", "wfName", "accessKeyName", new WorkflowAccessKey()); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Put); + + // Validates result. + this.ValidateKey1(key); + } + + [Fact] + public void WorkflowAccessKeys_CreateOrUpdate_Created() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.Created, + Content = this.Key + }; + + var key = client.WorkflowAccessKeys.CreateOrUpdate("rgName", "wfName", "accessKeyName", new WorkflowAccessKey()); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Put); + + // Validates result. + this.ValidateKey1(key); + } + + #endregion + + #region WorkflowAccessKeys_Delete + + [Fact] + public void WorkflowAccessKeys_Delete_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NotFound, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.Delete(null, "wfName", "accessKeyName")); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.Delete("rgName", null, "accessKeyName")); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.Delete("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowAccessKeys.Delete("rgName", "wfName", "accessKeyName")); + } + + [Fact] + public void WorkflowAccessKeys_Delete_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Empty + }; + + client.WorkflowAccessKeys.Delete("rgName", "wfName", "accessKeyName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Delete); + } + + [Fact] + public void WorkflowAccessKeys_Delete_NoContent() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NoContent, + Content = this.Empty + }; + + client.WorkflowAccessKeys.Delete("rgName", "wfName", "accessKeyName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Delete); + } + + #endregion + + #region WorkflowAccessKeys_ListSecretKeys + + [Fact] + public void WorkflowAccessKeys_ListSecretKeys_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NotFound, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.ListSecretKeys(null, "wfName", "accessKeyName")); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.ListSecretKeys("rgName", null, "accessKeyName")); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.ListSecretKeys("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowAccessKeys.ListSecretKeys("rgName", "wfName", "accessKeyName")); + } + + [Fact] + public void WorkflowAccessKeys_ListSecretKeys_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.SecretKeyResponse + }; + + var response = client.WorkflowAccessKeys.ListSecretKeys("rgName", "wfName", "accessKeyName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Post); + + this.ValidateSecretKeys1(response); + } + + #endregion + + #region WorkflowAccessKeys_RegenerateSecretKey + + [Fact] + public void WorkflowAccessKeys_RegenerateSecretKey_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.RegenerateSecretKey(null, "wfName", "accessKeyName", new RegenerateSecretKeyParameters())); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.RegenerateSecretKey("rgName", null, "accessKeyName", new RegenerateSecretKeyParameters())); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.RegenerateSecretKey("rgName", "wfName", null, new RegenerateSecretKeyParameters())); + Assert.Throws<ValidationException>(() => client.WorkflowAccessKeys.RegenerateSecretKey("rgName", "wfName", "accessKeyName", null)); + Assert.Throws<CloudException>(() => client.WorkflowAccessKeys.RegenerateSecretKey("rgName", "wfName", "accessKeyName", new RegenerateSecretKeyParameters())); + } + + [Fact] + public void WorkflowAccessKeys_RegenerateSecretKey_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.SecretKeyResponse + }; + + var response = client.WorkflowAccessKeys.RegenerateSecretKey("rgName", "wfName", "accessKeyName", new RegenerateSecretKeyParameters()); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Post); + + this.ValidateSecretKeys1(response); + } + + #endregion + + #region Validation + + private void ValidateKey1(WorkflowAccessKey key) + { + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/accessKeys/default", key.Id); + Assert.Equal("default", key.Name); + } + + private void ValidateKeyListResponse1(Page<WorkflowAccessKey> page) + { + Assert.Equal(1, page.Count()); + Assert.Equal("http://management.azure.com/keyNextLink", page.NextPageLink); + this.ValidateKey1(page.First()); + } + + private void ValidateSecretKeys1(WorkflowSecretKeys response) + { + Assert.Equal("8aa2Wy7zVNteALvwVCA4PV9RRRyZKqMpR-cOsEDA098", response.PrimarySecretKey); + Assert.Equal("mZTJ0CxAyzZhfpVqW__i2Zz7inZkihMPJkkrwaxUthk", response.SecondarySecretKey); + } + + #endregion + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs new file mode 100644 index 0000000000000..ffc48916aa384 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRunActions.InMemoryTests.cs @@ -0,0 +1,259 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System; + using System.Linq; + using System.Net; + using System.Net.Http; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Xunit; + + public class WorkflowRunActionsInMemoryTests : BaseInMemoryTests + { + #region Constructor + + private StringContent RunAction { get; set; } + + private StringContent RunActionListResponse { get; set; } + + public WorkflowRunActionsInMemoryTests() + { + var runAction = @"{ + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/08587692861242198730/actions/actName', + 'name':'actName', + 'type':'Microsoft.Logic/workflows/runs/actions', + 'properties':{ + 'startTime': '2015-06-23T21:47:00.0000001Z', + 'endTime':'2015-06-23T21:47:30.0000002Z', + 'status':'Succeeded', + 'code':'OK', + 'trackingId':'2c9e4726-a395-4841-bf54-5e826ec04c30', + 'inputsLink':{ + 'uri':'https://input.blob.core.windows.net/', + 'contentVersion':'""0x8D262D79EB296A8""', + 'contentSize':453, + 'contentHash':{ + 'algorithm':'md5', + 'value':'ivHEPG5bzwNB9IFYRqsqOw==' + } + }, + 'outputsLink':{ + 'uri':'https://output.blob.core.windows.net/', + 'contentVersion':'""0x8D262D79EB296A8""', + 'contentSize':713, + 'contentHash':{ + 'algorithm':'md5', + 'value':'BWhA5Z1Rxaz0MwuDeQBykw==' + } + } + } +}"; + + var runActionListResponseFormat = @"{{ 'value': [ {0} ], 'nextLink': 'http://management.azure.com/actionNextLink' }}"; + + this.RunAction = new StringContent(runAction); + this.RunActionListResponse = new StringContent(string.Format(runActionListResponseFormat, runAction)); + } + + #endregion + + #region WorkflowRunActions_List + + [Fact] + public void WorkflowRunActions_List_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowRunActions.List(null, "wfName", "rName")); + Assert.Throws<ValidationException>(() => client.WorkflowRunActions.List("rgName", null, "rName")); + Assert.Throws<ValidationException>(() => client.WorkflowRunActions.List("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowRunActions.List("rgName", "wfName", "rName")); + } + + [Fact] + public void WorkflowRunActions_List_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.RunActionListResponse + }; + + var response = client.WorkflowRunActions.List("rgName", "wfName", "rName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateRunActionListResponse1(response); + } + + #endregion + + #region WorkflowRunActions_ListNext + + [Fact] + public void WorkflowRunActions_ListNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowRunActions.ListNext(null)); + Assert.Throws<CloudException>(() => client.WorkflowRunActions.ListNext("http://management.azure.com/actionLink")); + } + + [Fact] + public void WorkflowRunActions_ListNext_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.RunActionListResponse + }; + + var response = client.WorkflowRunActions.ListNext("http://management.azure.com/actionLink"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateRunActionListResponse1(response); + } + + #endregion + + #region WorkflowRunActions_Get + + [Fact] + public void WorkflowRunActions_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowRunActions.Get(null, "wfName", "rName", "actName")); + Assert.Throws<ValidationException>(() => client.WorkflowRunActions.Get("rgName", null, "rName", "actName")); + Assert.Throws<ValidationException>(() => client.WorkflowRunActions.Get("rgName", "wfName", null, "actName")); + Assert.Throws<ValidationException>(() => client.WorkflowRunActions.Get("rgName", "wfName", "rName", null)); + Assert.Throws<CloudException>(() => client.WorkflowRunActions.Get("rgName", "wfName", "rName", "actName")); + } + + [Fact] + public void WorkflowRunActions_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.RunAction + }; + + var action = client.WorkflowRunActions.Get("rgName", "wfName", "rName", "actName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateRunAction1(action); + } + + #endregion + + #region Validation + + private void ValidateRunAction1(WorkflowRunAction action) + { + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/08587692861242198730/actions/actName", action.Id); + Assert.Equal("actName", action.Name); + Assert.Equal("Microsoft.Logic/workflows/runs/actions", action.Type); + + Assert.Equal(2015, action.StartTime.Value.Year); + Assert.Equal(06, action.StartTime.Value.Month); + Assert.Equal(23, action.StartTime.Value.Day); + Assert.Equal(21, action.StartTime.Value.Hour); + Assert.Equal(47, action.StartTime.Value.Minute); + Assert.Equal(00, action.StartTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, action.StartTime.Value.Kind); + + Assert.Equal(2015, action.EndTime.Value.Year); + Assert.Equal(06, action.EndTime.Value.Month); + Assert.Equal(23, action.EndTime.Value.Day); + Assert.Equal(21, action.EndTime.Value.Hour); + Assert.Equal(47, action.EndTime.Value.Minute); + Assert.Equal(30, action.EndTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, action.EndTime.Value.Kind); + + Assert.Equal(WorkflowStatus.Succeeded, action.Status); + Assert.Equal("OK", action.Code); + Assert.Equal("2c9e4726-a395-4841-bf54-5e826ec04c30", action.TrackingId); + + Assert.Equal("https://input.blob.core.windows.net/", action.InputsLink.Uri); + Assert.Equal("\"0x8D262D79EB296A8\"", action.InputsLink.ContentVersion); + Assert.Equal(453, action.InputsLink.ContentSize); + Assert.Equal("md5", action.InputsLink.ContentHash.Algorithm); + Assert.Equal("ivHEPG5bzwNB9IFYRqsqOw==", action.InputsLink.ContentHash.Value); + + Assert.Equal("https://output.blob.core.windows.net/", action.OutputsLink.Uri); + Assert.Equal("\"0x8D262D79EB296A8\"", action.OutputsLink.ContentVersion); + Assert.Equal(713, action.OutputsLink.ContentSize); + Assert.Equal("md5", action.OutputsLink.ContentHash.Algorithm); + Assert.Equal("BWhA5Z1Rxaz0MwuDeQBykw==", action.OutputsLink.ContentHash.Value); + } + + private void ValidateRunActionListResponse1(Page<WorkflowRunAction> page) + { + Assert.Equal(1, page.Count()); + Assert.Equal("http://management.azure.com/actionNextLink", page.NextPageLink); + this.ValidateRunAction1(page.First()); + } + + #endregion + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs new file mode 100644 index 0000000000000..cb3f5c3b7f967 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowRuns.InMemoryTests.cs @@ -0,0 +1,292 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System; + using System.Linq; + using System.Net; + using System.Net.Http; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Xunit; + + public class WorkflowRunsInMemoryTests : BaseInMemoryTests + { + #region Constructor + + private StringContent Run { get; set; } + + private StringContent RunListResponse { get; set; } + + public WorkflowRunsInMemoryTests() + { + var run = @"{ + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/08587692861242198730', + 'name':'08587692861242198730', + 'type':'Microsoft.Logic/workflows/runs', + 'properties':{ + 'startTime': '2015-06-23T21:47:00.0000001Z', + 'endTime':'2015-06-23T21:47:30.0000002Z', + 'status':'Succeeded', + 'correlationId':'4701405c-1543-4127-adb9-a396717a4ffb', + 'workflow':{ + 'name':'wfName/08587717906782501130', + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/versions/08587717906782501130', + 'type':'Microsoft.Logic/workflows/versions' + }, + 'trigger':{ + 'outputsLink':{ + 'uri':'https://someurl.blob.core.windows.net/someurl', + 'contentVersion':'""0x8D262D79DE77699""', + 'contentSize':2080, + 'contentHash':{ + 'algorithm':'md5', + 'value':'4Ikl8rJkAg3bN8C9I6nKFQ==' + } + } + }, + 'outputs':{ + } + } +}"; + + var runListResponseFormat = @"{{ 'value': [ {0} ], 'nextLink': 'http://management.azure.com/runNextLink' }}"; + + this.Run = new StringContent(run); + this.RunListResponse = new StringContent(string.Format(runListResponseFormat, run)); + } + + #endregion + + #region WorkflowRuns_List + + [Fact] + public void WorkflowRuns_List_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowRuns.List(null, "wfName")); + Assert.Throws<ValidationException>(() => client.WorkflowRuns.List("rgName", null)); + Assert.Throws<CloudException>(() => client.WorkflowRuns.List("rgName", "wfName")); + } + + [Fact] + public void WorkflowRuns_List_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.RunListResponse + }; + + var response = client.WorkflowRuns.List("rgName", "wfName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateRunListResponse1(response); + } + + #endregion + + #region WorkflowRuns_ListNext + + [Fact] + public void WorkflowRuns_ListNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowRuns.ListNext(null)); + Assert.Throws<CloudException>(() => client.WorkflowRuns.ListNext("http://management.azure.com/runNext")); + } + + [Fact] + public void WorkflowRuns_ListNext_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.RunListResponse + }; + + var response = client.WorkflowRuns.ListNext("http://management.azure.com/runNext"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateRunListResponse1(response); + } + + #endregion + + #region WorkflowRuns_Get + + [Fact] + public void WorkflowRuns_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowRuns.Get(null, "wfName", "rName")); + Assert.Throws<ValidationException>(() => client.WorkflowRuns.Get("rgName", null, "rName")); + Assert.Throws<ValidationException>(() => client.WorkflowRuns.Get("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowRuns.Get("rgName", "wfName", "rName")); + } + + [Fact] + public void WorkflowRuns_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Run + }; + + var run = client.WorkflowRuns.Get("rgName", "wfName", "rName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateRun1(run); + } + + #endregion + + #region WorkflowRuns_Cancel + + [Fact] + public void WorkflowRuns_Cancel_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowRuns.Cancel(null, "wfName", "rName")); + Assert.Throws<ValidationException>(() => client.WorkflowRuns.Cancel("rgName", null, "rName")); + Assert.Throws<ValidationException>(() => client.WorkflowRuns.Cancel("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowRuns.Cancel("rgName", "wfName", "rName")); + } + + [Fact] + public void WorkflowRuns_Cancel_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Empty + }; + + client.WorkflowRuns.Cancel("rgName", "wfName", "rName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateAction("cancel"); + } + + #endregion + + #region Validation + + private void ValidateRun1(WorkflowRun run) + { + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/08587692861242198730", run.Id); + Assert.Equal("08587692861242198730", run.Name); + Assert.Equal("Microsoft.Logic/workflows/runs", run.Type); + + Assert.Equal(2015, run.StartTime.Value.Year); + Assert.Equal(06, run.StartTime.Value.Month); + Assert.Equal(23, run.StartTime.Value.Day); + Assert.Equal(21, run.StartTime.Value.Hour); + Assert.Equal(47, run.StartTime.Value.Minute); + Assert.Equal(00, run.StartTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, run.StartTime.Value.Kind); + + Assert.Equal(2015, run.EndTime.Value.Year); + Assert.Equal(06, run.EndTime.Value.Month); + Assert.Equal(23, run.EndTime.Value.Day); + Assert.Equal(21, run.EndTime.Value.Hour); + Assert.Equal(47, run.EndTime.Value.Minute); + Assert.Equal(30, run.EndTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, run.EndTime.Value.Kind); + + Assert.Equal(WorkflowStatus.Succeeded, run.Status); + Assert.Equal("4701405c-1543-4127-adb9-a396717a4ffb", run.CorrelationId); + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/versions/08587717906782501130", run.Workflow.Id); + Assert.Equal("wfName/08587717906782501130", run.Workflow.Name); + Assert.Equal("Microsoft.Logic/workflows/versions", run.Workflow.Type); + Assert.Equal("https://someurl.blob.core.windows.net/someurl", run.Trigger.OutputsLink.Uri); + Assert.Equal("\"0x8D262D79DE77699\"", run.Trigger.OutputsLink.ContentVersion); + Assert.Equal(2080, run.Trigger.OutputsLink.ContentSize); + Assert.Equal("md5", run.Trigger.OutputsLink.ContentHash.Algorithm); + Assert.Equal("4Ikl8rJkAg3bN8C9I6nKFQ==", run.Trigger.OutputsLink.ContentHash.Value); + } + + private void ValidateRunListResponse1(Page<WorkflowRun> page) + { + Assert.Equal(1, page.Count()); + Assert.Equal("http://management.azure.com/runNextLink", page.NextPageLink); + this.ValidateRun1(page.First()); + } + + #endregion + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs new file mode 100644 index 0000000000000..abbb26b5a6b3b --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggerHistories.InMemoryTests.cs @@ -0,0 +1,260 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System; + using System.Linq; + using System.Net; + using System.Net.Http; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Xunit; + + public class WorkflowTriggerHistoriesInMemoryTests : BaseInMemoryTests + { + #region Constructor + + private StringContent TriggerHistory { get; set; } + + private StringContent TriggerHistoryListResponse { get; set; } + + public WorkflowTriggerHistoriesInMemoryTests() + { + var triggerHistory = @"{ + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/triggers/tName/histories/08587646315851320553', + 'name':'08587646315851320553', + 'type':'Microsoft.Logic/workflows/triggers/histories', + 'properties':{ + 'startTime': '2015-06-23T21:47:00.0000001Z', + 'endTime':'2015-06-23T21:47:30.0000002Z', + 'status':'Succeeded', + 'code':'OK', + 'trackingId':'bfeb415e-0419-4c6e-8b1f-31b2bc0ba431', + 'inputsLink':{ + 'uri':'https://flow.blob.core.windows.net/in', + 'contentVersion':'""0x8D28D2CDBC725AF""', + 'contentSize':690, + 'contentHash':{ + 'algorithm':'md5', + 'value':'f2fmvRYYLWeo4OQ1djP0hQ==' + } + }, + 'outputsLink':{ + 'uri':'https://flow.blob.core.windows.net/out', + 'contentVersion':'""0x8D28D2CDBE8B850""', + 'contentSize':543, + 'contentHash':{ + 'algorithm':'md5', + 'value':'Fq2wzoMQpAJYmc7wm/nqHg==' + } + }, + 'fired':false + } +}"; + + var triggerHistoryListResponseFormat = @"{{ 'value': [ {0} ], 'nextLink': 'http://management.azure.com/keyNextLink' }}"; + + this.TriggerHistory = new StringContent(triggerHistory); + this.TriggerHistoryListResponse = new StringContent(string.Format(triggerHistoryListResponseFormat, triggerHistory)); + } + + #endregion + + #region WorkflowTriggerHistories_List + + [Fact] + public void WorkflowTriggerHistories_List_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowTriggerHistories.List(null, "wfName", "triggerName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggerHistories.List("rgName", null, "triggerName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggerHistories.List("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowTriggerHistories.List("rgName", "wfName", "triggerName")); + } + + [Fact] + public void WorkflowTriggerHistories_List_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.TriggerHistoryListResponse + }; + + var response = client.WorkflowTriggerHistories.List("rgName", "wfName", "triggerName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateTriggerHistoryListResponse1(response); + } + + #endregion + + #region WorkflowTriggerHistories_ListNext + + [Fact] + public void WorkflowTriggerHistories_ListNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowTriggerHistories.ListNext(null)); + Assert.Throws<CloudException>(() => client.WorkflowTriggerHistories.ListNext("http://management.azure.com/historyLink")); + } + + [Fact] + public void WorkflowTriggerHistories_ListNext_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.TriggerHistoryListResponse + }; + + var response = client.WorkflowTriggerHistories.ListNext("http://management.azure.com/historyLink"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateTriggerHistoryListResponse1(response); + } + + #endregion + + #region WorkflowTriggerHistories_Get + + [Fact] + public void WorkflowTriggerHistories_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowTriggerHistories.Get(null, "wfName", "triggerName", "historyName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggerHistories.Get("rgName", null, "triggerName", "historyName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggerHistories.Get("rgName", "wfName", null, "historyName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggerHistories.Get("rgName", "wfName", "triggerName", null)); + Assert.Throws<CloudException>(() => client.WorkflowTriggerHistories.Get("rgName", "wfName", "triggerName", "historyName")); + } + + [Fact] + public void WorkflowTriggerHistories_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.TriggerHistory + }; + + var hitory = client.WorkflowTriggerHistories.Get("rgName", "wfName", "triggerName", "historyName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateTriggerHistory1(hitory); + } + + #endregion + + #region Validation + + private void ValidateTriggerHistory1(WorkflowTriggerHistory history) + { + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/triggers/tName/histories/08587646315851320553", history.Id); + Assert.Equal("08587646315851320553", history.Name); + Assert.Equal("Microsoft.Logic/workflows/triggers/histories", history.Type); + + Assert.Equal(2015, history.StartTime.Value.Year); + Assert.Equal(06, history.StartTime.Value.Month); + Assert.Equal(23, history.StartTime.Value.Day); + Assert.Equal(21, history.StartTime.Value.Hour); + Assert.Equal(47, history.StartTime.Value.Minute); + Assert.Equal(00, history.StartTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, history.StartTime.Value.Kind); + + Assert.Equal(2015, history.EndTime.Value.Year); + Assert.Equal(06, history.EndTime.Value.Month); + Assert.Equal(23, history.EndTime.Value.Day); + Assert.Equal(21, history.EndTime.Value.Hour); + Assert.Equal(47, history.EndTime.Value.Minute); + Assert.Equal(30, history.EndTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, history.EndTime.Value.Kind); + + Assert.Equal(WorkflowStatus.Succeeded, history.Status); + Assert.Equal("OK", history.Code); + Assert.Equal("bfeb415e-0419-4c6e-8b1f-31b2bc0ba431", history.TrackingId); + + Assert.Equal("https://flow.blob.core.windows.net/in", history.InputsLink.Uri); + Assert.Equal("\"0x8D28D2CDBC725AF\"", history.InputsLink.ContentVersion); + Assert.Equal(690, history.InputsLink.ContentSize); + Assert.Equal("md5", history.InputsLink.ContentHash.Algorithm); + Assert.Equal("f2fmvRYYLWeo4OQ1djP0hQ==", history.InputsLink.ContentHash.Value); + + Assert.Equal("https://flow.blob.core.windows.net/out", history.OutputsLink.Uri); + Assert.Equal("\"0x8D28D2CDBE8B850\"", history.OutputsLink.ContentVersion); + Assert.Equal(543, history.OutputsLink.ContentSize); + Assert.Equal("md5", history.OutputsLink.ContentHash.Algorithm); + Assert.Equal("Fq2wzoMQpAJYmc7wm/nqHg==", history.OutputsLink.ContentHash.Value); + } + + private void ValidateTriggerHistoryListResponse1(Page<WorkflowTriggerHistory> page) + { + Assert.Equal(1, page.Count()); + Assert.Equal("http://management.azure.com/keyNextLink", page.NextPageLink); + this.ValidateTriggerHistory1(page.First()); + } + + #endregion + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs new file mode 100644 index 0000000000000..146b3a18ad5ec --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowTriggers.InMemoryTests.cs @@ -0,0 +1,300 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System; + using System.Linq; + using System.Net; + using System.Net.Http; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Xunit; + + public class WorkflowTriggersInMemoryTests : BaseInMemoryTests + { + #region Constructor + + private StringContent Trigger { get; set; } + + private StringContent TriggerListResponse { get; set; } + + public WorkflowTriggersInMemoryTests() + { + var trigger = @"{ + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/triggers/tName', + 'name':'tName', + 'type':'Microsoft.Logic/workflows/triggers', + 'properties':{ + 'createdTime': '2015-06-23T21:47:00.0000001Z', + 'changedTime':'2015-06-23T21:47:30.0000002Z', + 'state':'Enabled', + 'status':'Waiting', + 'lastExecutionTime':'2015-01-01T01:01:01Z', + 'nextExecutionTime':'2015-01-01T02:01:01Z', + 'recurrence':{ + 'frequency':'Hour', + 'interval':1 + }, + 'workflow':{ + 'name':'wfName/08587692632149400005', + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/versions/08587692632149400005', + 'type':'Microsoft.Logic/workflows/versions' + } + } +}"; + + var triggerListResponseFormat = @"{{ 'value': [ {0} ], 'nextLink': 'http://management.azure.com/triggerNextLink' }}"; + + this.Trigger = new StringContent(trigger); + this.TriggerListResponse = new StringContent(string.Format(triggerListResponseFormat, trigger)); + } + + #endregion + + #region WorkflowTriggers_List + + [Fact] + public void WorkflowTriggers_List_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.List(null, "wfName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.List("rgName", null)); + Assert.Throws<CloudException>(() => client.WorkflowTriggers.List("rgName", "wfName")); + } + + [Fact] + public void WorkflowTriggers_List_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.TriggerListResponse + }; + + var response = client.WorkflowTriggers.List("rgName", "wfName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateTriggerListResponse1(response); + } + + #endregion + + #region WorkflowTriggers_ListNext + + [Fact] + public void WorkflowTriggers_ListNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.ListNext(null)); + Assert.Throws<CloudException>(() => client.WorkflowTriggers.ListNext("http://management.azure.com/triggerNext")); + } + + [Fact] + public void WorkflowTriggers_ListNext_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.TriggerListResponse + }; + + var response = client.WorkflowTriggers.ListNext("http://management.azure.com/triggerNext"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateTriggerListResponse1(response); + } + + #endregion + + #region WorkflowTriggers_Get + + [Fact] + public void WorkflowTriggers_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.Get(null, "wfName", "triggerName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.Get("rgName", null, "triggerName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.Get("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowTriggers.Get("rgName", "wfName", "triggerName")); + } + + [Fact] + public void WorkflowTriggers_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Trigger + }; + + var trigger = client.WorkflowTriggers.Get("rgName", "wfName", "triggerName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateTrigger1(trigger); + } + + #endregion + + #region WorkflowTriggers_Run + + [Fact] + public void WorkflowTriggers_Run_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = this.Empty + }; + + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.Run(null, "wfName", "triggerName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.Run("rgName", null, "triggerName")); + Assert.Throws<ValidationException>(() => client.WorkflowTriggers.Run("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowTriggers.Run("rgName", "wfName", "triggerName")); + } + + [Fact] + public void WorkflowTriggers_Run_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Empty + }; + + client.WorkflowTriggers.Run("rgName", "wfName", "triggerName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateAction("run"); + } + + #endregion + + #region Validation + + private void ValidateTrigger1(WorkflowTrigger trigger) + { + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/triggers/tName", trigger.Id); + Assert.Equal("tName", trigger.Name); + Assert.Equal("Microsoft.Logic/workflows/triggers", trigger.Type); + + Assert.Equal(2015, trigger.CreatedTime.Value.Year); + Assert.Equal(06, trigger.CreatedTime.Value.Month); + Assert.Equal(23, trigger.CreatedTime.Value.Day); + Assert.Equal(21, trigger.CreatedTime.Value.Hour); + Assert.Equal(47, trigger.CreatedTime.Value.Minute); + Assert.Equal(00, trigger.CreatedTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, trigger.CreatedTime.Value.Kind); + + Assert.Equal(2015, trigger.ChangedTime.Value.Year); + Assert.Equal(06, trigger.ChangedTime.Value.Month); + Assert.Equal(23, trigger.ChangedTime.Value.Day); + Assert.Equal(21, trigger.ChangedTime.Value.Hour); + Assert.Equal(47, trigger.ChangedTime.Value.Minute); + Assert.Equal(30, trigger.ChangedTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, trigger.ChangedTime.Value.Kind); + + Assert.Equal(WorkflowState.Enabled, trigger.State); + Assert.Equal(WorkflowStatus.Waiting, trigger.Status); + + Assert.Equal(2015, trigger.LastExecutionTime.Value.Year); + Assert.Equal(1, trigger.LastExecutionTime.Value.Month); + Assert.Equal(1, trigger.LastExecutionTime.Value.Day); + Assert.Equal(1, trigger.LastExecutionTime.Value.Hour); + Assert.Equal(1, trigger.LastExecutionTime.Value.Minute); + Assert.Equal(1, trigger.LastExecutionTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, trigger.LastExecutionTime.Value.Kind); + + Assert.Equal(2015, trigger.NextExecutionTime.Value.Year); + Assert.Equal(1, trigger.NextExecutionTime.Value.Month); + Assert.Equal(1, trigger.NextExecutionTime.Value.Day); + Assert.Equal(2, trigger.NextExecutionTime.Value.Hour); + Assert.Equal(1, trigger.NextExecutionTime.Value.Minute); + Assert.Equal(1, trigger.NextExecutionTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, trigger.NextExecutionTime.Value.Kind); + + Assert.Equal(RecurrenceFrequency.Hour, trigger.Recurrence.Frequency); + Assert.Equal(1, trigger.Recurrence.Interval); + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/versions/08587692632149400005", trigger.Workflow.Id); + Assert.Equal("wfName/08587692632149400005", trigger.Workflow.Name); + Assert.Equal("Microsoft.Logic/workflows/versions", trigger.Workflow.Type); + + } + + private void ValidateTriggerListResponse1(Page<WorkflowTrigger> page) + { + Assert.Equal(1, page.Count()); + Assert.Equal("http://management.azure.com/triggerNextLink", page.NextPageLink); + this.ValidateTrigger1(page.First()); + } + + #endregion + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs new file mode 100644 index 0000000000000..71b45875ea011 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/WorkflowVersions.InMemoryTests.cs @@ -0,0 +1,203 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System; + using System.Net; + using System.Net.Http; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Xunit; + + public class WorkflowVersionsInMemoryTests : BaseInMemoryTests + { + #region Constructor + + private StringContent WorkflowVersion { get; set; } + + public WorkflowVersionsInMemoryTests() + { + var workflowVersion = @"{ + 'id': '/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/versions/08587668503212262209', + 'name': '08587668503212262209', + 'type':'Microsoft.Logic/workflows/versions', + 'properties': { + 'createdTime': '2015-06-23T21:47:00.0000001Z', + 'changedTime':'2015-06-23T21:47:30.0000002Z', + 'state':'Enabled', + 'version':'08587717906782501130', + 'accessEndpoint':'https://westus.logic.azure.com/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName', + 'sku':{ + 'name':'Premium', + 'plan':{ + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Web/serverFarms/planName', + 'type':'Microsoft.Web/serverFarms', + 'name':'planName' + } + }, + 'definition':{ + '$schema':'http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#', + 'contentVersion':'1.0.0.0', + 'parameters':{ + 'runworkflowmanually':{ + 'defaultValue':true, + 'type':'Bool' + }, + 'subscription':{ + 'defaultValue':'1a66ce04-b633-4a0b-b2bc-a912ec8986a6', + 'type':'String' + }, + 'resourceGroup':{ + 'defaultValue':'logicapps-e2e', + 'type':'String' + }, + 'authentication':{ + 'defaultValue':{ + 'type':'ActiveDirectoryOAuth', + 'audience':'https://management.azure.com/', + 'tenant':'72f988bf-86f1-41af-91ab-2d7cd011db47', + 'clientId':'64011f29-3932-4168-b73d-adc835a56732', + 'secret':'q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=' + }, + 'type':'Object' + } + }, + 'triggers':{ + }, + 'actions':{ + 'listWorkflows':{ + 'type':'Http', + 'inputs':{ + 'method':'GET', + 'uri':'someUri', + 'authentication':'@parameters(""authentication"")' + }, + 'conditions':[ + + ] + } + }, + 'outputs':{ + } + }, + 'parameters':{ + 'parameter1':{ + 'type': 'string', + 'value': 'abc' + }, + 'parameter2':{ + 'type': 'array', + 'value': [1, 2, 3] + } + } + } +}"; + this.WorkflowVersion = new StringContent(workflowVersion); + } + + #endregion + + #region WorkflowVersions_Get + + [Fact] + public void WorkflowVersions_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<ValidationException>(() => client.WorkflowVersions.Get(null, "wfName", "version")); + Assert.Throws<ValidationException>(() => client.WorkflowVersions.Get("rgName", null, "version")); + Assert.Throws<ValidationException>(() => client.WorkflowVersions.Get("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.WorkflowVersions.Get("rgName", "wfName", "version")); + } + + public void WorkflowVersions_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.WorkflowVersion + }; + + var result = client.WorkflowVersions.Get("rgName", "wfName", "08587668503212262209"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateWorkflowVersion1(result); + } + + #endregion + + #region Validation + + private void ValidateWorkflowVersion1(WorkflowVersion workflow) + { + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName", workflow.Id); + Assert.Equal("wfName", workflow.Name); + Assert.Equal("Microsoft.Logic/workflows", workflow.Type); + Assert.Equal("westus", workflow.Location); + + // 2015-06-23T21:47:00.0000001Z + Assert.Equal(2015, workflow.CreatedTime.Value.Year); + Assert.Equal(06, workflow.CreatedTime.Value.Month); + Assert.Equal(23, workflow.CreatedTime.Value.Day); + Assert.Equal(21, workflow.CreatedTime.Value.Hour); + Assert.Equal(47, workflow.CreatedTime.Value.Minute); + Assert.Equal(00, workflow.CreatedTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, workflow.CreatedTime.Value.Kind); + + // 2015-06-23T21:47:30.0000002Z + Assert.Equal(2015, workflow.ChangedTime.Value.Year); + Assert.Equal(06, workflow.ChangedTime.Value.Month); + Assert.Equal(23, workflow.ChangedTime.Value.Day); + Assert.Equal(21, workflow.ChangedTime.Value.Hour); + Assert.Equal(47, workflow.ChangedTime.Value.Minute); + Assert.Equal(30, workflow.ChangedTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, workflow.ChangedTime.Value.Kind); + + Assert.Equal(WorkflowState.Enabled, workflow.State); + Assert.Equal("08587717906782501130", workflow.Version); + Assert.Equal("https://westus.logic.azure.com/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName", workflow.AccessEndpoint); + Assert.Equal(SkuName.Premium, workflow.Sku.Name); + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Web/serverFarms/planName", workflow.Sku.Plan.Id); + Assert.Equal("Microsoft.Web/serverFarms", workflow.Sku.Plan.Type); + Assert.Equal("planName", workflow.Sku.Plan.Name); + Assert.NotEmpty(workflow.Definition.ToString()); + Assert.Equal(null, workflow.DefinitionLink); + Assert.Equal(2, workflow.Parameters.Count); + Assert.Equal(ParameterType.String, workflow.Parameters["parameter1"].Type); + Assert.Equal(ParameterType.Array, workflow.Parameters["parameter2"].Type); + Assert.Equal(null, workflow.ParametersLink); + } + + #endregion + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs new file mode 100644 index 0000000000000..fb488b76ecd7c --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs @@ -0,0 +1,782 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Xunit; + + public class WorkflowsInMemoryTests : BaseInMemoryTests + { + #region Constructor + + private StringContent Workflow { get; set; } + + private StringContent WorkflowRun { get; set; } + + private StringContent WorkflowList { get; set; } + + public WorkflowsInMemoryTests() + { + var workflow = @"{ + 'id': '/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName', + 'name': 'wfName', + 'type':'Microsoft.Logic/workflows', + 'location':'westus', + 'properties': { + 'createdTime': '2015-06-23T21:47:00.0000001Z', + 'changedTime':'2015-06-23T21:47:30.0000002Z', + 'state':'Enabled', + 'version':'08587717906782501130', + 'accessEndpoint':'https://westus.logic.azure.com/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName', + 'sku':{ + 'name':'Premium', + 'plan':{ + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Web/serverFarms/planName', + 'type':'Microsoft.Web/serverFarms', + 'name':'planName' + } + }, + 'definition':{ + '$schema':'http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#', + 'contentVersion':'1.0.0.0', + 'parameters':{ + 'runworkflowmanually':{ + 'defaultValue':true, + 'type':'Bool' + }, + 'subscription':{ + 'defaultValue':'1a66ce04-b633-4a0b-b2bc-a912ec8986a6', + 'type':'String' + }, + 'resourceGroup':{ + 'defaultValue':'logicapps-e2e', + 'type':'String' + }, + 'authentication':{ + 'defaultValue':{ + 'type':'ActiveDirectoryOAuth', + 'audience':'https://management.azure.com/', + 'tenant':'72f988bf-86f1-41af-91ab-2d7cd011db47', + 'clientId':'64011f29-3932-4168-b73d-adc835a56732', + 'secret':'q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=' + }, + 'type':'Object' + } + }, + 'triggers':{ + }, + 'actions':{ + 'listWorkflows':{ + 'type':'Http', + 'inputs':{ + 'method':'GET', + 'uri':'someUri', + 'authentication':'@parameters(""authentication"")' + }, + 'conditions':[ + + ] + } + }, + 'outputs':{ + } + }, + 'parameters':{ + 'parameter1':{ + 'type': 'string', + 'value': 'abc' + }, + 'parameter2':{ + 'type': 'array', + 'value': [1, 2, 3] + } + } + } +}"; + + var run = @"{ + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/run87646872399558047', + 'name':'run87646872399558047', + 'type':'Microsoft.Logic/workflows/runs', + 'properties':{ + 'startTime':'2015-06-23T21:47:00.0000000Z', + 'endTime':'2015-06-23T21:47:30.1300000Z', + 'status':'Succeeded', + 'correlationId':'a04da054-a1ae-409d-80ff-b09febefc357', + 'workflow':{ + 'name':'wfName/ver87717906782501130', + 'id':'/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/versions/ver87717906782501130', + 'type':'Microsoft.Logic/workflows/versions' + }, + 'trigger':{ + 'name':'6A65DA9E-CFF8-4D3E-B5FB-691739C7AD61' + }, + 'outputs':{ + } + } +}"; + var workflowListFormat = @"{{ 'value':[ {0} ], 'nextLink': 'http://workflowlist1nextlink' }}"; + + this.Workflow = new StringContent(workflow); + this.WorkflowRun = new StringContent(run); + this.WorkflowList = new StringContent(string.Format(workflowListFormat, workflow)); + } + + #endregion + + #region Workflows_ListBySubscription + + [Fact] + public void Workflows_ListBySubscription_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<CloudException>(() => client.Workflows.ListBySubscription()); + } + + public void Workflows_ListBySubscription_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.WorkflowList + }; + + var result = client.Workflows.ListByResourceGroup("rgName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateWorkflowList1(result); + } + + #endregion + + #region Workflows_ListBySubscriptionNext + + [Fact] + public void Workflows_ListBySubscriptionNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<ValidationException>(() => client.Workflows.ListBySubscriptionNext(null)); + Assert.Throws<CloudException>(() => client.Workflows.ListBySubscriptionNext("http://management.azure.com/nextLink")); + } + + public void Workflows_ListBySubscriptionNext_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.WorkflowList + }; + + var result = client.Workflows.ListBySubscriptionNext("http://management.azure.com/nextLink"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateWorkflowList1(result); + } + + #endregion + + #region Workflows_ListByResourceGroup + + [Fact] + public void Workflows_ListByResourceGroup_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<ValidationException>(() => client.Workflows.ListByResourceGroup(null)); + Assert.Throws<CloudException>(() => client.Workflows.ListByResourceGroup("rgName")); + } + + [Fact] + public void Workflows_ListByResourceGroup_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.WorkflowList + }; + + var result = client.Workflows.ListByResourceGroup("rgName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateWorkflowList1(result); + } + + #endregion + + #region Workflows_ListByResourceGroupNext + + [Fact] + public void Workflows_ListByResourceGroupNext_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<ValidationException>(() => client.Workflows.ListByResourceGroupNext(null)); + Assert.Throws<CloudException>(() => client.Workflows.ListByResourceGroupNext("http://management.azure.com/nextLink")); + } + + public void Workflows_ListByResourceGroupNext_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.WorkflowList + }; + + var result = client.Workflows.ListByResourceGroupNext("http://management.azure.com/nextLink"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateWorkflowList1(result); + } + + #endregion + + #region Workflows_CreateOrUpdate + + [Fact] + public void Workflows_CreateOrUpdate_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<ValidationException>(() => client.Workflows.CreateOrUpdate(null, "wfName", new Workflow())); + Assert.Throws<ValidationException>(() => client.Workflows.CreateOrUpdate("rgName", null, new Workflow())); + Assert.Throws<ValidationException>(() => client.Workflows.CreateOrUpdate("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.Workflows.CreateOrUpdate("rgName", "wfName", new Workflow())); + } + + [Fact] + public void Workflows_CreateOrUpdate_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Workflow + }; + + var workflow = client.Workflows.CreateOrUpdate("rgName", "wfName", new Workflow()); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Put); + + // Validates result. + this.ValidateWorkflow1(workflow); + } + + [Fact] + public void Workflows_CreateOrUpdate_Created() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.Created, + Content = this.Workflow + }; + + var workflow = client.Workflows.CreateOrUpdate("rgName", "wfName", new Workflow()); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Put); + + // Validates result. + this.ValidateWorkflow1(workflow); + } + + #endregion + + #region Workflows_Delete + + [Fact] + public void Workflows_Delete_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NotFound + }; + + Assert.Throws<ValidationException>(() => client.Workflows.Delete(null, "wfName")); + Assert.Throws<ValidationException>(() => client.Workflows.Delete("rgName", null)); + Assert.Throws<CloudException>(() => client.Workflows.Delete("rgName", "wfName")); + } + + [Fact] + public void Workflows_Delete_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK + }; + + client.Workflows.Delete("rgName", "wfName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Delete); + } + + [Fact] + public void Workflows_Delete_NoContent() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NoContent + }; + + client.Workflows.Delete("rgName", "wfName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Delete); + } + + #endregion + + #region Workflows_Get + + [Fact] + public void Workflows_Get_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.NotFound, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<ValidationException>(() => client.Workflows.Get(null, "wfName")); + Assert.Throws<ValidationException>(() => client.Workflows.Get("rgName", null)); + Assert.Throws<CloudException>(() => client.Workflows.Get("rgName", "wfName")); + } + + [Fact] + public void Workflows_Get_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Workflow + }; + + var result = client.Workflows.Get("rgName", "wfName"); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateWorkflow1(result); + } + + #endregion + + #region Workflows_Update + + [Fact] + public void Workflows_Update_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<ValidationException>(() => client.Workflows.Update(null, "wfName", new Workflow())); + Assert.Throws<ValidationException>(() => client.Workflows.Update("rgName", null, new Workflow())); + Assert.Throws<ValidationException>(() => client.Workflows.Update("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.Workflows.Update("rgName", "wfName", new Workflow())); + } + + [Fact] + public void Workflows_Update_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.Workflow + }; + + var workflow = new Workflow() + { + Tags = new Dictionary<string, string>() + }; + workflow.Tags.Add("abc", "def"); + workflow = client.Workflows.Update("rgName", "wfName", workflow); + + // Validates request. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateMethod(new HttpMethod("PATCH")); + + // Validates result. + this.ValidateWorkflow1(workflow); + } + + #endregion + + #region Workflows_Run + + [Fact] + public void Workflows_Run_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError, + Content = new StringContent(string.Empty) + }; + + Assert.Throws<ValidationException>(() => client.Workflows.Run(null, "wfName", new RunWorkflowParameters())); + Assert.Throws<ValidationException>(() => client.Workflows.Run("rgName", null, new RunWorkflowParameters())); + Assert.Throws<ValidationException>(() => client.Workflows.Run("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.Workflows.Run("rgName", "wfName", new RunWorkflowParameters())); + } + + [Fact] + public void Workflows_Run_Success() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + var accepted = new HttpResponseMessage() + { + StatusCode = HttpStatusCode.Accepted, + Content = new StringContent(string.Empty) + }; + accepted.Headers.Location = new Uri("https://manage.kajdflajsd/sajdlkfjsal"); + accepted.Headers.RetryAfter = new System.Net.Http.Headers.RetryConditionHeaderValue(TimeSpan.FromSeconds(1)); + handler.Responses.Add(accepted); + handler.Responses.Add(new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK, + Content = this.WorkflowRun + }); + + var workflowRun = client.Workflows.Run("rgName", "wfName", new RunWorkflowParameters()); + + // Validates requests. + handler.Requests[0].ValidateAuthorizationHeader(); + handler.Requests[0].ValidateMethod(HttpMethod.Post); + + handler.Requests[1].ValidateAuthorizationHeader(); + handler.Requests[1].ValidateMethod(HttpMethod.Get); + + // Validates result. + this.ValidateWorkflowRun1(workflowRun); + } + + #endregion + + #region Workflows_Disable + + [Fact] + public void Workflows_Disable_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError + }; + + Assert.Throws<ValidationException>(() => client.Workflows.Disable(null, "wfName")); + Assert.Throws<ValidationException>(() => client.Workflows.Disable("rgName", null)); + Assert.Throws<CloudException>(() => client.Workflows.Disable("rgName", "wfName")); + } + + [Fact] + public void Workflows_Disable_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK + }; + + client.Workflows.Disable("rgName", "wfName"); + + // Validates requests. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateAction("disable"); + } + + #endregion + + #region Workflows_Enable + + [Fact] + public void Workflows_Enable_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError + }; + + Assert.Throws<ValidationException>(() => client.Workflows.Enable(null, "wfName")); + Assert.Throws<ValidationException>(() => client.Workflows.Enable("rgName", null)); + Assert.Throws<CloudException>(() => client.Workflows.Enable("rgName", "wfName")); + } + + [Fact] + public void Workflows_Enable_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK + }; + + client.Workflows.Enable("rgName", "wfName"); + + // Validates requests. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateAction("enable"); + } + + #endregion + + #region Workflows_Validate + + [Fact] + public void Workflows_Validate_Exception() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.InternalServerError + }; + + Assert.Throws<ValidationException>(() => client.Workflows.Validate(null, "wfName", new Workflow())); + Assert.Throws<ValidationException>(() => client.Workflows.Validate("rgName", null, new Workflow())); + Assert.Throws<ValidationException>(() => client.Workflows.Validate("rgName", "wfName", null)); + Assert.Throws<CloudException>(() => client.Workflows.Validate("rgName", "wfName", new Workflow())); + } + + [Fact] + public void Workflows_Validate_OK() + { + var handler = new RecordedDelegatingHandler(); + var client = this.CreateLogicManagementClient(handler); + + handler.Response = new HttpResponseMessage + { + StatusCode = HttpStatusCode.OK + }; + + client.Workflows.Validate("rgName", "wfName", new Workflow()); + + // Validates requests. + handler.Request.ValidateAuthorizationHeader(); + handler.Request.ValidateAction("validate"); + } + + #endregion + + #region Validation + + private void ValidateWorkflowRun1(WorkflowRun workflowRun) + { + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/runs/run87646872399558047", workflowRun.Id); + Assert.Equal("run87646872399558047", workflowRun.Name); + Assert.Equal("Microsoft.Logic/workflows/runs", workflowRun.Type); + + Assert.Equal(2015, workflowRun.StartTime.Value.Year); + Assert.Equal(06, workflowRun.StartTime.Value.Month); + Assert.Equal(23, workflowRun.StartTime.Value.Day); + Assert.Equal(21, workflowRun.StartTime.Value.Hour); + Assert.Equal(47, workflowRun.StartTime.Value.Minute); + Assert.Equal(00, workflowRun.StartTime.Value.Second); + Assert.Equal(00, workflowRun.StartTime.Value.Millisecond); + Assert.Equal(DateTimeKind.Utc, workflowRun.StartTime.Value.Kind); + + Assert.Equal(2015, workflowRun.EndTime.Value.Year); + Assert.Equal(06, workflowRun.EndTime.Value.Month); + Assert.Equal(23, workflowRun.EndTime.Value.Day); + Assert.Equal(21, workflowRun.EndTime.Value.Hour); + Assert.Equal(47, workflowRun.EndTime.Value.Minute); + Assert.Equal(30, workflowRun.EndTime.Value.Second); + Assert.Equal(130, workflowRun.EndTime.Value.Millisecond); + Assert.Equal(DateTimeKind.Utc, workflowRun.EndTime.Value.Kind); + + Assert.Equal(WorkflowStatus.Succeeded, workflowRun.Status.Value); + Assert.Equal("a04da054-a1ae-409d-80ff-b09febefc357", workflowRun.CorrelationId); + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName/versions/ver87717906782501130", workflowRun.Workflow.Id); + Assert.Equal("Microsoft.Logic/workflows/versions", workflowRun.Workflow.Type); + Assert.Equal("wfName/ver87717906782501130", workflowRun.Workflow.Name); + + Assert.Equal("6A65DA9E-CFF8-4D3E-B5FB-691739C7AD61", workflowRun.Trigger.Name); + Assert.Equal(0, workflowRun.Outputs.Count); + } + + private void ValidateWorkflow1(Workflow workflow) + { + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName", workflow.Id); + Assert.Equal("wfName", workflow.Name); + Assert.Equal("Microsoft.Logic/workflows", workflow.Type); + Assert.Equal("westus", workflow.Location); + + // 2015-06-23T21:47:00.0000001Z + Assert.Equal(2015, workflow.CreatedTime.Value.Year); + Assert.Equal(06, workflow.CreatedTime.Value.Month); + Assert.Equal(23, workflow.CreatedTime.Value.Day); + Assert.Equal(21, workflow.CreatedTime.Value.Hour); + Assert.Equal(47, workflow.CreatedTime.Value.Minute); + Assert.Equal(00, workflow.CreatedTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, workflow.CreatedTime.Value.Kind); + + // 2015-06-23T21:47:30.0000002Z + Assert.Equal(2015, workflow.ChangedTime.Value.Year); + Assert.Equal(06, workflow.ChangedTime.Value.Month); + Assert.Equal(23, workflow.ChangedTime.Value.Day); + Assert.Equal(21, workflow.ChangedTime.Value.Hour); + Assert.Equal(47, workflow.ChangedTime.Value.Minute); + Assert.Equal(30, workflow.ChangedTime.Value.Second); + Assert.Equal(DateTimeKind.Utc, workflow.ChangedTime.Value.Kind); + + Assert.Equal(WorkflowState.Enabled, workflow.State); + Assert.Equal("08587717906782501130", workflow.Version); + Assert.Equal("https://westus.logic.azure.com/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Logic/workflows/wfName", workflow.AccessEndpoint); + Assert.Equal(SkuName.Premium, workflow.Sku.Name); + Assert.Equal("/subscriptions/66666666-6666-6666-6666-666666666666/resourceGroups/rgName/providers/Microsoft.Web/serverFarms/planName", workflow.Sku.Plan.Id); + Assert.Equal("Microsoft.Web/serverFarms", workflow.Sku.Plan.Type); + Assert.Equal("planName", workflow.Sku.Plan.Name); + Assert.NotEmpty(workflow.Definition.ToString()); + Assert.Equal(null, workflow.DefinitionLink); + Assert.Equal(2, workflow.Parameters.Count); + Assert.Equal(ParameterType.String, workflow.Parameters["parameter1"].Type); + Assert.Equal(ParameterType.Array, workflow.Parameters["parameter2"].Type); + Assert.Equal(null, workflow.ParametersLink); + } + + private void ValidateWorkflowList1(Page<Workflow> result) + { + Assert.Equal(1, result.Count()); + this.ValidateWorkflow1(result.First()); + Assert.Equal("http://workflowlist1nextlink", result.NextPageLink); + } + + #endregion + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/Logic.Tests.csproj b/src/ResourceManagement/Logic/Logic.Tests/Logic.Tests.csproj new file mode 100644 index 0000000000000..bb4ccc4d5ba16 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/Logic.Tests.csproj @@ -0,0 +1,143 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\..\..\..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> + <Import Project="..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\..\..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" /> + <PropertyGroup> + <SDKTestProject>true</SDKTestProject> + <AutoRestProjects>true</AutoRestProjects> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{07FD28BF-5DE5-432D-99A1-1FD5EE738446}</ProjectGuid> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>Test.Azure.Management.Logic</RootNamespace> + <AssemblyName>Test.Azure.Management.Logic</AssemblyName> + <OutputType>Library</OutputType> + <FileAlignment>512</FileAlignment> + <RestorePackages>true</RestorePackages> + </PropertyGroup> + <Import Project="..\..\..\..\tools\Library.Settings.targets" /> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.assert, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath> + <Private>True</Private> + </Reference> + <Reference Include="xunit.core, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL"> + <HintPath>$(LibraryNugetPackageFolder)\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> + <Private>True</Private> + </Reference> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj"> + <Project>{f144a258-3c38-447a-993e-967f74a1a76c}</Project> + <Name>ClientRuntime.Azure.TestFramework</Name> + </ProjectReference> + <ProjectReference Include="..\LogicManagement\LogicManagement.csproj"> + <Project>{9ba56208-b184-4b1d-830f-16146bbd8dd7}</Project> + <Name>LogicManagement</Name> + <Properties>SkipValidatePackageReferences=true</Properties> + </ProjectReference> + </ItemGroup> + <ItemGroup> + <None Include="packages.config" /> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests\CreateAndDelete.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests\CreateAndList.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests\RegenerateAndListSecretKeys.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowRunActionsScenarioTests\ListAndGetActions.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowRunsScenarioTests\RunGetAndListRuns.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowsScenarioTests\CreateAndDeleteWorkflow.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowsScenarioTests\CreateAndEnableDisableWorkflow.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowsScenarioTests\DeleteAllWorkflows.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowsScenarioTests\ListWorkflow.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowsScenarioTests\UpdateAndRunWorkflow.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowsScenarioTests\ValidateAndRunWorkflow.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests\GetHistory.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests\ListHistory.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowTriggersScenarioTests\GetAndListTriggers.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowTriggersScenarioTests\ListNoTrigger.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowTriggersScenarioTests\RunTrigger.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="SessionRecords\Test.Azure.Management.Logic.WorkflowVersionsScenarioTests\CreateAndGetWorkflowVersion.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + </ItemGroup> + <ItemGroup> + <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="InMemoryTests\Base.InMemoryTests.cs" /> + <Compile Include="InMemoryTests\WorkflowAccessKeys.InMemoryTests.cs" /> + <Compile Include="InMemoryTests\WorkflowRunActions.InMemoryTests.cs" /> + <Compile Include="InMemoryTests\WorkflowRuns.InMemoryTests.cs" /> + <Compile Include="InMemoryTests\Workflows.InMemoryTests.cs" /> + <Compile Include="InMemoryTests\WorkflowTriggerHistories.InMemoryTests.cs" /> + <Compile Include="InMemoryTests\WorkflowTriggers.InMemoryTests.cs" /> + <Compile Include="InMemoryTests\WorkflowVersions.InMemoryTests.cs" /> + <Compile Include="ScenarioTests\Base.ScenarioTests.cs" /> + <Compile Include="ScenarioTests\WorkflowAccessKeys.ScenarioTests.cs" /> + <Compile Include="ScenarioTests\WorkflowRunAction.ScenarioTests.cs" /> + <Compile Include="ScenarioTests\WorkflowRuns.ScenarioTests.cs" /> + <Compile Include="ScenarioTests\Workflows.ScenarioTests.cs" /> + <Compile Include="ScenarioTests\WorkflowTriggerHistories.ScenarioTests.cs" /> + <Compile Include="ScenarioTests\WorkflowTriggers.ScenarioTests.cs" /> + <Compile Include="ScenarioTests\WorkflowVersions.ScenarioTests.cs" /> + <Compile Include="Utilities\ValidationUtilities.cs" /> + <Compile Include="Utilities\RecordedDelegatingHandler.cs" /> + </ItemGroup> + <ItemGroup /> + <ItemGroup> + <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <Import Project="$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props" Condition="Exists('$(LibraryNugetPackageFolder)\xunit.runner.visualstudio.0.99.9-build1021\build\net20\xunit.runner.visualstudio.props')" /> +</Project> \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/Properties/AssemblyInfo.cs b/src/ResourceManagement/Logic/Logic.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000000..b7d006db9293c --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Reflection; +using System.Resources; +using System.Runtime.InteropServices; +using Xunit; + +[assembly: AssemblyTitle("Microsoft Azure Logic App Management Library Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Azure .NET SDK Tests")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("en")] + +[assembly: ComVisible(false)] + +[assembly: CollectionBehavior(DisableTestParallelization = true, MaxParallelThreads = 1)] diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs new file mode 100644 index 0000000000000..df4ce727cf77b --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs @@ -0,0 +1,131 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using Microsoft.Azure.Management.Logic; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + + public class BaseScenarioTests : TestBase + { + protected string resourceGroupName = "flowrg"; + protected string location = "westus"; + + protected LogicManagementClient GetLogicManagementClient() + { + return TestBase.GetServiceClient<LogicManagementClient>(); + } + + #region Data + + protected string definition = @"{ + '$schema':'http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#', + 'contentVersion':'1.0.0.0', + 'parameters':{ + 'runworkflowmanually':{ + 'defaultValue':true, + 'type':'Bool' + }, + 'subscription':{ + 'defaultValue':'1a66ce04-b633-4a0b-b2bc-a912ec8986a6', + 'type':'String' + }, + 'resourceGroup':{ + 'defaultValue':'logicapps-e2e', + 'type':'String' + }, + 'authentication':{ + 'defaultValue':{ + 'type':'ActiveDirectoryOAuth', + 'audience':'https://management.azure.com/', + 'tenant':'72f988bf-86f1-41af-91ab-2d7cd011db47', + 'clientId':'64011f29-3932-4168-b73d-adc835a56732', + 'secret':'q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=' + }, + 'type':'Object' + } + }, + 'triggers':{ + }, + 'actions':{ + 'listWorkflows':{ + 'type':'Http', + 'inputs':{ + 'method':'GET', + 'uri':'someUri', + 'authentication':'@parameters(\'authentication\')' + }, + 'conditions':[ + + ] + } + }, + 'outputs':{ + } +}"; + + protected string simpleDefinition = @"{ + '$schema':'http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#', + 'contentVersion':'1.0.0.0', + 'parameters':{ + }, + 'triggers':{ + }, + 'actions':{ + 'httpAction':{ + 'type':'Http', + 'inputs':{ + 'method':'GET', + 'uri':'invalidUri' + }, + 'conditions':[ + ] + } + }, + 'outputs':{ + } +}"; + + protected string simpleTriggerDefinition = @"{ + '$schema':'http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#', + 'contentVersion':'1.0.0.0', + 'parameters':{ + }, + 'triggers':{ + 'httpTrigger':{ + 'type':'Http', + 'inputs':{ + 'method':'GET', + 'uri':'invalidUri' + }, + 'recurrence':{ + 'frequency':'Minute', + 'interval':60 + } + } + }, + 'actions':{ + }, + 'outputs':{ + 'output1':{ + 'type':'string', + 'value':'@trigger().outputs', + } + } +}"; + #endregion + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowAccessKeys.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowAccessKeys.ScenarioTests.cs new file mode 100644 index 0000000000000..91796a0553109 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowAccessKeys.ScenarioTests.cs @@ -0,0 +1,179 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System; + using System.Linq; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; + using Xunit; + + [Collection("WorkflowAccessKeysScenarioTests")] + public class WorkflowAccessKeysScenarioTests : BaseScenarioTests + { + [Fact] + public void CreateAndDelete() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + string accessKeyName = TestUtilities.GenerateName("accesskey"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + State = WorkflowState.Enabled, + Definition = JToken.Parse(this.simpleDefinition) + }); + + // Create an access key + var accessKey = client.WorkflowAccessKeys.CreateOrUpdate( + this.resourceGroupName, + workflowName, + accessKeyName, + new WorkflowAccessKey + { + NotBefore = DateTime.UtcNow.AddDays(1), + NotAfter = DateTime.UtcNow.AddDays(7) + }); + + Assert.NotNull(accessKey.NotBefore); + Assert.NotNull(accessKey.NotAfter); + + // Delete the access key + client.WorkflowAccessKeys.Delete(this.resourceGroupName, workflowName, accessKeyName); + + // List access key and verify only one key + var accesskeys = client.WorkflowAccessKeys.List(this.resourceGroupName, workflowName); + Assert.Equal(1, accesskeys.Count()); + } + } + + [Fact] + public void CreateAndList() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + string accessKeyName = TestUtilities.GenerateName("accesskey"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + State = WorkflowState.Enabled, + Definition = JToken.Parse(this.simpleDefinition) + }); + + // Create an access key + var accessKey = client.WorkflowAccessKeys.CreateOrUpdate( + this.resourceGroupName, + workflowName, + accessKeyName, + new WorkflowAccessKey + { + NotBefore = DateTime.UtcNow.AddDays(1), + NotAfter = DateTime.UtcNow.AddDays(7) + }); + + Assert.NotNull(accessKey.NotBefore); + Assert.NotNull(accessKey.NotAfter); + + // List access key and verify the response + var accesskeys = client.WorkflowAccessKeys.List(this.resourceGroupName, workflowName); + Assert.Equal(2, accesskeys.Count()); + } + } + + [Fact] + public void RegenerateAndListSecretKeys() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + string accessKeyName = TestUtilities.GenerateName("accesskey"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + State = WorkflowState.Enabled, + Definition = JToken.Parse(this.simpleDefinition) + }); + + // Create an access key + var accessKey = client.WorkflowAccessKeys.CreateOrUpdate( + this.resourceGroupName, + workflowName, + accessKeyName, + new WorkflowAccessKey + { + NotBefore = DateTime.UtcNow.AddDays(1), + NotAfter = DateTime.UtcNow.AddDays(7) + }); + + Assert.NotNull(accessKey.NotBefore); + Assert.NotNull(accessKey.NotAfter); + + // Regenerate seret key + var secretKeys = client.WorkflowAccessKeys.RegenerateSecretKey( + this.resourceGroupName, + workflowName, + accessKeyName, + new RegenerateSecretKeyParameters + { + KeyType = KeyType.Primary + }); + + Assert.NotEmpty(secretKeys.PrimarySecretKey); + Assert.NotEmpty(secretKeys.SecondarySecretKey); + + // List secrets and verify response + secretKeys = client.WorkflowAccessKeys.ListSecretKeys(this.resourceGroupName, workflowName, accessKeyName); + Assert.NotEmpty(secretKeys.PrimarySecretKey); + Assert.NotEmpty(secretKeys.SecondarySecretKey); + } + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowRunAction.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowRunAction.ScenarioTests.cs new file mode 100644 index 0000000000000..80b119da798a8 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowRunAction.ScenarioTests.cs @@ -0,0 +1,75 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System.Linq; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; + using Xunit; + + [Collection("WorkflowRunActionsScenarioTests")] + public class WorkflowRunActionsScenarioTests : BaseScenarioTests + { + [Fact] + public void ListAndGetActions() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + State = WorkflowState.Enabled, + Definition = JToken.Parse(this.simpleDefinition) + }); + + // Run the workflow + var run = client.Workflows.Run(this.resourceGroupName, workflowName, new RunWorkflowParameters()); + + // List the actions + var actions = client.WorkflowRunActions.List(this.resourceGroupName, workflowName, run.Name); + + Assert.Equal(1, actions.Count()); + var action = actions.First(); + Assert.NotNull(action.StartTime); + Assert.NotNull(action.EndTime); + Assert.NotNull(action.Code); + Assert.NotNull(action.Name); + + // Get the action + action = client.WorkflowRunActions.Get(this.resourceGroupName, workflowName, run.Name, action.Name); + + Assert.NotNull(action.StartTime); + Assert.NotNull(action.EndTime); + Assert.NotNull(action.Code); + Assert.NotNull(action.Name); + } + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowRuns.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowRuns.ScenarioTests.cs new file mode 100644 index 0000000000000..a61c48c54f8e4 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowRuns.ScenarioTests.cs @@ -0,0 +1,69 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System.Linq; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; + using Xunit; + + [Collection("WorkflowRunsScenarioTests")] + public class WorkflowRunsScenarioTests : BaseScenarioTests + { + [Fact] + public void RunGetAndListRuns() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + State = WorkflowState.Enabled, + Definition = JToken.Parse(this.simpleDefinition) + }); + + var firstRun = client.Workflows.Run(this.resourceGroupName, workflowName, new RunWorkflowParameters()); + var secondRun = client.Workflows.Run(this.resourceGroupName, workflowName, new RunWorkflowParameters()); + + var run = client.WorkflowRuns.Get(this.resourceGroupName, workflowName, secondRun.Name); + Assert.Equal(secondRun.Name, run.Name); + + var list = client.WorkflowRuns.List(this.resourceGroupName, workflowName, 1, r => r.Status == WorkflowStatus.Failed); + Assert.Equal(1, list.Count()); + + var list2 = client.WorkflowRuns.List(this.resourceGroupName, workflowName); + Assert.NotEmpty(list2); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs new file mode 100644 index 0000000000000..361479b46bb9e --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggerHistories.ScenarioTests.cs @@ -0,0 +1,106 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System.Linq; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; + using Xunit; + + [Collection("WorkflowTriggerHistoriesScenarioTests")] + public class WorkflowTriggerHistoriesScenarioTests : BaseScenarioTests + { + [Fact] + public void ListHistory() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + Definition = JToken.Parse(this.simpleTriggerDefinition) + }); + + // List the histories + var histories = client.WorkflowTriggerHistories.List(this.resourceGroupName, workflowName, "httpTrigger"); + + // Run the trigger + client.WorkflowTriggers.Run(this.resourceGroupName, workflowName, "httpTrigger"); + + // List the histories + histories = client.WorkflowTriggerHistories.List(this.resourceGroupName, workflowName, "httpTrigger"); + Assert.NotEmpty(histories); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + + [Fact] + public void GetHistory() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + Definition = JToken.Parse(this.simpleTriggerDefinition) + }); + + // Run the trigger + client.WorkflowTriggers.Run(this.resourceGroupName, workflowName, "httpTrigger"); + + // List the histories + var histories = client.WorkflowTriggerHistories.List(this.resourceGroupName, workflowName, "httpTrigger"); + Assert.NotEmpty(histories); + + // Get the history + var history = client.WorkflowTriggerHistories.Get(this.resourceGroupName, workflowName, "httpTrigger", histories.First().Name); + + Assert.NotNull(history.StartTime); + Assert.NotNull(history.EndTime); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs new file mode 100644 index 0000000000000..35846bc9c4b1d --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowTriggers.ScenarioTests.cs @@ -0,0 +1,128 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System.Linq; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; + using Xunit; + + [Collection("WorkflowTriggersScenarioTests")] + public class WorkflowTriggersScenarioTests : BaseScenarioTests + { + [Fact] + public void ListNoTrigger() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + Definition = JToken.Parse(this.definition) + }); + + // List the triggers + var triggers = client.WorkflowTriggers.List(this.resourceGroupName, workflowName); + + Assert.Equal(0, triggers.Count()); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + + [Fact] + public void GetAndListTriggers() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + Definition = JToken.Parse(this.simpleTriggerDefinition) + }); + + // List the triggers + var triggers = client.WorkflowTriggers.List(this.resourceGroupName, workflowName); + + Assert.Equal(1, triggers.Count()); + + var trigger = client.WorkflowTriggers.Get(this.resourceGroupName, workflowName, "httpTrigger"); + + Assert.NotNull(trigger.CreatedTime); + Assert.NotNull(trigger.ChangedTime); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + + [Fact] + public void RunTrigger() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + Definition = JToken.Parse(this.simpleTriggerDefinition) + }); + + // Run the trigger + client.WorkflowTriggers.Run(this.resourceGroupName, workflowName, "httpTrigger"); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs new file mode 100644 index 0000000000000..82bf6ed048743 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/WorkflowVersions.ScenarioTests.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; + using Xunit; + + [Collection("WorkflowVersionsScenarioTests")] + public class WorkflowVersionsScenarioTests : BaseScenarioTests + { + [Fact] + public void CreateAndGetWorkflowVersion() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + Definition = JToken.Parse(this.definition) + }); + + // Get the workflow version and verify the content + var version = client.WorkflowVersions.Get(this.resourceGroupName, workflowName, workflow.Version); + Assert.Equal(WorkflowState.Enabled, workflow.State); + Assert.Equal(SkuName.Basic, workflow.Sku.Name); + Assert.NotEmpty(workflow.Definition.ToString()); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs new file mode 100644 index 0000000000000..f8d660ea569a0 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Workflows.ScenarioTests.cs @@ -0,0 +1,314 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Rest.Azure; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json.Linq; + using Xunit; + + [Collection("WorkflowsScenarioTests")] + public class WorkflowsScenarioTests : BaseScenarioTests + { + [Fact] + public void CreateAndDeleteWorkflow() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + Definition = JToken.Parse(this.definition) + }); + + // Get the workflow and verify the content + var workflow = client.Workflows.Get(this.resourceGroupName, workflowName); + Assert.Equal(WorkflowState.Enabled, workflow.State); + Assert.Equal(this.location, workflow.Location); + Assert.Equal(SkuName.Basic, workflow.Sku.Name); + Assert.NotEmpty(workflow.Definition.ToString()); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + + [Fact] + public void CreateAndEnableDisableWorkflow() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + this.resourceGroupName, + workflowName, + new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Free + }, + State = WorkflowState.Disabled, + Definition = JToken.Parse(this.definition) + }); + + // Verify the response + Assert.Equal(workflowName, workflow.Name); + Assert.Equal(WorkflowState.Disabled, workflow.State); + + // Enable the workflow + client.Workflows.Enable(this.resourceGroupName, workflowName); + + // Get the workflow and verify it's enabled + workflow = client.Workflows.Get(this.resourceGroupName, workflowName); + Assert.Equal(WorkflowState.Enabled, workflow.State); + + // Disable the workflow + client.Workflows.Disable(this.resourceGroupName, workflowName); + + // Get the workflow and verify it's disabled + workflow = client.Workflows.Get(this.resourceGroupName, workflowName); + Assert.Equal(WorkflowState.Disabled, workflow.State); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + + [Fact] + public void ListWorkflow() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + string workflowName2 = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + this.resourceGroupName, + workflowName, + new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Free + }, + State = WorkflowState.Disabled, + Definition = JToken.Parse(this.definition) + }); + + // Verify the response + Assert.Equal(workflowName, workflow.Name); + Assert.Equal(WorkflowState.Disabled, workflow.State); + + // Create another workflow + var workflow2 = client.Workflows.CreateOrUpdate( + this.resourceGroupName, + workflowName2, + new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Free + }, + State = WorkflowState.Disabled, + Definition = JToken.Parse(this.definition) + }); + + // List the workflow in resource group + var lists = client.Workflows.ListByResourceGroup(this.resourceGroupName, 1, f => f.State == WorkflowState.Disabled); + + Assert.Equal(1, lists.Count()); + + // List the workflow in resource group + lists = client.Workflows.ListByResourceGroup(this.resourceGroupName); + + Assert.True(lists.Count() > 1); + workflow = lists.First(); + Assert.NotNull(workflow.Id); + Assert.NotNull(workflow.Name); + Assert.NotNull(workflow.Type); + + lists = client.Workflows.ListBySubscription(); + + Assert.NotEmpty(lists); + workflow = lists.First(); + Assert.NotNull(workflow.Id); + Assert.NotNull(workflow.Name); + Assert.NotNull(workflow.Type); + + // Delete the workflow + client.Workflows.Delete(this.resourceGroupName, workflowName); + } + } + + [Fact] + public void ValidateAndRunWorkflow() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + client.Workflows.CreateOrUpdate( + resourceGroupName: this.resourceGroupName, + workflowName: workflowName, + workflow: new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Basic + }, + Definition = JToken.Parse(this.simpleTriggerDefinition) + }); + + // Validate a workflow + client.Workflows.Validate( + this.resourceGroupName, + workflowName, + new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Free + }, + Definition = JToken.Parse(this.definition) + }); + + Assert.Throws<CloudException>(() => + { + // Validate an invlaid workflow + client.Workflows.Validate( + this.resourceGroupName, + workflowName, + new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Free + }, + Definition = "invalid definition" + }); + }); + + var run = client.Workflows.Run(resourceGroupName, workflowName, new RunWorkflowParameters + { + Name = "pushTrigger", + Outputs = "testbody" + }); + + Assert.Equal("testbody", run.Outputs["output1"].Value.ToString()); + } + } + + [Fact] + public void DeleteAllWorkflows() + { + using (MockContext context = MockContext.Start()) + { + var client = this.GetLogicManagementClient(); + + var workflows = client.Workflows.ListByResourceGroup(this.resourceGroupName); + + foreach (var workflow in workflows) + { + client.Workflows.Delete(this.resourceGroupName, workflow.Name); + } + + while (!string.IsNullOrEmpty(workflows.NextPageLink)) + { + workflows = client.Workflows.ListByResourceGroupNext(workflows.NextPageLink); + + foreach (var workflow in workflows) + { + client.Workflows.Delete(this.resourceGroupName, workflow.Name); + } + } + + workflows = client.Workflows.ListByResourceGroup(this.resourceGroupName); + + Assert.Equal(0, workflows.Count()); + } + } + + [Fact] + public void UpdateAndRunWorkflow() + { + using (MockContext context = MockContext.Start()) + { + string workflowName = TestUtilities.GenerateName("logicwf"); + var client = this.GetLogicManagementClient(); + + // Create a workflow + var workflow = client.Workflows.CreateOrUpdate( + this.resourceGroupName, + workflowName, + new Workflow + { + Location = this.location, + Sku = new Sku() + { + Name = SkuName.Free + }, + Definition = JToken.Parse(this.definition) + }); + + // Verify the response + Assert.Equal(workflowName, workflow.Name); + Assert.Equal(WorkflowState.Enabled, workflow.State); + Assert.Equal(null, workflow.Tags); + + // Update the workflow + workflow = new Workflow() + { + Tags = new Dictionary<string, string>() + }; + workflow.Tags.Add("abc", "def"); + workflow = client.Workflows.Update(this.resourceGroupName, workflowName, workflow); + + Assert.Equal(1, workflow.Tags.Count); + + } + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/CreateAndDelete.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/CreateAndDelete.json new file mode 100644 index 0000000000000..9026a43447179 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/CreateAndDelete.json @@ -0,0 +1,241 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf729?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzI5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "611" + ], + "x-ms-client-request-id": [ + "3cb13439-0f92-42de-86f7-1d26576f1585" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:14:38.1189196Z\",\r\n \"changedTime\": \"2015-07-29T05:14:38.1189196Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634600075441718\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf729\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf729\",\r\n \"name\": \"logicwf729\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "881" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:ed971301-5526-4945-8dd3-7d9332d23153" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "ad5f7708-30bf-4301-9d58-e7b106c73ec1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051438Z:ad5f7708-30bf-4301-9d58-e7b106c73ec1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf729/accessKeys/accesskey2039?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzI5L2FjY2Vzc0tleXMvYWNjZXNza2V5MjAzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"notBefore\": \"2015-07-30T05:14:39.0996551Z\",\r\n \"notAfter\": \"2015-08-05T05:14:39.0996551Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ], + "x-ms-client-request-id": [ + "301eb43b-cdcb-403e-92d0-0b0d2f8507e2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"notBefore\": \"2015-07-30T05:14:39.0996551Z\",\r\n \"notAfter\": \"2015-08-05T05:14:39.0996551Z\"\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf729/accessKeys/accesskey2039\",\r\n \"name\": \"accesskey2039\",\r\n \"type\": \"Microsoft.Logic/workflows/accessKeys\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4049e84b-1844-485e-84ed-a4fff200319b" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "e8b6863a-6c2b-4770-952b-4d8d02e0093a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051439Z:e8b6863a-6c2b-4770-952b-4d8d02e0093a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf729/accessKeys/accesskey2039?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzI5L2FjY2Vzc0tleXMvYWNjZXNza2V5MjAzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b108a86d-dd73-4291-a0da-8ce8f8e52802" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:365223ba-ca19-4f47-8d72-0e5bc43d7ce1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "52852443-daf7-4da5-a072-2ac1f39c4335" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051440Z:52852443-daf7-4da5-a072-2ac1f39c4335" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf729/accessKeys?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzI5L2FjY2Vzc0tleXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f98e857-1ef2-4a07-aba3-e2d79b5614e8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf729/accessKeys/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Logic/workflows/accessKeys\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:ea0cd5bf-979b-457b-a3a5-02a40997c6f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "69bb574e-4abe-4e33-b59b-291f3fada765" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051440Z:69bb574e-4abe-4e33-b59b-291f3fada765" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:39 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndDelete": [ + "logicwf729", + "accesskey2039" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/CreateAndList.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/CreateAndList.json new file mode 100644 index 0000000000000..db6d63468a50c --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/CreateAndList.json @@ -0,0 +1,190 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3826?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMzgyNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "611" + ], + "x-ms-client-request-id": [ + "ec2a2d7e-7fc9-41df-8b37-92674d8fe96b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:14:26.1569447Z\",\r\n \"changedTime\": \"2015-07-29T05:14:26.1569447Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634600194724697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3826\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3826\",\r\n \"name\": \"logicwf3826\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "884" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:b6bd12c9-9665-46ff-aa86-fdb44c8c7944" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e5796f0f-fc7d-463e-bc7c-8671cbb2737d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051426Z:e5796f0f-fc7d-463e-bc7c-8671cbb2737d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:26 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3826/accessKeys/accesskey5611?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMzgyNi9hY2Nlc3NLZXlzL2FjY2Vzc2tleTU2MTE/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"notBefore\": \"2015-07-30T05:14:27.1496635Z\",\r\n \"notAfter\": \"2015-08-05T05:14:27.1496635Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ], + "x-ms-client-request-id": [ + "698ce796-1961-459f-8fa0-52f1d341e37f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"notBefore\": \"2015-07-30T05:14:27.1496635Z\",\r\n \"notAfter\": \"2015-08-05T05:14:27.1496635Z\"\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3826/accessKeys/accesskey5611\",\r\n \"name\": \"accesskey5611\",\r\n \"type\": \"Microsoft.Logic/workflows/accessKeys\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "324" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:3d9e05ca-cfd3-4f49-a8de-a58425699f42" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "71da5262-7873-4fab-9370-986a9e0c1001" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051427Z:71da5262-7873-4fab-9370-986a9e0c1001" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3826/accessKeys?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMzgyNi9hY2Nlc3NLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a06a4bcb-5944-45ba-94ec-153bd87a0e04" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"notBefore\": \"2015-07-30T05:14:27.1496635Z\",\r\n \"notAfter\": \"2015-08-05T05:14:27.1496635Z\"\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3826/accessKeys/accesskey5611\",\r\n \"name\": \"accesskey5611\",\r\n \"type\": \"Microsoft.Logic/workflows/accessKeys\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3826/accessKeys/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Logic/workflows/accessKeys\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:9c19ec8b-82ed-42ab-9102-90a87221e2e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "513c906b-c6b7-403a-82ca-ad63fbbdf4c8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051428Z:513c906b-c6b7-403a-82ca-ad63fbbdf4c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:27 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndList": [ + "logicwf3826", + "accesskey5611" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/RegenerateAndListSecretKeys.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/RegenerateAndListSecretKeys.json new file mode 100644 index 0000000000000..52f2b158d9f8d --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowAccessKeysScenarioTests/RegenerateAndListSecretKeys.json @@ -0,0 +1,253 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf6686?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNjY4Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "611" + ], + "x-ms-client-request-id": [ + "b4ddf310-cac1-45e3-a833-9cb429fa6902" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:14:32.008841Z\",\r\n \"changedTime\": \"2015-07-29T05:14:32.008841Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634600136058603\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf6686\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf6686\",\r\n \"name\": \"logicwf6686\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "882" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:bf157a10-9eab-4858-9da5-cc6d531f7ea7" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "89e325b5-2c0c-4cf9-8c75-eb0bd909e2ce" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051432Z:89e325b5-2c0c-4cf9-8c75-eb0bd909e2ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:32 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf6686/accessKeys/accesskey6091?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNjY4Ni9hY2Nlc3NLZXlzL2FjY2Vzc2tleTYwOTE/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"notBefore\": \"2015-07-30T05:14:32.8493411Z\",\r\n \"notAfter\": \"2015-08-05T05:14:32.8493411Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ], + "x-ms-client-request-id": [ + "0caacb65-53fe-4f95-af61-22f9495eee9f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"notBefore\": \"2015-07-30T05:14:32.8493411Z\",\r\n \"notAfter\": \"2015-08-05T05:14:32.8493411Z\"\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf6686/accessKeys/accesskey6091\",\r\n \"name\": \"accesskey6091\",\r\n \"type\": \"Microsoft.Logic/workflows/accessKeys\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "324" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:b25a7bc0-2d9e-4806-803e-66a3c3e29ccc" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c61c1887-474f-421b-9f5b-cd8954ce44d4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051433Z:c61c1887-474f-421b-9f5b-cd8954ce44d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf6686/accessKeys/accesskey6091/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNjY4Ni9hY2Nlc3NLZXlzL2FjY2Vzc2tleTYwOTEvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "x-ms-client-request-id": [ + "faddadf6-037a-4dfb-9864-3e5b9bb26123" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"notBefore\": \"2015-07-30T05:14:32.8493411Z\",\r\n \"notAfter\": \"2015-08-05T05:14:32.8493411Z\",\r\n \"primarySecretKey\": \"TS3QwCLOOhag7LYtYLTimwJ0j4kXNhEmB_eT0xwm8D8\",\r\n \"secondarySecretKey\": \"_sfScsK7bWvjhwn1a3bu_-0IajkUXqXwsERK36Iga60\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "218" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:5b89539b-77dd-4d1e-a358-7405b9dff6d1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "97ec197d-76b0-430c-9158-626973dc4aae" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051433Z:97ec197d-76b0-430c-9158-626973dc4aae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf6686/accessKeys/accesskey6091/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNjY4Ni9hY2Nlc3NLZXlzL2FjY2Vzc2tleTYwOTEvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3aedb972-26ac-459a-b4e1-5e61cff7fc50" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"notBefore\": \"2015-07-30T05:14:32.8493411Z\",\r\n \"notAfter\": \"2015-08-05T05:14:32.8493411Z\",\r\n \"primarySecretKey\": \"TS3QwCLOOhag7LYtYLTimwJ0j4kXNhEmB_eT0xwm8D8\",\r\n \"secondarySecretKey\": \"_sfScsK7bWvjhwn1a3bu_-0IajkUXqXwsERK36Iga60\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "218" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:c79e528e-cbb6-41ca-83bc-9a43595c7b9e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "27517b19-b73d-420c-9efc-5747e987a61f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051434Z:27517b19-b73d-420c-9efc-5747e987a61f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:34 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RegenerateAndListSecretKeys": [ + "logicwf6686", + "accesskey6091" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowRunActionsScenarioTests/ListAndGetActions.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowRunActionsScenarioTests/ListAndGetActions.json new file mode 100644 index 0000000000000..fd3a92af23aef --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowRunActionsScenarioTests/ListAndGetActions.json @@ -0,0 +1,303 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTUxOD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "611" + ], + "x-ms-client-request-id": [ + "cdac859b-99ab-43ab-9dcd-f7f52e0ade94" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:15:23.9282626Z\",\r\n \"changedTime\": \"2015-07-29T05:15:23.9282626Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634599616180237\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518\",\r\n \"name\": \"logicwf9518\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "884" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:872ed358-7271-4228-b997-376fdae52607" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "2939a860-a9b5-4fe7-b9bd-5265bfb1fef5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051524Z:2939a860-a9b5-4fe7-b9bd-5265bfb1fef5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:24 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTUxOC9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ], + "x-ms-client-request-id": [ + "f251840c-c7f1-404f-afb1-f6ef57286884" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:15:24.8712891Z\",\r\n \"endTime\": \"2015-07-29T05:15:24.9118332Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"d075b0e5-ae6f-4995-8c88-098ca01d7e1a\",\r\n \"workflow\": {\r\n \"name\": \"logicwf9518/08587634599616180237\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/versions/08587634599616180237\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/runs/08587634599606064538\",\r\n \"name\": \"08587634599606064538\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "westus:d075b0e5-ae6f-4995-8c88-098ca01d7e1a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "2424716d-77c7-4093-aa75-3062b51e4202" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051525Z:2424716d-77c7-4093-aa75-3062b51e4202" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/runs/08587634599606064538/operations/d075b0e5-ae6f-4995-8c88-098ca01d7e1a?api-version=2015-02-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/runs/08587634599606064538/operations/d075b0e5-ae6f-4995-8c88-098ca01d7e1a?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTUxOC9ydW5zLzA4NTg3NjM0NTk5NjA2MDY0NTM4L29wZXJhdGlvbnMvZDA3NWIwZTUtYWU2Zi00OTk1LThjODgtMDk4Y2EwMWQ3ZTFhP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:15:24.8712891Z\",\r\n \"endTime\": \"2015-07-29T05:15:25.3029393Z\",\r\n \"status\": \"Failed\",\r\n \"correlationId\": \"d075b0e5-ae6f-4995-8c88-098ca01d7e1a\",\r\n \"workflow\": {\r\n \"name\": \"logicwf9518/08587634599616180237\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/versions/08587634599616180237\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/runs/08587634599606064538\",\r\n \"name\": \"08587634599606064538\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "682" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:1be75ca9-8489-4485-9903-398500e3b432" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "8beac4c4-cf6d-4c93-84f7-782980e4268b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051535Z:8beac4c4-cf6d-4c93-84f7-782980e4268b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/runs/08587634599606064538/actions?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTUxOC9ydW5zLzA4NTg3NjM0NTk5NjA2MDY0NTM4L2FjdGlvbnM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5381f06b-aaaa-4f00-8f45-719f9838fd43" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:15:25.0713617Z\",\r\n \"endTime\": \"2015-07-29T05:15:25.2043997Z\",\r\n \"status\": \"Failed\",\r\n \"code\": \"BadRequest\",\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided http action URI 'invalidUri' is not valid. The URI must be a well formed absolute URI not referencing local host or UNC path.\"\r\n },\r\n \"trackingId\": \"5ad24878-894b-466c-83e9-66b366bb44af\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu02by01.blob.core.windows.net/flow79068b788f1b46d7bcd94821ab7d2b7120150729t000000zcontent/F1932_87bb61db46494108898a42fec28315d7_httpAction:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=S7oAKTkUAh%2F4GPvOMnXrbREL2IkobUwgUTI%2B1RqPD2E%3D&se=2015-07-29T09%3A15%3A35Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D4B5D31618\\\"\",\r\n \"contentSize\": 35,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"mvjBdQPV3500O+iSJ4rDcg==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/runs/08587634599606064538/actions/httpAction\",\r\n \"name\": \"httpAction\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1055" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:de4a5f42-88b8-4beb-b43a-d25673778362" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "87b521ec-c8e3-4328-804d-065f5e82f550" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051535Z:87b521ec-c8e3-4328-804d-065f5e82f550" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/runs/08587634599606064538/actions/httpAction?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTUxOC9ydW5zLzA4NTg3NjM0NTk5NjA2MDY0NTM4L2FjdGlvbnMvaHR0cEFjdGlvbj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7c19a26-194d-451d-9fdf-95f72ee99cb2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:15:25.0713617Z\",\r\n \"endTime\": \"2015-07-29T05:15:25.2043997Z\",\r\n \"status\": \"Failed\",\r\n \"code\": \"BadRequest\",\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided http action URI 'invalidUri' is not valid. The URI must be a well formed absolute URI not referencing local host or UNC path.\"\r\n },\r\n \"trackingId\": \"5ad24878-894b-466c-83e9-66b366bb44af\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu02by01.blob.core.windows.net/flow79068b788f1b46d7bcd94821ab7d2b7120150729t000000zcontent/F1932_87bb61db46494108898a42fec28315d7_httpAction:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=fp9RYKEbd4fjqMLsIVEMItVQAgyir8dh4mdnqhhcXWI%3D&se=2015-07-29T09%3A15%3A36Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D4B5D31618\\\"\",\r\n \"contentSize\": 35,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"mvjBdQPV3500O+iSJ4rDcg==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9518/runs/08587634599606064538/actions/httpAction\",\r\n \"name\": \"httpAction\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:2c74d5ef-20de-4726-98d5-104d4b4ae9d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "0ba7e2a9-6cc4-470d-a6d1-a3bfdf611c18" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051536Z:0ba7e2a9-6cc4-470d-a6d1-a3bfdf611c18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:35 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "ListAndGetActions": [ + "logicwf9518" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowRunsScenarioTests/RunGetAndListRuns.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowRunsScenarioTests/RunGetAndListRuns.json new file mode 100644 index 0000000000000..e01c64ecf7452 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowRunsScenarioTests/RunGetAndListRuns.json @@ -0,0 +1,528 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "611" + ], + "x-ms-client-request-id": [ + "b976edba-e983-4366-8075-f8e8dcb6705d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T06:03:49.9442891Z\",\r\n \"changedTime\": \"2015-07-29T06:03:49.9442891Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634570556489645\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"httpAction\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013\",\r\n \"name\": \"logicwf2013\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "884" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:559b07c1-7e0d-465c-b627-9f81176eea3a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "8ba93c97-fc08-4a01-b81d-32b2d6e2800e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060350Z:8ba93c97-fc08-4a01-b81d-32b2d6e2800e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:03:49 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMy9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ], + "x-ms-client-request-id": [ + "2b444df0-ac8a-421a-be89-c76fc3c9d92d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T06:03:50.9205631Z\",\r\n \"endTime\": \"2015-07-29T06:03:50.9565026Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"74d5663d-3009-4fc9-a1ae-3262a1ecbe28\",\r\n \"workflow\": {\r\n \"name\": \"logicwf2013/08587634570556489645\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/versions/08587634570556489645\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570545571912\",\r\n \"name\": \"08587634570545571912\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "westus:74d5663d-3009-4fc9-a1ae-3262a1ecbe28" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "a6f965ae-be5d-4d8c-a5e6-73e5f70010be" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060351Z:a6f965ae-be5d-4d8c-a5e6-73e5f70010be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:03:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570545571912/operations/74d5663d-3009-4fc9-a1ae-3262a1ecbe28?api-version=2015-02-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMy9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ], + "x-ms-client-request-id": [ + "57943f30-18dd-4a7f-86d9-f9daaf001d5f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T06:04:01.821394Z\",\r\n \"endTime\": \"2015-07-29T06:04:01.8550113Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"332946a9-f1db-4ffd-93a2-95a6d0ed49c2\",\r\n \"workflow\": {\r\n \"name\": \"logicwf2013/08587634570556489645\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/versions/08587634570556489645\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570436563371\",\r\n \"name\": \"08587634570436563371\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "682" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "westus:332946a9-f1db-4ffd-93a2-95a6d0ed49c2" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "71a80302-f6b3-4e8a-8003-0392a816344b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060401Z:71a80302-f6b3-4e8a-8003-0392a816344b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:04:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570436563371/operations/332946a9-f1db-4ffd-93a2-95a6d0ed49c2?api-version=2015-02-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570545571912/operations/74d5663d-3009-4fc9-a1ae-3262a1ecbe28?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMy9ydW5zLzA4NTg3NjM0NTcwNTQ1NTcxOTEyL29wZXJhdGlvbnMvNzRkNTY2M2QtMzAwOS00ZmM5LWExYWUtMzI2MmExZWNiZTI4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T06:03:50.9205631Z\",\r\n \"endTime\": \"2015-07-29T06:03:51.3410919Z\",\r\n \"status\": \"Failed\",\r\n \"correlationId\": \"74d5663d-3009-4fc9-a1ae-3262a1ecbe28\",\r\n \"workflow\": {\r\n \"name\": \"logicwf2013/08587634570556489645\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/versions/08587634570556489645\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570545571912\",\r\n \"name\": \"08587634570545571912\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "682" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:060c3739-aefc-49e3-beb2-9913c9d67c51" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "c2d071a8-1764-4711-abd9-bd69008f6429" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060401Z:c2d071a8-1764-4711-abd9-bd69008f6429" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:04:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570436563371/operations/332946a9-f1db-4ffd-93a2-95a6d0ed49c2?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMy9ydW5zLzA4NTg3NjM0NTcwNDM2NTYzMzcxL29wZXJhdGlvbnMvMzMyOTQ2YTktZjFkYi00ZmZkLTkzYTItOTVhNmQwZWQ0OWMyP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T06:04:01.821394Z\",\r\n \"endTime\": \"2015-07-29T06:04:02.1702627Z\",\r\n \"status\": \"Failed\",\r\n \"correlationId\": \"332946a9-f1db-4ffd-93a2-95a6d0ed49c2\",\r\n \"workflow\": {\r\n \"name\": \"logicwf2013/08587634570556489645\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/versions/08587634570556489645\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570436563371\",\r\n \"name\": \"08587634570436563371\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "681" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:32cf4d89-8adb-4552-a627-83113a1f0022" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "01ed928e-c82c-4e7b-8a26-f631bd18c338" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060412Z:01ed928e-c82c-4e7b-8a26-f631bd18c338" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:04:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570436563371?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMy9ydW5zLzA4NTg3NjM0NTcwNDM2NTYzMzcxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7755b12-8672-450e-9435-139fc0048401" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T06:04:01.821394Z\",\r\n \"endTime\": \"2015-07-29T06:04:02.1702627Z\",\r\n \"status\": \"Failed\",\r\n \"correlationId\": \"332946a9-f1db-4ffd-93a2-95a6d0ed49c2\",\r\n \"workflow\": {\r\n \"name\": \"logicwf2013/08587634570556489645\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/versions/08587634570556489645\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570436563371\",\r\n \"name\": \"08587634570436563371\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "681" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:317e20cf-ac17-43e4-ad7a-0bfaf2f3c26d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "8f8c2656-7531-44b7-9eab-04baf3e32a65" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060412Z:8f8c2656-7531-44b7-9eab-04baf3e32a65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:04:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs?api-version=2015-02-01-preview&$top=1&$filter=status%20eq%20'Failed'", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMy9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldyYkdG9wPTEmJGZpbHRlcj1zdGF0dXMlMjBlcSUyMCdGYWlsZWQn", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c923f46-6273-414a-b754-7a40be6cf3a4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T06:04:01.821394Z\",\r\n \"endTime\": \"2015-07-29T06:04:02.1702627Z\",\r\n \"status\": \"Failed\",\r\n \"correlationId\": \"332946a9-f1db-4ffd-93a2-95a6d0ed49c2\",\r\n \"workflow\": {\r\n \"name\": \"logicwf2013/08587634570556489645\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/versions/08587634570556489645\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570436563371\",\r\n \"name\": \"08587634570436563371\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs?api-version=2015-02-01-preview&%24top=1&%24filter=status+eq+%27Failed%27&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IVFUQkRNVFEtIiwibmV4dFJvd0tleSI6IjEhNzIhTkRkQk5FUkNRekpDTUVZNE5FWXhNRUl4UWpKRE56Z3dNMFUxUWtRMU9VTmZNRGcxT0RjMk16UTFOekExTkRVMU56RTVNVEktIn0%3d\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1122" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:c6eaa52a-97d1-488d-bd29-18cd27761bc0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "05c2fac4-b322-4455-944f-292b83ea9d6e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060413Z:05c2fac4-b322-4455-944f-292b83ea9d6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:04:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMy9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3627c12c-ccdd-43f9-917e-6cff5a365bfc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T06:04:01.821394Z\",\r\n \"endTime\": \"2015-07-29T06:04:02.1702627Z\",\r\n \"status\": \"Failed\",\r\n \"correlationId\": \"332946a9-f1db-4ffd-93a2-95a6d0ed49c2\",\r\n \"workflow\": {\r\n \"name\": \"logicwf2013/08587634570556489645\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/versions/08587634570556489645\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570436563371\",\r\n \"name\": \"08587634570436563371\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T06:03:50.9205631Z\",\r\n \"endTime\": \"2015-07-29T06:03:51.3410919Z\",\r\n \"status\": \"Failed\",\r\n \"correlationId\": \"74d5663d-3009-4fc9-a1ae-3262a1ecbe28\",\r\n \"workflow\": {\r\n \"name\": \"logicwf2013/08587634570556489645\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/versions/08587634570556489645\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {},\r\n \"outputs\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013/runs/08587634570545571912\",\r\n \"name\": \"08587634570545571912\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1376" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:b2876150-db9e-4062-8958-e47ed33b2635" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "b410be80-c4ca-473e-b598-5590fe364e03" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060414Z:b410be80-c4ca-473e-b598-5590fe364e03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:04:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2013?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjAxMz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7f55cd8-be55-4c02-8e89-0802098712e3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4ad4b5a0-58c9-440c-9bd7-26809592869c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "37aeb3a3-071f-4332-a931-69c95d8746c9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060415Z:37aeb3a3-071f-4332-a931-69c95d8746c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:04:15 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunGetAndListRuns": [ + "logicwf2013" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests/GetHistory.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests/GetHistory.json new file mode 100644 index 0000000000000..f99cde5028136 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests/GetHistory.json @@ -0,0 +1,288 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzY5Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "663" + ], + "x-ms-client-request-id": [ + "7bf25493-d6c6-4039-9a73-ece49dc544f5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:15:00.0044966Z\",\r\n \"changedTime\": \"2015-07-29T05:15:00.0044966Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634599855974347\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692\",\r\n \"name\": \"logicwf7692\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:454af3c4-cb5c-4ba4-b66b-61dfc9803a77" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "ed48f774-8550-4ee7-84a2-67896476c312" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051500Z:ed48f774-8550-4ee7-84a2-67896476c312" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:59 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzY5Mi90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9d44ea6-e65a-49ac-acb2-56d04767f483" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:c9f10c86-9fc4-4c54-9fa9-0ee1f1c5529f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "d8c31198-8630-4f17-82fd-fb54db8a6321" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051501Z:d8c31198-8630-4f17-82fd-fb54db8a6321" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzY5Mi90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24b9172e-1724-4bb5-a201-b505721b36e0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:15:01.0319956Z\",\r\n \"endTime\": \"2015-07-29T05:15:01.1130449Z\",\r\n \"status\": \"Failed\",\r\n \"code\": \"BadRequest\",\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided http trigger URI 'invalidUri' is not valid. The URI must be a well formed absolute URI not referencing local host or UNC path.\"\r\n },\r\n \"trackingId\": \"ee915d68-ca8e-4d44-baa2-1f37b911bac0\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flow9265348ef65b4b0994c9e025480cab1320150729t000000zcontent/07D34_a000c5daa0e54dd68f8fd67724609ab1_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=t%2FSpYRB65F4OhNBHSG6SjqXomJOm469uP5Cp6F2zlZM%3D&se=2015-07-29T09%3A15%3A01Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D4A78428D0\\\"\",\r\n \"contentSize\": 35,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"mvjBdQPV3500O+iSJ4rDcg==\"\r\n }\r\n },\r\n \"fired\": false\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692/triggers/httpTrigger/histories/08587634599844311050\",\r\n \"name\": \"08587634599844311050\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:15:00.379258Z\",\r\n \"endTime\": \"2015-07-29T05:15:00.5075977Z\",\r\n \"status\": \"Failed\",\r\n \"code\": \"BadRequest\",\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided http trigger URI 'invalidUri' is not valid. The URI must be a well formed absolute URI not referencing local host or UNC path.\"\r\n },\r\n \"trackingId\": \"444478af-84b1-43e2-a21a-7ad2ff874ea9\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flow9265348ef65b4b0994c9e025480cab1320150729t000000zcontent/70785_bfabc34727064bf5927729a8819c3455_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=FAW0ivh1ATgdtYs9k8hflZDYdIUzoNWuY2a0cY9CajI%3D&se=2015-07-29T09%3A15%3A01Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D4A71DEA26\\\"\",\r\n \"contentSize\": 35,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"mvjBdQPV3500O+iSJ4rDcg==\"\r\n }\r\n },\r\n \"fired\": false\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692/triggers/httpTrigger/histories/08587634599850885520\",\r\n \"name\": \"08587634599850885520\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:edd04470-ee3e-45a1-84a3-2de98b4e2011" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "0c4def2c-be50-4d46-a8d8-5473765cfc06" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051501Z:0c4def2c-be50-4d46-a8d8-5473765cfc06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692/triggers/httpTrigger/histories/08587634599844311050?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzY5Mi90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXMvMDg1ODc2MzQ1OTk4NDQzMTEwNTA/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c908dbd5-fd74-43c2-a5ac-599c13e7b284" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:15:01.0319956Z\",\r\n \"endTime\": \"2015-07-29T05:15:01.1130449Z\",\r\n \"status\": \"Failed\",\r\n \"code\": \"BadRequest\",\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided http trigger URI 'invalidUri' is not valid. The URI must be a well formed absolute URI not referencing local host or UNC path.\"\r\n },\r\n \"trackingId\": \"ee915d68-ca8e-4d44-baa2-1f37b911bac0\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flow9265348ef65b4b0994c9e025480cab1320150729t000000zcontent/07D34_a000c5daa0e54dd68f8fd67724609ab1_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=t%2FSpYRB65F4OhNBHSG6SjqXomJOm469uP5Cp6F2zlZM%3D&se=2015-07-29T09%3A15%3A01Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D4A78428D0\\\"\",\r\n \"contentSize\": 35,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"mvjBdQPV3500O+iSJ4rDcg==\"\r\n }\r\n },\r\n \"fired\": false\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692/triggers/httpTrigger/histories/08587634599844311050\",\r\n \"name\": \"08587634599844311050\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1080" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:66a139f6-ced2-4d2b-89e9-bd3b2794511f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "cb8214fb-1fcf-44a2-afd2-2c718b71553f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051501Z:cb8214fb-1fcf-44a2-afd2-2c718b71553f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf7692?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzY5Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6add5a17-2c25-4c70-9311-66f291686add" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:56636da1-4b6a-4a4b-8371-bcbd6231af85" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "06f6b093-d9cd-4617-97a3-fd976c0b8822" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051503Z:06f6b093-d9cd-4617-97a3-fd976c0b8822" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:15:03 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GetHistory": [ + "logicwf7692" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests/ListHistory.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests/ListHistory.json new file mode 100644 index 0000000000000..a2dcb6a535983 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggerHistoriesScenarioTests/ListHistory.json @@ -0,0 +1,288 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjY5OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "663" + ], + "x-ms-client-request-id": [ + "db349ca9-e5d2-4324-809c-2b39966ba6a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:14:43.7869703Z\",\r\n \"changedTime\": \"2015-07-29T05:14:43.7869703Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634600017987200\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698\",\r\n \"name\": \"logicwf2698\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:cd8cfb75-9f76-4ea0-835b-559e2385dd61" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "0bacabb8-8f46-4356-850d-18eb802bd275" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051444Z:0bacabb8-8f46-4356-850d-18eb802bd275" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:44 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjY5OC90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a8f5bcc-7e35-41fc-abb8-0ea57882c2e3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:14:44.0676789Z\",\r\n \"endTime\": \"2015-07-29T05:14:44.1855278Z\",\r\n \"status\": \"Failed\",\r\n \"code\": \"BadRequest\",\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided http trigger URI 'invalidUri' is not valid. The URI must be a well formed absolute URI not referencing local host or UNC path.\"\r\n },\r\n \"trackingId\": \"8de10f33-5699-4413-9a99-558d487b480c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flowa404b56172e744e0bcffc051cefab60220150729t000000zcontent/C7350_6733cfc1f61d432a990c77caa226f41f_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=4zlGEYi1bAsV320Uj1OndHFjlGxMUzc3yHrXpBqpS5o%3D&se=2015-07-29T09%3A14%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D49D6E1791\\\"\",\r\n \"contentSize\": 35,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"mvjBdQPV3500O+iSJ4rDcg==\"\r\n }\r\n },\r\n \"fired\": false\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698/triggers/httpTrigger/histories/08587634600013944383\",\r\n \"name\": \"08587634600013944383\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1090" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:205b7ea6-572c-429c-a04e-f8ef86824f8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "25e74d36-c30e-4857-a488-ec2677661fbf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051444Z:25e74d36-c30e-4857-a488-ec2677661fbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjY5OC90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6e3d4be-71d0-4a12-b9ff-7a086570a2f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:14:45.4908851Z\",\r\n \"endTime\": \"2015-07-29T05:14:45.561993Z\",\r\n \"status\": \"Failed\",\r\n \"code\": \"BadRequest\",\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided http trigger URI 'invalidUri' is not valid. The URI must be a well formed absolute URI not referencing local host or UNC path.\"\r\n },\r\n \"trackingId\": \"1753f109-0a8a-45fe-9e4a-f056670c63fc\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flowa404b56172e744e0bcffc051cefab60220150729t000000zcontent/0B9F1_6f5d1a8bfacc40b288e38e5a652330ef_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=qLl6GSmlGk5QNsnAMgCOo%2BCdI6WimP3cUnUFSQSOld0%3D&se=2015-07-29T09%3A14%3A45Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D49E353DE2\\\"\",\r\n \"contentSize\": 35,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"mvjBdQPV3500O+iSJ4rDcg==\"\r\n }\r\n },\r\n \"fired\": false\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698/triggers/httpTrigger/histories/08587634599999763623\",\r\n \"name\": \"08587634599999763623\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:14:44.0676789Z\",\r\n \"endTime\": \"2015-07-29T05:14:44.1855278Z\",\r\n \"status\": \"Failed\",\r\n \"code\": \"BadRequest\",\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided http trigger URI 'invalidUri' is not valid. The URI must be a well formed absolute URI not referencing local host or UNC path.\"\r\n },\r\n \"trackingId\": \"8de10f33-5699-4413-9a99-558d487b480c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flowa404b56172e744e0bcffc051cefab60220150729t000000zcontent/C7350_6733cfc1f61d432a990c77caa226f41f_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=SRWxbJPxHXwH66Xrsb%2FSr%2FbX2mUbkSjEBlBILMPW98Q%3D&se=2015-07-29T09%3A14%3A45Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D49D6E1791\\\"\",\r\n \"contentSize\": 35,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"mvjBdQPV3500O+iSJ4rDcg==\"\r\n }\r\n },\r\n \"fired\": false\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698/triggers/httpTrigger/histories/08587634600013944383\",\r\n \"name\": \"08587634600013944383\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f55998c9-926f-45cc-bcb7-0cc1c0dde2e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "fe74a467-7194-43ee-ba56-78aaff26c8a1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051445Z:fe74a467-7194-43ee-ba56-78aaff26c8a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjY5OC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d8ee527-ff50-48b1-a4f0-efb66296ecd7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:966c348b-f8c4-417e-b4b8-9014b6fa9de4" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "c9c090fe-38e5-428f-8358-4b2601793b97" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051445Z:c9c090fe-38e5-428f-8358-4b2601793b97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2698?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjY5OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bad8b67e-242c-4edb-9da6-24de9a4d3d1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:b4afe0b0-9bab-4bf5-9835-066b96a1661c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "7760b96a-7364-4902-94ff-6d917e7b8bea" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051447Z:7760b96a-7364-4902-94ff-6d917e7b8bea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:14:46 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "ListHistory": [ + "logicwf2698" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/GetAndListTriggers.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/GetAndListTriggers.json new file mode 100644 index 0000000000000..882c434a3ba81 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/GetAndListTriggers.json @@ -0,0 +1,237 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmODc0OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "663" + ], + "x-ms-client-request-id": [ + "12be1516-7ecc-44c9-9731-d986aeff1922" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:56.1456921Z\",\r\n \"changedTime\": \"2015-07-29T05:17:56.1456921Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634598094721626\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749\",\r\n \"name\": \"logicwf8749\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:f6913be0-eabd-496f-8c6b-5780eb4e7996" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "f86548f1-cef1-4248-bd82-98389d1b144f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051756Z:f86548f1-cef1-4248-bd82-98389d1b144f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:56 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749/triggers/?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmODc0OS90cmlnZ2Vycy8/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "269a9041-e744-412c-905a-4d8bb8c838f9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:56.4042178Z\",\r\n \"changedTime\": \"2015-07-29T05:17:56.8083235Z\",\r\n \"state\": \"Enabled\",\r\n \"status\": \"Waiting\",\r\n \"lastExecutionTime\": \"2015-07-29T05:17:56.5006502Z\",\r\n \"nextExecutionTime\": \"2015-07-29T06:17:56.5006502Z\",\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"workflow\": {\r\n \"name\": \"logicwf8749/08587634598094721626\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749/versions/08587634598094721626\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "780" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f0817023-1b3a-453e-98d9-43a1e312a58c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "be4b83b4-c8b9-46dd-bd73-8c5d7ac8cade" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051756Z:be4b83b4-c8b9-46dd-bd73-8c5d7ac8cade" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749/triggers/httpTrigger?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmODc0OS90cmlnZ2Vycy9odHRwVHJpZ2dlcj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2df0684d-7145-4b7f-a0db-b3856c86c73f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:56.4042178Z\",\r\n \"changedTime\": \"2015-07-29T05:17:56.8083235Z\",\r\n \"state\": \"Enabled\",\r\n \"status\": \"Waiting\",\r\n \"lastExecutionTime\": \"2015-07-29T05:17:56.5006502Z\",\r\n \"nextExecutionTime\": \"2015-07-29T06:17:56.5006502Z\",\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"workflow\": {\r\n \"name\": \"logicwf8749/08587634598094721626\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749/versions/08587634598094721626\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "768" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:ea22ee30-bbfd-4559-b023-61e16693c9f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "f93d9232-6ebe-4e1a-a4f0-fee54bb1670b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051757Z:f93d9232-6ebe-4e1a-a4f0-fee54bb1670b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf8749?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmODc0OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "570ed383-52b1-4158-bf8b-21207b30a852" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:2cf1ec3e-df3b-4721-8fdb-9ed4042826d6" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "32565aa6-1049-4e88-8260-bf4eb24884d9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051758Z:32565aa6-1049-4e88-8260-bf4eb24884d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:57 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GetAndListTriggers": [ + "logicwf8749" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/ListNoTrigger.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/ListNoTrigger.json new file mode 100644 index 0000000000000..fe6b6f2eac7e0 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/ListNoTrigger.json @@ -0,0 +1,180 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2725?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjcyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1421" + ], + "x-ms-client-request-id": [ + "3b979f76-605b-4b6a-a2ba-1604047026dd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:51.6022275Z\",\r\n \"changedTime\": \"2015-07-29T05:17:51.6022275Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634598140145475\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2725\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2725\",\r\n \"name\": \"logicwf2725\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1421" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:f698e3d9-8e58-4ffa-b938-c7774c41d76b" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "8c02b6d4-d4c4-45f2-859f-97eaf40311ad" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051752Z:8c02b6d4-d4c4-45f2-859f-97eaf40311ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2725/triggers/?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjcyNS90cmlnZ2Vycy8/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cee922ad-5568-4c6e-bdff-d664700ddfe3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f9887419-8b97-44eb-abd6-d144e0cd265d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "a5b605ea-027d-497a-82ca-55e128015642" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051752Z:a5b605ea-027d-497a-82ca-55e128015642" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf2725?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMjcyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3d30dff-0f69-4870-bf63-769a95400c28" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:27bea584-03f1-4b81-ab21-e1e2e437e947" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "c605bb43-6866-4f31-8bc1-752d02817cbf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051753Z:c605bb43-6866-4f31-8bc1-752d02817cbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:53 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "ListNoTrigger": [ + "logicwf2725" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/RunTrigger.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/RunTrigger.json new file mode 100644 index 0000000000000..fffdd760abe21 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowTriggersScenarioTests/RunTrigger.json @@ -0,0 +1,174 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3398?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMzM5OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "663" + ], + "x-ms-client-request-id": [ + "864a0ac7-ff1a-4a67-be4a-e2a3b74a2495" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:18:00.6218589Z\",\r\n \"changedTime\": \"2015-07-29T05:18:00.6218589Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634598048939331\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3398\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3398\",\r\n \"name\": \"logicwf3398\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "919" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:db8f7de4-e82f-4d21-b8d2-407f06d1b1fb" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "5ac77ac3-78da-4769-801b-69cc2cdaf914" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051801Z:5ac77ac3-78da-4769-801b-69cc2cdaf914" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:18:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3398/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMzM5OC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfdb4444-df7c-4747-80d4-acf2296660da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:12cfdcaf-c7cd-468c-a9cd-17db3a4b53ed" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "9657e33e-1cdf-4898-a418-b202d0bd1ab8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051801Z:9657e33e-1cdf-4898-a418-b202d0bd1ab8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:18:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3398?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMzM5OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e13ee12f-45f1-42c9-994f-b2e143f7e10f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:0480b66c-7288-4984-8838-28bc3cb9624b" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "361ef955-8fb8-481a-8967-adfdda3771e3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051803Z:361ef955-8fb8-481a-8967-adfdda3771e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:18:02 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTrigger": [ + "logicwf3398" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowVersionsScenarioTests/CreateAndGetWorkflowVersion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowVersionsScenarioTests/CreateAndGetWorkflowVersion.json new file mode 100644 index 0000000000000..1a1a58e01addb --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowVersionsScenarioTests/CreateAndGetWorkflowVersion.json @@ -0,0 +1,180 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf675?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNjc1P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1421" + ], + "x-ms-client-request-id": [ + "2a4e8c66-4f5b-408d-a86e-7c454545acf3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:18:06.0891653Z\",\r\n \"changedTime\": \"2015-07-29T05:18:06.0891653Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634597994706669\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf675\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf675\",\r\n \"name\": \"logicwf675\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1418" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:409f4ca7-3aaa-477c-92ea-944576334175" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "3a952441-08f0-445f-abc3-cd878b2f58c0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051806Z:3a952441-08f0-445f-abc3-cd878b2f58c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:18:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf675/versions/08587634597994706669?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNjc1L3ZlcnNpb25zLzA4NTg3NjM0NTk3OTk0NzA2NjY5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ad05ec9-6c38-47b8-ba4b-53109eccfe51" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:18:06.0891653Z\",\r\n \"changedTime\": \"2015-07-29T05:18:06.0901653Z\",\r\n \"version\": \"08587634597994706669\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf675\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf675/versions/08587634597994706669\",\r\n \"name\": \"08587634597994706669\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1449" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:609cc0e9-e1ff-4970-9f6e-13d4ceb92c64" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "6251fb08-ae08-4d97-87e7-227e8ed3bbbc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051806Z:6251fb08-ae08-4d97-87e7-227e8ed3bbbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:18:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf675?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNjc1P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2874d110-e145-4ec4-8225-99bae8ddfed7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:a3ac6015-826a-409e-a640-60cccab01f7e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "a2efe147-50ad-411c-85f8-1d12577d3e5b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051808Z:a2efe147-50ad-411c-85f8-1d12577d3e5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:18:08 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndGetWorkflowVersion": [ + "logicwf675" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/CreateAndDeleteWorkflow.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/CreateAndDeleteWorkflow.json new file mode 100644 index 0000000000000..3e308004bdb0e --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/CreateAndDeleteWorkflow.json @@ -0,0 +1,180 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf773?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzczP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1421" + ], + "x-ms-client-request-id": [ + "2fcb3f2d-2a4b-4984-a421-c70d259aefeb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:25.8082039Z\",\r\n \"changedTime\": \"2015-07-29T05:17:25.8082039Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634598398001683\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf773\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf773\",\r\n \"name\": \"logicwf773\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1418" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:bf3f819c-bdc6-440f-bde8-717f5d6d8676" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "33a9fb8d-ab7a-4b5b-9625-bb986d94c65d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051726Z:33a9fb8d-ab7a-4b5b-9625-bb986d94c65d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf773?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzczP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc0e4bed-37f8-4d0a-a5e2-f05985d77325" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:25.8082039Z\",\r\n \"changedTime\": \"2015-07-29T05:17:25.8092039Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634598398001683\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf773\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf773\",\r\n \"name\": \"logicwf773\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1418" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:868ef714-4f5a-4910-b2d3-41b120ea2041" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "fc1fcb47-c81c-4ea3-b6a4-f78796eb71e3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051726Z:fc1fcb47-c81c-4ea3-b6a4-f78796eb71e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf773?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNzczP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fcf27fe-e544-4ccd-8428-1d3946f156f3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:8b05ac05-f64d-4c69-8aca-a375c6fb2b41" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "24886eff-2951-4147-a08f-0bb2d39623d6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051727Z:24886eff-2951-4147-a08f-0bb2d39623d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:27 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndDeleteWorkflow": [ + "logicwf773" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/CreateAndEnableDisableWorkflow.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/CreateAndEnableDisableWorkflow.json new file mode 100644 index 0000000000000..a913ed2af8bf8 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/CreateAndEnableDisableWorkflow.json @@ -0,0 +1,339 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTQzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1446" + ], + "x-ms-client-request-id": [ + "ce1d7768-c0a5-4f34-b92a-8403fa1dbbc9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:30.6158642Z\",\r\n \"changedTime\": \"2015-07-29T05:17:30.6158642Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634598349898530\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436\",\r\n \"name\": \"logicwf9436\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1421" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:e5da5fc3-8dde-405b-b38a-531e09f90a28" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d8b2ccd0-90a0-4c0d-b81c-6208d433772b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051731Z:d8b2ccd0-90a0-4c0d-b81c-6208d433772b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:30 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436/enable?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTQzNi9lbmFibGU/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "318b4b47-545a-4213-9f35-f4e25f7c94d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:9697eade-10bd-41fd-988e-ff576d43faea" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "4595dcbf-d692-46c6-8f62-636b1efaf2c5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051731Z:4595dcbf-d692-46c6-8f62-636b1efaf2c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTQzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dd11e17-6882-4ebc-8e7a-f6d96aca4bf3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:30.6158642Z\",\r\n \"changedTime\": \"2015-07-29T05:17:31.6974287Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634598338806006\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436\",\r\n \"name\": \"logicwf9436\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1420" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:9b91c3dd-2bbe-43d1-8b67-1dfbaa5d4218" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "2a226642-16f6-4a74-b4f1-cc9130d3038a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051732Z:2a226642-16f6-4a74-b4f1-cc9130d3038a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTQzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ff3f557-3126-4d53-b8a5-ec976d1f7983" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:17:30.6158642Z\",\r\n \"changedTime\": \"2015-07-29T05:17:32.3869164Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634598332081382\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436\",\r\n \"name\": \"logicwf9436\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1421" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e3711582-619c-4822-99e8-25108976ff35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "8a4f18aa-a2d9-4a8c-bd25-f1661308f571" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051732Z:8a4f18aa-a2d9-4a8c-bd25-f1661308f571" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436/disable?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTQzNi9kaXNhYmxlP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54a2d385-88b8-4fc5-8f8c-cdea2b6133bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:c28ec9d0-db75-46e0-8ae1-05da069b00b5" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "abf7f668-74fe-4d23-a635-ce57ee19136d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051732Z:abf7f668-74fe-4d23-a635-ce57ee19136d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf9436?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTQzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81fac7a8-a3f0-4a84-af45-3ddd91fd3638" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4044d1c3-5181-4af6-8111-f63c022cd8b8" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "85316df2-a482-4c6e-bbe2-1c5e2c7d3a4a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T051735Z:85316df2-a482-4c6e-bbe2-1c5e2c7d3a4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:17:35 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateAndEnableDisableWorkflow": [ + "logicwf9436" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/DeleteAllWorkflows.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/DeleteAllWorkflows.json new file mode 100644 index 0000000000000..05c6d12366199 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/DeleteAllWorkflows.json @@ -0,0 +1,116 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41508472-e272-4bea-81a7-1aba9ad365a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "2388f30b-7805-4ea4-a0bc-383cdc67fed4" + ], + "x-ms-correlation-request-id": [ + "2388f30b-7805-4ea4-a0bc-383cdc67fed4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060338Z:2388f30b-7805-4ea4-a0bc-383cdc67fed4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:03:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1c70052-ae86-4f0f-a8f4-85c4f06190fe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "dfed7e49-7e65-4941-99c5-7f2249e65971" + ], + "x-ms-correlation-request-id": [ + "dfed7e49-7e65-4941-99c5-7f2249e65971" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T060339Z:dfed7e49-7e65-4941-99c5-7f2249e65971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 06:03:38 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/ListWorkflow.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/ListWorkflow.json new file mode 100644 index 0000000000000..7b0b0b5e72de8 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/ListWorkflow.json @@ -0,0 +1,357 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf962?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTYyP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1446" + ], + "x-ms-client-request-id": [ + "09f48c58-560f-45c4-96d1-1cccdaeffe4c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:52:59.4322643Z\",\r\n \"changedTime\": \"2015-07-29T05:52:59.4322643Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634577062389785\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf962\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf962\",\r\n \"name\": \"logicwf962\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1418" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:fa30603b-d5d7-4aff-8088-6b275b39330f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "d3208257-936e-4121-bf5d-23186e13844f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T055259Z:d3208257-936e-4121-bf5d-23186e13844f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:52:59 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNDE5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1446" + ], + "x-ms-client-request-id": [ + "88316767-db0f-423a-883b-d2e6b70af568" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:53:01.4167999Z\",\r\n \"changedTime\": \"2015-07-29T05:53:01.4167999Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634577041741561\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196\",\r\n \"name\": \"logicwf4196\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1421" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4d7aff68-d488-4d7c-bdba-780353fae2d1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "36f841cf-dac4-474f-ad94-361d57a097ff" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T055302Z:36f841cf-dac4-474f-ad94-361d57a097ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:53:01 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows?api-version=2015-02-01-preview&$top=1&$filter=state%20eq%20'Disabled'", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXcmJHRvcD0xJiRmaWx0ZXI9c3RhdGUlMjBlcSUyMCdEaXNhYmxlZCc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75b8a17a-45e7-4bfb-8b9a-7066feb54b7a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:53:01.4167999Z\",\r\n \"changedTime\": \"2015-07-29T05:53:01.4177999Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634577041741561\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196\",\r\n \"name\": \"logicwf4196\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows?api-version=2015-02-01-preview&%24top=1&%24filter=state+eq+%27Disabled%27&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IU0wWXlNekUtIiwibmV4dFJvd0tleSI6IjEhODQhUkVZMk1ESkRPVU0zUVVFd05EQTNSRUUyUmtKRlFqSXdRemhDUkRFeE9USmZSa3hQVjB4UFQwdFZVQzFHVEU5WFVrY3RURTlIU1VOWFJqUTFNdy0tIn0%3d\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1862" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:d0265f8e-2140-4c56-a5c9-92b27b8ba6fe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "febe1064-3be1-4fca-b90b-16d1c2c8f77b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T055302Z:febe1064-3be1-4fca-b90b-16d1c2c8f77b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:53:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c15e9aa8-4856-4a46-893a-1299ea350f36" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:53:01.4167999Z\",\r\n \"changedTime\": \"2015-07-29T05:53:01.4177999Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634577041741561\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196\",\r\n \"name\": \"logicwf4196\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:52:59.4322643Z\",\r\n \"changedTime\": \"2015-07-29T05:52:59.4332643Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634577062389785\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf962\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf962\",\r\n \"name\": \"logicwf962\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2852" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:a2f5e8bb-10d6-427c-b6e1-f5d6711df57e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "9e890067-3f03-4aab-95e0-32031ba58127" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T055302Z:9e890067-3f03-4aab-95e0-32031ba58127" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:53:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/providers/Microsoft.Logic/workflows?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9naWMvd29ya2Zsb3dzP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efb4e346-7cea-4dac-8d50-492e07151394" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2015-04-02T21:29:15.496749Z\",\r\n \"changedTime\": \"2015-04-02T21:29:15.497749Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587735967300902689\",\r\n \"accessEndpoint\": \"https://northcentralus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/Groupge/providers/Microsoft.Logic/workflows/scflow\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://json-schema.org/draft-04/schema/2014-12-01-preview\",\r\n \"contentVersion\": \"2014.04.01\",\r\n \"parameters\": {},\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"getPostcode\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"uri\": \"http://api.postcodes.io/postcodes/ox20np\",\r\n \"method\": \"GET\"\r\n }\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"Object\",\r\n \"value\": \"@actions('getPostcode').outputs\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/Groupge/providers/Microsoft.Logic/workflows/scflow\",\r\n \"name\": \"scflow\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:53:01.4167999Z\",\r\n \"changedTime\": \"2015-07-29T05:53:01.4177999Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634577041741561\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf4196\",\r\n \"name\": \"logicwf4196\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:52:59.4322643Z\",\r\n \"changedTime\": \"2015-07-29T05:52:59.4332643Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587634577062389785\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf962\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf962\",\r\n \"name\": \"logicwf962\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"createdTime\": \"2015-05-22T17:07:27.1785534Z\",\r\n \"changedTime\": \"2015-05-23T01:14:30.8336384Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587692632149400005\",\r\n \"accessEndpoint\": \"https://eastus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/Groupge/providers/Microsoft.Logic/workflows/logicapphttplistenertest\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/Groupge/providers/Microsoft.Web/serverFarms/Plan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"Plan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourcegroups/groupge/providers/Microsoft.AppService/apiapps/httplistener/token\": {\r\n \"defaultValue\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJtc25hbWUiOiJFTUEuUmVzb3VyY2VQcm92aWRlciIsImZ1bGxyb3ciOiJhbGwiLCJkYmciOiJHcm91cGdlZGY2MDJjOWM3YWEwNDA3ZGE2ZmJlYjIwYzhiZDExOTIsLTEyMjc4MDEyNjMiLCJ2ZXIiOiIzIiwidWlkIjoic2lkOjE0MzIzMTY4NDYwNTIiLCJpc3MiOiJ1cm46bWljcm9zb2Z0OndpbmRvd3MtYXp1cmU6enVtbyIsImF1ZCI6InVybjptaWNyb3NvZnQ6d2luZG93cy1henVyZTp6dW1vIiwibmJmIjoxNDMyMzE2ODUxfQ.uK44ujIeZU6aP98VLdGBr3s0BpNhv4Q3cnRuwkAZh94\",\r\n \"type\": \"String\",\r\n \"metadata\": {\r\n \"token\": {\r\n \"name\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourcegroups/groupge/providers/Microsoft.AppService/apiapps/httplistener/token\"\r\n }\r\n }\r\n }\r\n },\r\n \"triggers\": {\r\n \"httplistener\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"ApiApp\",\r\n \"inputs\": {\r\n \"apiVersion\": \"2015-01-14\",\r\n \"host\": {\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourcegroups/groupge/providers/Microsoft.AppService/apiapps/httplistener\",\r\n \"gateway\": \"https://groupgedf602c9c7aa0407da6fbeb20c8bd1192.azurewebsites.net\"\r\n },\r\n \"operation\": \"Trigger\",\r\n \"parameters\": {\r\n \"triggerId\": \"@workflow().name\",\r\n \"parameters\": {\r\n \"callbackUrl\": \"@accessKeys('default').primary.secretRunUri\",\r\n \"inputs\": {\r\n \"HttpMethod\": \"Delete\"\r\n }\r\n }\r\n },\r\n \"authentication\": {\r\n \"type\": \"Raw\",\r\n \"scheme\": \"Zumo\",\r\n \"parameter\": \"@parameters('/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourcegroups/groupge/providers/Microsoft.AppService/apiapps/httplistener/token')\"\r\n }\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('false')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"httplistener0\": {\r\n \"type\": \"ApiApp\",\r\n \"inputs\": {\r\n \"apiVersion\": \"2015-01-14\",\r\n \"host\": {\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourcegroups/groupge/providers/Microsoft.AppService/apiapps/httplistener\",\r\n \"gateway\": \"https://groupgedf602c9c7aa0407da6fbeb20c8bd1192.azurewebsites.net\"\r\n },\r\n \"operation\": \"SendHttpResponse\",\r\n \"parameters\": {\r\n \"requestId\": \"@{triggers().outputs.body.RequestId}\",\r\n \"parameters\": {\r\n \"ResponseContent\": \"@{triggers().outputs.body.Content}\",\r\n \"ResponseStatusCode\": \"200\"\r\n }\r\n },\r\n \"authentication\": {\r\n \"type\": \"Raw\",\r\n \"scheme\": \"Zumo\",\r\n \"parameter\": \"@parameters('/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourcegroups/groupge/providers/Microsoft.AppService/apiapps/httplistener/token')\"\r\n }\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/Groupge/providers/Microsoft.Logic/workflows/logicapphttplistenertest\",\r\n \"name\": \"logicapphttplistenertest\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "7018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "northcentralus:b22ad37d-187a-4d3d-8215-0b5b529ecd83", + "westus:68a17d69-9d83-4fc1-a57f-0f5ac1dde16b", + "eastus:1665ced9-f64c-4887-b176-a3fec36b9a6e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "524a6959-4279-4724-9de7-ec6d8e53c253" + ], + "x-ms-correlation-request-id": [ + "524a6959-4279-4724-9de7-ec6d8e53c253" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T055303Z:524a6959-4279-4724-9de7-ec6d8e53c253" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:53:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf962?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmOTYyP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06469c4c-e2d7-4722-91ba-469ae9692b29" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:29c57d2e-4ef8-4368-83bb-599d77818a36" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "73775391-959d-4f0d-8baf-984481cf6f83" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T055304Z:73775391-959d-4f0d-8baf-984481cf6f83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:53:03 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "ListWorkflow": [ + "logicwf962", + "logicwf4196" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/UpdateAndRunWorkflow.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/UpdateAndRunWorkflow.json new file mode 100644 index 0000000000000..43eb6b23a53f0 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/UpdateAndRunWorkflow.json @@ -0,0 +1,135 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3401?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMzQwMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1420" + ], + "x-ms-client-request-id": [ + "2c8d4630-bbed-4711-881b-f99f8e6c4c38" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:38:40.4258946Z\",\r\n \"changedTime\": \"2015-07-29T05:38:40.4258946Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634585651944036\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3401\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3401\",\r\n \"name\": \"logicwf3401\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1420" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:cd5ba360-1014-40dd-9d41-de802b38b8df" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "14f45980-ad71-4581-884a-2a4b12bbd245" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T053841Z:14f45980-ad71-4581-884a-2a4b12bbd245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:38:40 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3401?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmMzQwMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"abc\": \"def\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "40" + ], + "x-ms-client-request-id": [ + "fed67adc-95de-437f-a83b-3bb1740513ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:38:42.1254046Z\",\r\n \"changedTime\": \"2015-07-29T05:38:42.1264046Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634585635091881\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3401\",\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf3401\",\r\n \"name\": \"logicwf3401\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abc\": \"def\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1441" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:6856e7b5-af59-4897-a809-47b2b63e6884" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "8d303d7b-3b7e-40a4-a863-0ea02b444e71" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T053843Z:8d303d7b-3b7e-40a4-a863-0ea02b444e71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:38:42 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "UpdateAndRunWorkflow": [ + "logicwf3401" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/ValidateAndRunWorkflow.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/ValidateAndRunWorkflow.json new file mode 100644 index 0000000000000..3fd11cd06993b --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.WorkflowsScenarioTests/ValidateAndRunWorkflow.json @@ -0,0 +1,306 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNDUzP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "774" + ], + "x-ms-client-request-id": [ + "73a15382-729d-464b-b28b-e6c6a13376c8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"createdTime\": \"2015-07-29T05:30:35.2713202Z\",\r\n \"changedTime\": \"2015-07-29T05:30:35.2713202Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587634590503892213\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453\",\r\n \"name\": \"logicwf453\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "972" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:05fed75e-c8ae-4e28-92e2-c9ec18cfa848" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "4a5a2c2d-2fdc-4bfb-95aa-e2dbeb0c40c3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T053035Z:4a5a2c2d-2fdc-4bfb-95aa-e2dbeb0c40c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:30:35 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/validate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNDUzL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1420" + ], + "x-ms-client-request-id": [ + "ccdd4031-0f96-4666-874f-18e98b892639" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6a8fcf90-7c7f-4452-96b9-7bb9249eb104" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "c807c117-d8da-450e-aa97-cd873eb17f74" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T053036Z:c807c117-d8da-450e-aa97-cd873eb17f74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:30:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/validate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNDUzL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"definition\": \"invalid definition\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "137" + ], + "x-ms-client-request-id": [ + "4dc8aa4f-20f9-4f0e-bd4d-e9bf6d45dd44" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidRequestContent\",\r\n \"message\": \"The request content is invalid and could not be deserialized: 'Error converting value \\\"invalid definition\\\" to type 'Microsoft.Azure.Flow.Templates.Schema.FlowTemplate'. Path 'properties.definition', line 7, position 39.'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "278" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:7f37f7cf-457f-4b24-8d7a-66698324c6b3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "2549fa7c-833b-466c-b2a3-4b09188db23f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T053037Z:2549fa7c-833b-466c-b2a3-4b09188db23f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:30:37 GMT" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNDUzL3J1bj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"pushTrigger\",\r\n \"outputs\": \"testbody\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "55" + ], + "x-ms-client-request-id": [ + "5ccb4ffb-0df1-442a-b37a-208978eb0729" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:30:38.5906077Z\",\r\n \"endTime\": \"2015-07-29T05:30:38.6197992Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"a01d0004-8750-4e2b-bd5e-3a3609d9b2ba\",\r\n \"workflow\": {\r\n \"name\": \"logicwf453/08587634590503892213\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/versions/08587634590503892213\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"pushTrigger\",\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flow83f0a74477444f0d9cae4361ab58ddd620150729t000000zcontent/3F4F4_f9a0c9efc03a45dfb09889ddadaecf84_pushTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=5VKJsinN8xUu65Zpmlr0xGsl8c%2F7kiOMRmwKqNlqCBY%3D&se=2015-07-29T09%3A30%3A38Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D6D64ED185\\\"\",\r\n \"contentSize\": 10,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"/HpQRzEMSx5SHH3zrZURuQ==\"\r\n }\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/runs/08587634590470169073\",\r\n \"name\": \"08587634590470169073\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1187" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "westus:a01d0004-8750-4e2b-bd5e-3a3609d9b2ba" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "43d3bb66-3213-4233-8cd5-ad7e418bc79c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T053038Z:43d3bb66-3213-4233-8cd5-ad7e418bc79c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:30:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/runs/08587634590470169073/operations/a01d0004-8750-4e2b-bd5e-3a3609d9b2ba?api-version=2015-02-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/runs/08587634590470169073/operations/a01d0004-8750-4e2b-bd5e-3a3609d9b2ba?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGY2MDJjOWMtN2FhMC00MDdkLWE2ZmItZWIyMGM4YmQxMTkyL3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9sb2dpY3dmNDUzL3J1bnMvMDg1ODc2MzQ1OTA0NzAxNjkwNzMvb3BlcmF0aW9ucy9hMDFkMDAwNC04NzUwLTRlMmItYmQ1ZS0zYTM2MDlkOWIyYmE/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2015-07-29T05:30:38.5906077Z\",\r\n \"endTime\": \"2015-07-29T05:30:39.0041884Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"a01d0004-8750-4e2b-bd5e-3a3609d9b2ba\",\r\n \"workflow\": {\r\n \"name\": \"logicwf453/08587634590503892213\",\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/versions/08587634590503892213\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"pushTrigger\",\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flow83f0a74477444f0d9cae4361ab58ddd620150729t000000zcontent/3F4F4_f9a0c9efc03a45dfb09889ddadaecf84_pushTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=32hrXCYlBTD9%2FR%2BVrymO0%2BgDP4WsRfkgZIqCs1oQy9I%3D&se=2015-07-29T09%3A30%3A49Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D297D6D64ED185\\\"\",\r\n \"contentSize\": 10,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"/HpQRzEMSx5SHH3zrZURuQ==\"\r\n }\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"testbody\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/df602c9c-7aa0-407d-a6fb-eb20c8bd1192/resourceGroups/flowrg/providers/Microsoft.Logic/workflows/logicwf453/runs/08587634590470169073\",\r\n \"name\": \"08587634590470169073\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:2eedf010-4bff-4f16-9a14-5ae65d9b163e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "67b320b2-ea36-4f03-b7d9-479d4e0b377c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20150729T053049Z:67b320b2-ea36-4f03-b7d9-479d4e0b377c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 29 Jul 2015 05:30:48 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "ValidateAndRunWorkflow": [ + "logicwf453" + ] + }, + "Variables": { + "SubscriptionId": "df602c9c-7aa0-407d-a6fb-eb20c8bd1192" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/Utilities/RecordedDelegatingHandler.cs b/src/ResourceManagement/Logic/Logic.Tests/Utilities/RecordedDelegatingHandler.cs new file mode 100644 index 0000000000000..530b1c6c79cd2 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/Utilities/RecordedDelegatingHandler.cs @@ -0,0 +1,92 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading.Tasks; + + public class RecordedDelegatingHandler : DelegatingHandler + { + public List<HttpRequestMessage> Requests = new List<HttpRequestMessage>(); + + public List<HttpResponseMessage> Responses = new List<HttpResponseMessage>(); + + public HttpRequestMessage Request + { + get + { + switch (this.Requests.Count) + { + case 0: + return null; + + case 1: + return this.Requests[0]; + + default: + throw new InvalidOperationException("More than one request found."); + } + } + } + + public HttpResponseMessage Response + { + get + { + switch (this.Responses.Count) + { + case 0: + return null; + + case 1: + return this.Responses[0]; + + default: + throw new InvalidOperationException("More than one response found."); + } + } + + set + { + if (this.Responses.Count != 0) + { + throw new InvalidOperationException("Responses is already set."); + } + + this.Responses.Add(value); + } + } + + public int Count { get; private set; } + + protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) + { + this.Count++; + this.Requests.Add(request); + + if (this.Count <= this.Responses.Count) + { + return Task.FromResult(this.Responses[this.Count - 1]); + } + else + { + throw new InvalidOperationException(); + } + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/Utilities/ValidationUtilities.cs b/src/ResourceManagement/Logic/Logic.Tests/Utilities/ValidationUtilities.cs new file mode 100644 index 0000000000000..27f778649d44b --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/Utilities/ValidationUtilities.cs @@ -0,0 +1,42 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Test.Azure.Management.Logic +{ + using System.Net.Http; + using Xunit; + + public static class ValidationUtilities + { + public static void ValidateAuthorizationHeader(this HttpRequestMessage request) + { + Assert.Equal("Bearer", request.Headers.Authorization.Scheme); + Assert.NotNull(request.Headers.Authorization.Parameter); + } + + public static void ValidateMethod(this HttpRequestMessage request, HttpMethod method) + { + Assert.Equal(method, request.Method); + } + + public static void ValidateAction(this HttpRequestMessage request, string action) + { + Assert.Equal(HttpMethod.Post, request.Method); + var postfix = string.Format("/{0}", action); + Assert.True(request.RequestUri.AbsolutePath.EndsWith(postfix), string.Format("URI should ends with {0}", postfix)); + } + } +} diff --git a/src/ResourceManagement/Logic/Logic.Tests/packages.config b/src/ResourceManagement/Logic/Logic.Tests/packages.config new file mode 100644 index 0000000000000..2fbdbea1400ad --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/packages.config @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<packages> + <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> + <package id="xunit" version="2.0.0" targetFramework="net45" /> + <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> + <package id="xunit.assert" version="2.0.0" targetFramework="net45" /> + <package id="xunit.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" /> + <package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" /> +</packages> diff --git a/src/ResourceManagement/Logic/Logic.sln b/src/ResourceManagement/Logic/Logic.sln new file mode 100644 index 0000000000000..cf6058267d153 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.sln @@ -0,0 +1,40 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.31101.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogicManagement", "LogicManagement\LogicManagement.csproj", "{9BA56208-B184-4B1D-830F-16146BBD8DD7}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Logic.Tests", "Logic.Tests\Logic.Tests.csproj", "{07FD28BF-5DE5-432D-99A1-1FD5EE738446}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientRuntime.Azure.TestFramework", "..\..\ClientRuntime.Azure.TestFramework\TestFramework\ClientRuntime.Azure.TestFramework.csproj", "{F144A258-3C38-447A-993E-967F74A1A76C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Net45-Debug|Any CPU = Net45-Debug|Any CPU + Net45-Release|Any CPU = Net45-Release|Any CPU + Portable-Debug|Any CPU = Portable-Debug|Any CPU + Portable-Release|Any CPU = Portable-Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9BA56208-B184-4B1D-830F-16146BBD8DD7}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {9BA56208-B184-4B1D-830F-16146BBD8DD7}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU + {9BA56208-B184-4B1D-830F-16146BBD8DD7}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {9BA56208-B184-4B1D-830F-16146BBD8DD7}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU + {9BA56208-B184-4B1D-830F-16146BBD8DD7}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {9BA56208-B184-4B1D-830F-16146BBD8DD7}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU + {9BA56208-B184-4B1D-830F-16146BBD8DD7}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {9BA56208-B184-4B1D-830F-16146BBD8DD7}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU + {07FD28BF-5DE5-432D-99A1-1FD5EE738446}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {07FD28BF-5DE5-432D-99A1-1FD5EE738446}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {07FD28BF-5DE5-432D-99A1-1FD5EE738446}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {07FD28BF-5DE5-432D-99A1-1FD5EE738446}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU + {F144A258-3C38-447A-993E-967F74A1A76C}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/ILogicManagementClient.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/ILogicManagementClient.cs new file mode 100644 index 0000000000000..a8f561a657cca --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/ILogicManagementClient.cs @@ -0,0 +1,93 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Newtonsoft.Json; + using Microsoft.Rest; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// </summary> + public partial interface ILogicManagementClient + { + /// <summary> + /// The base URI of the service. + /// </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> + /// Management credentials for Azure. + /// </summary> + ServiceClientCredentials Credentials { get; } + + /// <summary> + /// The subscription id. + /// </summary> + string SubscriptionId { get; set; } + + /// <summary> + /// The 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; } + + + IWorkflowsOperations Workflows { get; } + + IWorkflowVersionsOperations WorkflowVersions { get; } + + IWorkflowAccessKeysOperations WorkflowAccessKeys { get; } + + IWorkflowTriggersOperations WorkflowTriggers { get; } + + IWorkflowTriggerHistoriesOperations WorkflowTriggerHistories { get; } + + IWorkflowRunsOperations WorkflowRuns { get; } + + IWorkflowRunActionsOperations WorkflowRunActions { get; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowAccessKeysOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowAccessKeysOperations.cs new file mode 100644 index 0000000000000..7148383faf6af --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowAccessKeysOperations.cs @@ -0,0 +1,171 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowAccessKeysOperations operations. + /// </summary> + public partial interface IWorkflowAccessKeysOperations + { + /// <summary> + /// Gets a list of workflow access keys. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowAccessKey>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a workflow access key. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowAccessKey>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Creates or updates a workflow access key. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='workflowAccesskey'> + /// The workflow access key. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowAccessKey>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, WorkflowAccessKey workflowAccesskey, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Deletes a workflow access key. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Lists secret keys. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowSecretKeys>> ListSecretKeysWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Regenerates secret key. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowSecretKeys>> RegenerateSecretKeyWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, RegenerateSecretKeyParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a list of workflow access keys. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowAccessKey>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowRunActionsOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowRunActionsOperations.cs new file mode 100644 index 0000000000000..7e60a98234a75 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowRunActionsOperations.cs @@ -0,0 +1,98 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowRunActionsOperations operations. + /// </summary> + public partial interface IWorkflowRunActionsOperations + { + /// <summary> + /// Gets a list of workflow run actions. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowRunAction>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, int? top = default(int?), Expression<Func<WorkflowRunActionFilter, bool>> filter = default(Expression<Func<WorkflowRunActionFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a workflow run action. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='actionName'> + /// The workflow action name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowRunAction>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, string actionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a list of workflow run actions. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowRunAction>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowRunsOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowRunsOperations.cs new file mode 100644 index 0000000000000..4391a372f14bc --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowRunsOperations.cs @@ -0,0 +1,111 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowRunsOperations operations. + /// </summary> + public partial interface IWorkflowRunsOperations + { + /// <summary> + /// Gets a list of workflow runs. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowRun>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, int? top = default(int?), Expression<Func<WorkflowRunFilter, bool>> filter = default(Expression<Func<WorkflowRunFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a workflow run. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowRun>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Cancels a workflow run. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse> CancelWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a list of workflow runs. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowRun>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowTriggerHistoriesOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowTriggerHistoriesOperations.cs new file mode 100644 index 0000000000000..2b08e1d4f5000 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowTriggerHistoriesOperations.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowTriggerHistoriesOperations operations. + /// </summary> + public partial interface IWorkflowTriggerHistoriesOperations + { + /// <summary> + /// Gets a list of workflow trigger histories. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowTriggerHistory>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a workflow trigger history. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='historyName'> + /// The workflow trigger history name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowTriggerHistory>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, string historyName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a list of workflow trigger histories. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowTriggerHistory>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowTriggersOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowTriggersOperations.cs new file mode 100644 index 0000000000000..67dcfcecdaaaf --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowTriggersOperations.cs @@ -0,0 +1,111 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowTriggersOperations operations. + /// </summary> + public partial interface IWorkflowTriggersOperations + { + /// <summary> + /// Gets a list of workflow triggers. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowTrigger>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, int? top = default(int?), Expression<Func<WorkflowTriggerFilter, bool>> filter = default(Expression<Func<WorkflowTriggerFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a workflow trigger. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowTrigger>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Runs a workflow trigger. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse> RunWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a list of workflow triggers. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<WorkflowTrigger>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowVersionsOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowVersionsOperations.cs new file mode 100644 index 0000000000000..70f890bec491c --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowVersionsOperations.cs @@ -0,0 +1,57 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowVersionsOperations operations. + /// </summary> + public partial interface IWorkflowVersionsOperations + { + /// <summary> + /// Gets a workflow version. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='versionId'> + /// The workflow versionId. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowVersion>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string versionId, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowsOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowsOperations.cs new file mode 100644 index 0000000000000..4f8b4ba95bc64 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/IWorkflowsOperations.cs @@ -0,0 +1,258 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowsOperations operations. + /// </summary> + public partial interface IWorkflowsOperations + { + /// <summary> + /// Gets a list of workflows by subscription. + /// </summary> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<Workflow>>> ListBySubscriptionWithHttpMessagesAsync(int? top = default(int?), Expression<Func<WorkflowFilter, bool>> filter = default(Expression<Func<WorkflowFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a list of workflows by resource group. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<Workflow>>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, int? top = default(int?), Expression<Func<WorkflowFilter, bool>> filter = default(Expression<Func<WorkflowFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Workflow>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Creates or updates a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Workflow>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Updates a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Workflow>> UpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Deletes a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Runs a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowRun>> RunWithHttpMessagesAsync(string resourceGroupName, string workflowName, RunWorkflowParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Runs a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<WorkflowRun>> BeginRunWithHttpMessagesAsync(string resourceGroupName, string workflowName, RunWorkflowParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Disables a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse> DisableWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Enables a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse> EnableWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Validates a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse> ValidateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a list of workflows by subscription. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<Workflow>>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// <summary> + /// Gets a list of workflows by resource group. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + Task<AzureOperationResponse<Page<Workflow>>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/LogicManagementClient.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/LogicManagementClient.cs new file mode 100644 index 0000000000000..c7c8e1592b5a2 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/LogicManagementClient.cs @@ -0,0 +1,233 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Diagnostics; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// </summary> + public partial class LogicManagementClient : ServiceClient<LogicManagementClient>, ILogicManagementClient, IAzureClient + { + /// <summary> + /// The base URI of the service. + /// </summary> + public Uri BaseUri { get; set; } + + /// <summary> + /// Gets or sets json serialization settings. + /// </summary> + public JsonSerializerSettings SerializationSettings { get; private set; } + + /// <summary> + /// Gets or sets json deserialization settings. + /// </summary> + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// <summary> + /// Management credentials for Azure. + /// </summary> + public ServiceClientCredentials Credentials { get; private set; } + + /// <summary> + /// The subscription id. + /// </summary> + public string SubscriptionId { get; set; } + + /// <summary> + /// The API version. + /// </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> + public int? LongRunningOperationRetryTimeout { get; set; } + + public virtual IWorkflowsOperations Workflows { get; private set; } + + public virtual IWorkflowVersionsOperations WorkflowVersions { get; private set; } + + public virtual IWorkflowAccessKeysOperations WorkflowAccessKeys { get; private set; } + + public virtual IWorkflowTriggersOperations WorkflowTriggers { get; private set; } + + public virtual IWorkflowTriggerHistoriesOperations WorkflowTriggerHistories { get; private set; } + + public virtual IWorkflowRunsOperations WorkflowRuns { get; private set; } + + public virtual IWorkflowRunActionsOperations WorkflowRunActions { get; private set; } + + /// <summary> + /// Initializes a new instance of the LogicManagementClient class. + /// </summary> + public LogicManagementClient() : base() + { + this.Initialize(); + } + + /// <summary> + /// Initializes a new instance of the LogicManagementClient class. + /// </summary> + /// <param name='handlers'> + /// Optional. The set of delegating handlers to insert in the http + /// client pipeline. + /// </param> + public LogicManagementClient(params DelegatingHandler[] handlers) : base(handlers) + { + this.Initialize(); + } + + /// <summary> + /// Initializes a new instance of the LogicManagementClient class. + /// </summary> + /// <param name='rootHandler'> + /// Optional. The http client handler used to handle http transport. + /// </param> + /// <param name='handlers'> + /// Optional. The set of delegating handlers to insert in the http + /// client pipeline. + /// </param> + public LogicManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + this.Initialize(); + } + + /// <summary> + /// Initializes a new instance of the LogicManagementClient class. + /// </summary> + /// <param name='baseUri'> + /// Optional. The base URI of the service. + /// </param> + /// <param name='handlers'> + /// Optional. The set of delegating handlers to insert in the http + /// client pipeline. + /// </param> + public LogicManagementClient(Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// <summary> + /// Initializes a new instance of the LogicManagementClient class. + /// </summary> + /// <param name='credentials'> + /// Required. Management credentials for Azure. + /// </param> + /// <param name='handlers'> + /// Optional. The set of delegating handlers to insert in the http + /// client pipeline. + /// </param> + public LogicManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.Credentials = credentials; + } + + /// <summary> + /// Initializes a new instance of the LogicManagementClient class. + /// </summary> + /// <param name='baseUri'> + /// Optional. The base URI of the service. + /// </param> + /// <param name='credentials'> + /// Required. Management credentials for Azure. + /// </param> + /// <param name='handlers'> + /// Optional. The set of delegating handlers to insert in the http + /// client pipeline. + /// </param> + public LogicManagementClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + } + + /// <summary> + /// Initializes client properties. + /// </summary> + private void Initialize() + { + this.Workflows = new WorkflowsOperations(this); + this.WorkflowVersions = new WorkflowVersionsOperations(this); + this.WorkflowAccessKeys = new WorkflowAccessKeysOperations(this); + this.WorkflowTriggers = new WorkflowTriggersOperations(this); + this.WorkflowTriggerHistories = new WorkflowTriggerHistoriesOperations(this); + this.WorkflowRuns = new WorkflowRunsOperations(this); + this.WorkflowRunActions = new WorkflowRunActionsOperations(this); + this.BaseUri = new Uri("https://management.azure.com"); + this.ApiVersion = "2015-02-01-preview"; + this.AcceptLanguage = "en-US"; + SerializationSettings = new JsonSerializerSettings + { + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver() + }; + SerializationSettings.Converters.Add(new ResourceJsonConverter()); + DeserializationSettings = new JsonSerializerSettings{ + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver() + }; + DeserializationSettings.Converters.Add(new ResourceJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/LogicManagementClientExtensions.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/LogicManagementClientExtensions.cs new file mode 100644 index 0000000000000..4803f057ac886 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/LogicManagementClientExtensions.cs @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq.Expressions; + using Microsoft.Rest.Azure; + using Models; + + public static partial class LogicManagementClientExtensions + { + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ContentHash.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ContentHash.cs new file mode 100644 index 0000000000000..ccccf1311f405 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ContentHash.cs @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class ContentHash + { + /// <summary> + /// Gets or sets the algorithm. + /// </summary> + [JsonProperty(PropertyName = "algorithm")] + public string Algorithm { get; set; } + + /// <summary> + /// Gets or sets the value. + /// </summary> + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ContentLink.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ContentLink.cs new file mode 100644 index 0000000000000..021d9877a5b59 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ContentLink.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class ContentLink + { + /// <summary> + /// Gets or sets the content link URI. + /// </summary> + [JsonProperty(PropertyName = "uri")] + public string Uri { get; set; } + + /// <summary> + /// Gets or sets the content version. + /// </summary> + [JsonProperty(PropertyName = "contentVersion")] + public string ContentVersion { get; set; } + + /// <summary> + /// Gets or sets the content size. + /// </summary> + [JsonProperty(PropertyName = "contentSize")] + public long? ContentSize { get; set; } + + /// <summary> + /// Gets or sets the content hash. + /// </summary> + [JsonProperty(PropertyName = "contentHash")] + public ContentHash ContentHash { get; set; } + + /// <summary> + /// Gets or sets the metadata. + /// </summary> + [JsonProperty(PropertyName = "metadata")] + public object Metadata { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/KeyType.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/KeyType.cs new file mode 100644 index 0000000000000..5c5f0843dad9e --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/KeyType.cs @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// <summary> + /// Defines values for KeyType. + /// </summary> + [JsonConverter(typeof(StringEnumConverter))] + public enum KeyType + { + [EnumMember(Value = "NotSpecified")] + NotSpecified, + [EnumMember(Value = "Primary")] + Primary, + [EnumMember(Value = "Secondary")] + Secondary + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ParameterType.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ParameterType.cs new file mode 100644 index 0000000000000..2137c7c9f590b --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ParameterType.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// <summary> + /// Defines values for ParameterType. + /// </summary> + [JsonConverter(typeof(StringEnumConverter))] + public enum ParameterType + { + [EnumMember(Value = "NotSpecified")] + NotSpecified, + [EnumMember(Value = "String")] + String, + [EnumMember(Value = "SecureString")] + SecureString, + [EnumMember(Value = "Int")] + Int, + [EnumMember(Value = "Float")] + Float, + [EnumMember(Value = "Bool")] + Bool, + [EnumMember(Value = "Array")] + Array, + [EnumMember(Value = "Object")] + Object, + [EnumMember(Value = "SecureObject")] + SecureObject + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RecurrenceFrequency.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RecurrenceFrequency.cs new file mode 100644 index 0000000000000..43a263c33a6cf --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RecurrenceFrequency.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// <summary> + /// Defines values for RecurrenceFrequency. + /// </summary> + [JsonConverter(typeof(StringEnumConverter))] + public enum RecurrenceFrequency + { + [EnumMember(Value = "Second")] + Second, + [EnumMember(Value = "Minute")] + Minute, + [EnumMember(Value = "Hour")] + Hour, + [EnumMember(Value = "Day")] + Day, + [EnumMember(Value = "Week")] + Week, + [EnumMember(Value = "Month")] + Month, + [EnumMember(Value = "Year")] + Year + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RegenerateSecretKeyParameters.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RegenerateSecretKeyParameters.cs new file mode 100644 index 0000000000000..14ad8fe46f991 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RegenerateSecretKeyParameters.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class RegenerateSecretKeyParameters + { + /// <summary> + /// Gets or sets the key type. Possible values for this property + /// include: 'NotSpecified', 'Primary', 'Secondary' + /// </summary> + [JsonProperty(PropertyName = "keyType")] + public KeyType? KeyType { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ResourceReference.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ResourceReference.cs new file mode 100644 index 0000000000000..5a421e075a95f --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/ResourceReference.cs @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class ResourceReference + { + /// <summary> + /// Gets or sets the resource id. + /// </summary> + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// <summary> + /// Gets the resource name. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// <summary> + /// Gets the resource type. + /// </summary> + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RunWorkflowParameters.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RunWorkflowParameters.cs new file mode 100644 index 0000000000000..e7e493aecfc27 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/RunWorkflowParameters.cs @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class RunWorkflowParameters + { + /// <summary> + /// Gets or sets the name of workflow run trigger. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// <summary> + /// Gets or sets the outputs of workflow run trigger. + /// </summary> + [JsonProperty(PropertyName = "outputs")] + public object Outputs { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/Sku.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/Sku.cs new file mode 100644 index 0000000000000..105dc7554f31d --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/Sku.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class Sku + { + /// <summary> + /// Gets or sets the name. Possible values for this property include: + /// 'NotSpecified', 'Free', 'Shared', 'Basic', 'Standard', 'Premium' + /// </summary> + [JsonProperty(PropertyName = "name")] + public SkuName? Name { get; set; } + + /// <summary> + /// Gets or sets the reference to plan. + /// </summary> + [JsonProperty(PropertyName = "plan")] + public ResourceReference Plan { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/SkuName.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/SkuName.cs new file mode 100644 index 0000000000000..e3f7f0a800313 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/SkuName.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// <summary> + /// Defines values for SkuName. + /// </summary> + [JsonConverter(typeof(StringEnumConverter))] + public enum SkuName + { + [EnumMember(Value = "NotSpecified")] + NotSpecified, + [EnumMember(Value = "Free")] + Free, + [EnumMember(Value = "Shared")] + Shared, + [EnumMember(Value = "Basic")] + Basic, + [EnumMember(Value = "Standard")] + Standard, + [EnumMember(Value = "Premium")] + Premium + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/Workflow.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/Workflow.cs new file mode 100644 index 0000000000000..718fab3a59fd8 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/Workflow.cs @@ -0,0 +1,93 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class Workflow : Resource + { + /// <summary> + /// Gets the created time. + /// </summary> + [JsonProperty(PropertyName = "properties.createdTime")] + public DateTime? CreatedTime { get; private set; } + + /// <summary> + /// Gets the changed time. + /// </summary> + [JsonProperty(PropertyName = "properties.changedTime")] + public DateTime? ChangedTime { get; private set; } + + /// <summary> + /// Gets or sets the state. Possible values for this property include: + /// 'NotSpecified', 'Enabled', 'Disabled', 'Deleted', 'Suspended' + /// </summary> + [JsonProperty(PropertyName = "properties.state")] + public WorkflowState? State { get; set; } + + /// <summary> + /// Gets the version. + /// </summary> + [JsonProperty(PropertyName = "properties.version")] + public string Version { get; private set; } + + /// <summary> + /// Gets the access endpoint. + /// </summary> + [JsonProperty(PropertyName = "properties.accessEndpoint")] + public string AccessEndpoint { get; private set; } + + /// <summary> + /// Gets or sets the sku. + /// </summary> + [JsonProperty(PropertyName = "properties.sku")] + public Sku Sku { get; set; } + + /// <summary> + /// Gets or sets the link to definition. + /// </summary> + [JsonProperty(PropertyName = "properties.definitionLink")] + public ContentLink DefinitionLink { get; set; } + + /// <summary> + /// Gets or sets the definition. + /// </summary> + [JsonProperty(PropertyName = "properties.definition")] + public object Definition { get; set; } + + /// <summary> + /// Gets or sets the link to parameters. + /// </summary> + [JsonProperty(PropertyName = "properties.parametersLink")] + public ContentLink ParametersLink { get; set; } + + /// <summary> + /// Gets or sets the parameters. + /// </summary> + [JsonProperty(PropertyName = "properties.parameters")] + public IDictionary<string, WorkflowParameter> Parameters { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowAccessKey.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowAccessKey.cs new file mode 100644 index 0000000000000..6c5ca02a8921f --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowAccessKey.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowAccessKey : SubResource + { + /// <summary> + /// Gets the workflow access key name. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// <summary> + /// Gets the workflow access key type. + /// </summary> + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// <summary> + /// Gets or sets the not-before time. + /// </summary> + [JsonProperty(PropertyName = "properties.notBefore")] + public DateTime? NotBefore { get; set; } + + /// <summary> + /// Gets or sets the not-after time. + /// </summary> + [JsonProperty(PropertyName = "properties.notAfter")] + public DateTime? NotAfter { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowFilter.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowFilter.cs new file mode 100644 index 0000000000000..8b777a332e9e6 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowFilter.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowFilter + { + /// <summary> + /// Gets or sets the state of workflows. Possible values for this + /// property include: 'NotSpecified', 'Enabled', 'Disabled', + /// 'Deleted', 'Suspended' + /// </summary> + [JsonProperty(PropertyName = "state")] + public WorkflowState? State { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowParameter.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowParameter.cs new file mode 100644 index 0000000000000..859e237c7924c --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowParameter.cs @@ -0,0 +1,52 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowParameter + { + /// <summary> + /// Gets or sets the type. Possible values for this property include: + /// 'NotSpecified', 'String', 'SecureString', 'Int', 'Float', 'Bool', + /// 'Array', 'Object', 'SecureObject' + /// </summary> + [JsonProperty(PropertyName = "type")] + public ParameterType? Type { get; set; } + + /// <summary> + /// Gets or sets the value. + /// </summary> + [JsonProperty(PropertyName = "value")] + public object Value { get; set; } + + /// <summary> + /// Gets or sets the metadata. + /// </summary> + [JsonProperty(PropertyName = "metadata")] + public object Metadata { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRun.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRun.cs new file mode 100644 index 0000000000000..ba31bdc5a7cf5 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRun.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowRun : SubResource + { + /// <summary> + /// Gets the workflow run name. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// <summary> + /// Gets the workflow run type. + /// </summary> + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// <summary> + /// Gets the start time. + /// </summary> + [JsonProperty(PropertyName = "properties.startTime")] + public DateTime? StartTime { get; private set; } + + /// <summary> + /// Gets the end time. + /// </summary> + [JsonProperty(PropertyName = "properties.endTime")] + public DateTime? EndTime { get; private set; } + + /// <summary> + /// Gets the status. Possible values for this property include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed' + /// </summary> + [JsonProperty(PropertyName = "properties.status")] + public WorkflowStatus? Status { get; private set; } + + /// <summary> + /// Gets the correlation id. + /// </summary> + [JsonProperty(PropertyName = "properties.correlationId")] + public string CorrelationId { get; private set; } + + /// <summary> + /// Gets the reference to workflow version. + /// </summary> + [JsonProperty(PropertyName = "properties.workflow")] + public ResourceReference Workflow { get; private set; } + + /// <summary> + /// Gets the fired trigger. + /// </summary> + [JsonProperty(PropertyName = "properties.trigger")] + public WorkflowRunTrigger Trigger { get; private set; } + + /// <summary> + /// Gets the outputs. + /// </summary> + [JsonProperty(PropertyName = "properties.outputs")] + public IDictionary<string, WorkflowParameter> Outputs { get; private set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunAction.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunAction.cs new file mode 100644 index 0000000000000..9460d53a0c643 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunAction.cs @@ -0,0 +1,94 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowRunAction : SubResource + { + /// <summary> + /// Gets the workflow run action name. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// <summary> + /// Gets the workflow run action type. + /// </summary> + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// <summary> + /// Gets the start time. + /// </summary> + [JsonProperty(PropertyName = "properties.startTime")] + public DateTime? StartTime { get; private set; } + + /// <summary> + /// Gets the end time. + /// </summary> + [JsonProperty(PropertyName = "properties.endTime")] + public DateTime? EndTime { get; private set; } + + /// <summary> + /// Gets the status. Possible values for this property include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed' + /// </summary> + [JsonProperty(PropertyName = "properties.status")] + public WorkflowStatus? Status { get; private set; } + + /// <summary> + /// Gets the code. + /// </summary> + [JsonProperty(PropertyName = "properties.code")] + public string Code { get; private set; } + + /// <summary> + /// Gets the error. + /// </summary> + [JsonProperty(PropertyName = "properties.error")] + public object Error { get; private set; } + + /// <summary> + /// Gets the trackingId. + /// </summary> + [JsonProperty(PropertyName = "properties.trackingId")] + public string TrackingId { get; private set; } + + /// <summary> + /// Gets the link to inputs. + /// </summary> + [JsonProperty(PropertyName = "properties.inputsLink")] + public ContentLink InputsLink { get; private set; } + + /// <summary> + /// Gets the link to outputs. + /// </summary> + [JsonProperty(PropertyName = "properties.outputsLink")] + public ContentLink OutputsLink { get; private set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunActionFilter.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunActionFilter.cs new file mode 100644 index 0000000000000..adc30287e9bde --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunActionFilter.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowRunActionFilter + { + /// <summary> + /// Gets or sets the status of workflow run action. Possible values + /// for this property include: 'NotSpecified', 'Paused', 'Running', + /// 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', + /// 'Failed' + /// </summary> + [JsonProperty(PropertyName = "status")] + public WorkflowStatus? Status { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunFilter.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunFilter.cs new file mode 100644 index 0000000000000..f838b706d7eaa --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunFilter.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowRunFilter + { + /// <summary> + /// Gets or sets the status of workflow run. Possible values for this + /// property include: 'NotSpecified', 'Paused', 'Running', 'Waiting', + /// 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed' + /// </summary> + [JsonProperty(PropertyName = "status")] + public WorkflowStatus? Status { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunTrigger.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunTrigger.cs new file mode 100644 index 0000000000000..3349f16e1fd72 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowRunTrigger.cs @@ -0,0 +1,100 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowRunTrigger + { + /// <summary> + /// Gets the name. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// <summary> + /// Gets the inputs. + /// </summary> + [JsonProperty(PropertyName = "inputs")] + public object Inputs { get; private set; } + + /// <summary> + /// Gets the link to inputs. + /// </summary> + [JsonProperty(PropertyName = "inputsLink")] + public ContentLink InputsLink { get; private set; } + + /// <summary> + /// Gets the outputs. + /// </summary> + [JsonProperty(PropertyName = "outputs")] + public object Outputs { get; private set; } + + /// <summary> + /// Gets the link to outputs. + /// </summary> + [JsonProperty(PropertyName = "outputsLink")] + public ContentLink OutputsLink { get; private set; } + + /// <summary> + /// Gets the start time. + /// </summary> + [JsonProperty(PropertyName = "startTime")] + public DateTime? StartTime { get; private set; } + + /// <summary> + /// Gets the end time. + /// </summary> + [JsonProperty(PropertyName = "endTime")] + public DateTime? EndTime { get; private set; } + + /// <summary> + /// Gets the trackingId. + /// </summary> + [JsonProperty(PropertyName = "trackingId")] + public string TrackingId { get; private set; } + + /// <summary> + /// Gets the code. + /// </summary> + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// <summary> + /// Gets the status. Possible values for this property include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed' + /// </summary> + [JsonProperty(PropertyName = "status")] + public WorkflowStatus? Status { get; private set; } + + /// <summary> + /// Gets the error. + /// </summary> + [JsonProperty(PropertyName = "error")] + public object Error { get; private set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowSecretKeys.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowSecretKeys.cs new file mode 100644 index 0000000000000..bf8ddea314dc4 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowSecretKeys.cs @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowSecretKeys + { + /// <summary> + /// Gets the primary secret key. + /// </summary> + [JsonProperty(PropertyName = "primarySecretKey")] + public string PrimarySecretKey { get; private set; } + + /// <summary> + /// Gets the secondary secret key. + /// </summary> + [JsonProperty(PropertyName = "secondarySecretKey")] + public string SecondarySecretKey { get; private set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowState.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowState.cs new file mode 100644 index 0000000000000..97422aaddafd1 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowState.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// <summary> + /// Defines values for WorkflowState. + /// </summary> + [JsonConverter(typeof(StringEnumConverter))] + public enum WorkflowState + { + [EnumMember(Value = "NotSpecified")] + NotSpecified, + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled, + [EnumMember(Value = "Deleted")] + Deleted, + [EnumMember(Value = "Suspended")] + Suspended + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowStatus.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowStatus.cs new file mode 100644 index 0000000000000..d10fe98aaf3e1 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowStatus.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// <summary> + /// Defines values for WorkflowStatus. + /// </summary> + [JsonConverter(typeof(StringEnumConverter))] + public enum WorkflowStatus + { + [EnumMember(Value = "NotSpecified")] + NotSpecified, + [EnumMember(Value = "Paused")] + Paused, + [EnumMember(Value = "Running")] + Running, + [EnumMember(Value = "Waiting")] + Waiting, + [EnumMember(Value = "Succeeded")] + Succeeded, + [EnumMember(Value = "Skipped")] + Skipped, + [EnumMember(Value = "Suspended")] + Suspended, + [EnumMember(Value = "Cancelled")] + Cancelled, + [EnumMember(Value = "Failed")] + Failed + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTrigger.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTrigger.cs new file mode 100644 index 0000000000000..8c17ac8db2812 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTrigger.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowTrigger : SubResource + { + /// <summary> + /// Gets the workflow trigger name. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// <summary> + /// Gets the workflow trigger type. + /// </summary> + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// <summary> + /// Gets the created time. + /// </summary> + [JsonProperty(PropertyName = "properties.createdTime")] + public DateTime? CreatedTime { get; private set; } + + /// <summary> + /// Gets the changed time. + /// </summary> + [JsonProperty(PropertyName = "properties.changedTime")] + public DateTime? ChangedTime { get; private set; } + + /// <summary> + /// Gets the state. Possible values for this property include: + /// 'NotSpecified', 'Enabled', 'Disabled', 'Deleted', 'Suspended' + /// </summary> + [JsonProperty(PropertyName = "properties.state")] + public WorkflowState? State { get; private set; } + + /// <summary> + /// Gets the status. Possible values for this property include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed' + /// </summary> + [JsonProperty(PropertyName = "properties.status")] + public WorkflowStatus? Status { get; private set; } + + /// <summary> + /// Gets the last execution time. + /// </summary> + [JsonProperty(PropertyName = "properties.lastExecutionTime")] + public DateTime? LastExecutionTime { get; private set; } + + /// <summary> + /// Gets the next execution time. + /// </summary> + [JsonProperty(PropertyName = "properties.nextExecutionTime")] + public DateTime? NextExecutionTime { get; private set; } + + /// <summary> + /// Gets the workflow trigger recurrence. + /// </summary> + [JsonProperty(PropertyName = "properties.recurrence")] + public WorkflowTriggerRecurrence Recurrence { get; private set; } + + /// <summary> + /// Gets the reference to workflow. + /// </summary> + [JsonProperty(PropertyName = "properties.workflow")] + public ResourceReference Workflow { get; private set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerFilter.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerFilter.cs new file mode 100644 index 0000000000000..a83d043138dc6 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerFilter.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowTriggerFilter + { + /// <summary> + /// Gets or sets the state of workflow trigger. Possible values for + /// this property include: 'NotSpecified', 'Enabled', 'Disabled', + /// 'Deleted', 'Suspended' + /// </summary> + [JsonProperty(PropertyName = "state")] + public WorkflowState? State { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerHistory.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerHistory.cs new file mode 100644 index 0000000000000..91e40020a8d56 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerHistory.cs @@ -0,0 +1,106 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowTriggerHistory : SubResource + { + /// <summary> + /// Gets the workflow trigger history name. + /// </summary> + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// <summary> + /// Gets the workflow trigger history type. + /// </summary> + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// <summary> + /// Gets the start time. + /// </summary> + [JsonProperty(PropertyName = "properties.startTime")] + public DateTime? StartTime { get; private set; } + + /// <summary> + /// Gets the end time. + /// </summary> + [JsonProperty(PropertyName = "properties.endTime")] + public DateTime? EndTime { get; private set; } + + /// <summary> + /// Gets the status. Possible values for this property include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed' + /// </summary> + [JsonProperty(PropertyName = "properties.status")] + public WorkflowStatus? Status { get; private set; } + + /// <summary> + /// Gets the code. + /// </summary> + [JsonProperty(PropertyName = "properties.code")] + public string Code { get; private set; } + + /// <summary> + /// Gets the error. + /// </summary> + [JsonProperty(PropertyName = "properties.error")] + public object Error { get; private set; } + + /// <summary> + /// Gets the tracking id. + /// </summary> + [JsonProperty(PropertyName = "properties.trackingId")] + public string TrackingId { get; private set; } + + /// <summary> + /// Gets the link to input parameters. + /// </summary> + [JsonProperty(PropertyName = "properties.inputsLink")] + public ContentLink InputsLink { get; private set; } + + /// <summary> + /// Gets the link to output parameters. + /// </summary> + [JsonProperty(PropertyName = "properties.outputsLink")] + public ContentLink OutputsLink { get; private set; } + + /// <summary> + /// Gets a value indicating whether trigger was fired. + /// </summary> + [JsonProperty(PropertyName = "properties.fired")] + public bool? Fired { get; private set; } + + /// <summary> + /// Gets the reference to workflow run. + /// </summary> + [JsonProperty(PropertyName = "properties.run")] + public ResourceReference Run { get; private set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerRecurrence.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerRecurrence.cs new file mode 100644 index 0000000000000..7d1be500b1cab --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowTriggerRecurrence.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowTriggerRecurrence + { + /// <summary> + /// Gets or sets the frequency. Possible values for this property + /// include: 'Second', 'Minute', 'Hour', 'Day', 'Week', 'Month', + /// 'Year' + /// </summary> + [JsonProperty(PropertyName = "frequency")] + public RecurrenceFrequency? Frequency { get; set; } + + /// <summary> + /// Gets or sets the interval. + /// </summary> + [JsonProperty(PropertyName = "interval")] + public int? Interval { get; set; } + + /// <summary> + /// Gets or sets the start time. + /// </summary> + [JsonProperty(PropertyName = "startTime")] + public DateTime? StartTime { get; set; } + + /// <summary> + /// Gets or sets the time zone. + /// </summary> + [JsonProperty(PropertyName = "timeZone")] + public string TimeZone { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowVersion.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowVersion.cs new file mode 100644 index 0000000000000..dc9b4f94ec78d --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/Models/WorkflowVersion.cs @@ -0,0 +1,93 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// <summary> + /// </summary> + public partial class WorkflowVersion : Resource + { + /// <summary> + /// Gets the created time. + /// </summary> + [JsonProperty(PropertyName = "properties.createdTime")] + public DateTime? CreatedTime { get; private set; } + + /// <summary> + /// Gets the changed time. + /// </summary> + [JsonProperty(PropertyName = "properties.changedTime")] + public DateTime? ChangedTime { get; private set; } + + /// <summary> + /// Gets or sets the state. Possible values for this property include: + /// 'NotSpecified', 'Enabled', 'Disabled', 'Deleted', 'Suspended' + /// </summary> + [JsonProperty(PropertyName = "properties.state")] + public WorkflowState? State { get; set; } + + /// <summary> + /// Gets the version. + /// </summary> + [JsonProperty(PropertyName = "properties.version")] + public string Version { get; private set; } + + /// <summary> + /// Gets the access endpoint. + /// </summary> + [JsonProperty(PropertyName = "properties.accessEndpoint")] + public string AccessEndpoint { get; private set; } + + /// <summary> + /// Gets or sets the sku. + /// </summary> + [JsonProperty(PropertyName = "properties.sku")] + public Sku Sku { get; set; } + + /// <summary> + /// Gets or sets the link to definition. + /// </summary> + [JsonProperty(PropertyName = "properties.definitionLink")] + public ContentLink DefinitionLink { get; set; } + + /// <summary> + /// Gets or sets the definition. + /// </summary> + [JsonProperty(PropertyName = "properties.definition")] + public object Definition { get; set; } + + /// <summary> + /// Gets or sets the link to parameters. + /// </summary> + [JsonProperty(PropertyName = "properties.parametersLink")] + public ContentLink ParametersLink { get; set; } + + /// <summary> + /// Gets or sets the parameters. + /// </summary> + [JsonProperty(PropertyName = "properties.parameters")] + public IDictionary<string, WorkflowParameter> Parameters { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowAccessKeysOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowAccessKeysOperations.cs new file mode 100644 index 0000000000000..c93c7d7d082d7 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowAccessKeysOperations.cs @@ -0,0 +1,1128 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowAccessKeysOperations operations. + /// </summary> + internal partial class WorkflowAccessKeysOperations : IServiceOperations<LogicManagementClient>, IWorkflowAccessKeysOperations + { + /// <summary> + /// Initializes a new instance of the WorkflowAccessKeysOperations class. + /// </summary> + /// <param name='client'> + /// Reference to the service client. + /// </param> + internal WorkflowAccessKeysOperations(LogicManagementClient client) + { + this.Client = client; + } + + /// <summary> + /// Gets a reference to the LogicManagementClient + /// </summary> + public LogicManagementClient Client { get; private set; } + + /// <summary> + /// Gets a list of workflow access keys. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowAccessKey>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "List", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/accessKeys"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (top != null) + { + queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(JsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowAccessKey>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowAccessKey>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a workflow access key. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowAccessKey>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (accessKeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "accessKeyName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("accessKeyName", accessKeyName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Get", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/accessKeys/{accessKeyName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{accessKeyName}", Uri.EscapeDataString(accessKeyName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowAccessKey>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowAccessKey>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Creates or updates a workflow access key. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='workflowAccesskey'> + /// The workflow access key. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowAccessKey>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, WorkflowAccessKey workflowAccesskey, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (accessKeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "accessKeyName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (workflowAccesskey == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowAccesskey"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("accessKeyName", accessKeyName); + tracingParameters.Add("workflowAccesskey", workflowAccesskey); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/accessKeys/{accessKeyName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{accessKeyName}", Uri.EscapeDataString(accessKeyName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Serialize Request + string requestContent = JsonConvert.SerializeObject(workflowAccesskey, this.Client.SerializationSettings); + httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); + httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowAccessKey>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowAccessKey>(responseContent, this.Client.DeserializationSettings); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowAccessKey>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Deletes a workflow access key. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (accessKeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "accessKeyName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("accessKeyName", accessKeyName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Delete", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/accessKeys/{accessKeyName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{accessKeyName}", Uri.EscapeDataString(accessKeyName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Lists secret keys. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowSecretKeys>> ListSecretKeysWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (accessKeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "accessKeyName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("accessKeyName", accessKeyName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListSecretKeys", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/accessKeys/{accessKeyName}/list"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{accessKeyName}", Uri.EscapeDataString(accessKeyName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowSecretKeys>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowSecretKeys>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Regenerates secret key. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowSecretKeys>> RegenerateSecretKeyWithHttpMessagesAsync(string resourceGroupName, string workflowName, string accessKeyName, RegenerateSecretKeyParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (accessKeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "accessKeyName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("accessKeyName", accessKeyName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "RegenerateSecretKey", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/accessKeys/{accessKeyName}/regenerate"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{accessKeyName}", Uri.EscapeDataString(accessKeyName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Serialize Request + string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); + httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowSecretKeys>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowSecretKeys>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a list of workflow access keys. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowAccessKey>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string url = "{nextLink}"; + url = url.Replace("{nextLink}", nextPageLink); + List<string> queryParameters = new List<string>(); + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowAccessKey>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowAccessKey>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowAccessKeysOperationsExtensions.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowAccessKeysOperationsExtensions.cs new file mode 100644 index 0000000000000..966eed678f848 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowAccessKeysOperationsExtensions.cs @@ -0,0 +1,340 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq.Expressions; + using Microsoft.Rest.Azure; + using Models; + + public static partial class WorkflowAccessKeysOperationsExtensions + { + /// <summary> + /// Gets a list of workflow access keys. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + public static Page<WorkflowAccessKey> List(this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, int? top = default(int?)) + { + return Task.Factory.StartNew(s => ((IWorkflowAccessKeysOperations)s).ListAsync(resourceGroupName, workflowName, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow access keys. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowAccessKey>> ListAsync( this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowAccessKey>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, workflowName, top, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a workflow access key. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + public static WorkflowAccessKey Get(this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName) + { + return Task.Factory.StartNew(s => ((IWorkflowAccessKeysOperations)s).GetAsync(resourceGroupName, workflowName, accessKeyName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a workflow access key. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowAccessKey> GetAsync( this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowAccessKey> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workflowName, accessKeyName, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Creates or updates a workflow access key. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='workflowAccesskey'> + /// The workflow access key. + /// </param> + public static WorkflowAccessKey CreateOrUpdate(this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName, WorkflowAccessKey workflowAccesskey) + { + return Task.Factory.StartNew(s => ((IWorkflowAccessKeysOperations)s).CreateOrUpdateAsync(resourceGroupName, workflowName, accessKeyName, workflowAccesskey), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Creates or updates a workflow access key. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='workflowAccesskey'> + /// The workflow access key. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowAccessKey> CreateOrUpdateAsync( this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName, WorkflowAccessKey workflowAccesskey, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowAccessKey> result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workflowName, accessKeyName, workflowAccesskey, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Deletes a workflow access key. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + public static void Delete(this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName) + { + Task.Factory.StartNew(s => ((IWorkflowAccessKeysOperations)s).DeleteAsync(resourceGroupName, workflowName, accessKeyName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Deletes a workflow access key. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task DeleteAsync( this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workflowName, accessKeyName, null, cancellationToken).ConfigureAwait(false); + } + + /// <summary> + /// Lists secret keys. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + public static WorkflowSecretKeys ListSecretKeys(this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName) + { + return Task.Factory.StartNew(s => ((IWorkflowAccessKeysOperations)s).ListSecretKeysAsync(resourceGroupName, workflowName, accessKeyName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Lists secret keys. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowSecretKeys> ListSecretKeysAsync( this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowSecretKeys> result = await operations.ListSecretKeysWithHttpMessagesAsync(resourceGroupName, workflowName, accessKeyName, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Regenerates secret key. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + public static WorkflowSecretKeys RegenerateSecretKey(this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName, RegenerateSecretKeyParameters parameters) + { + return Task.Factory.StartNew(s => ((IWorkflowAccessKeysOperations)s).RegenerateSecretKeyAsync(resourceGroupName, workflowName, accessKeyName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Regenerates secret key. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='accessKeyName'> + /// The workflow access key name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowSecretKeys> RegenerateSecretKeyAsync( this IWorkflowAccessKeysOperations operations, string resourceGroupName, string workflowName, string accessKeyName, RegenerateSecretKeyParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowSecretKeys> result = await operations.RegenerateSecretKeyWithHttpMessagesAsync(resourceGroupName, workflowName, accessKeyName, parameters, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a list of workflow access keys. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + public static Page<WorkflowAccessKey> ListNext(this IWorkflowAccessKeysOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkflowAccessKeysOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow access keys. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowAccessKey>> ListNextAsync( this IWorkflowAccessKeysOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowAccessKey>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunActionsOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunActionsOperations.cs new file mode 100644 index 0000000000000..ef239644f0c74 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunActionsOperations.cs @@ -0,0 +1,517 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowRunActionsOperations operations. + /// </summary> + internal partial class WorkflowRunActionsOperations : IServiceOperations<LogicManagementClient>, IWorkflowRunActionsOperations + { + /// <summary> + /// Initializes a new instance of the WorkflowRunActionsOperations class. + /// </summary> + /// <param name='client'> + /// Reference to the service client. + /// </param> + internal WorkflowRunActionsOperations(LogicManagementClient client) + { + this.Client = client; + } + + /// <summary> + /// Gets a reference to the LogicManagementClient + /// </summary> + public LogicManagementClient Client { get; private set; } + + /// <summary> + /// Gets a list of workflow run actions. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowRunAction>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, int? top = default(int?), Expression<Func<WorkflowRunActionFilter, bool>> filter = default(Expression<Func<WorkflowRunActionFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (runName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "runName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("runName", runName); + tracingParameters.Add("top", top); + tracingParameters.Add("filter", filter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "List", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/actions"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{runName}", Uri.EscapeDataString(runName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (top != null) + { + queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(JsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + } + if (filter != null) + { + queryParameters.Add(string.Format("$filter={0}", FilterString.Generate(filter))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowRunAction>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowRunAction>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a workflow run action. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='actionName'> + /// The workflow action name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowRunAction>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, string actionName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (runName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "runName"); + } + if (actionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "actionName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("runName", runName); + tracingParameters.Add("actionName", actionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Get", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/actions/{actionName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{runName}", Uri.EscapeDataString(runName)); + url = url.Replace("{actionName}", Uri.EscapeDataString(actionName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowRunAction>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowRunAction>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a list of workflow run actions. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowRunAction>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string url = "{nextLink}"; + url = url.Replace("{nextLink}", nextPageLink); + List<string> queryParameters = new List<string>(); + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowRunAction>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowRunAction>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunActionsOperationsExtensions.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunActionsOperationsExtensions.cs new file mode 100644 index 0000000000000..3d66d015ba960 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunActionsOperationsExtensions.cs @@ -0,0 +1,171 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq.Expressions; + using Microsoft.Rest.Azure; + using Models; + + public static partial class WorkflowRunActionsOperationsExtensions + { + /// <summary> + /// Gets a list of workflow run actions. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + public static Page<WorkflowRunAction> List(this IWorkflowRunActionsOperations operations, string resourceGroupName, string workflowName, string runName, int? top = default(int?), Expression<Func<WorkflowRunActionFilter, bool>> filter = default(Expression<Func<WorkflowRunActionFilter, bool>>)) + { + return Task.Factory.StartNew(s => ((IWorkflowRunActionsOperations)s).ListAsync(resourceGroupName, workflowName, runName, top, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow run actions. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowRunAction>> ListAsync( this IWorkflowRunActionsOperations operations, string resourceGroupName, string workflowName, string runName, int? top = default(int?), Expression<Func<WorkflowRunActionFilter, bool>> filter = default(Expression<Func<WorkflowRunActionFilter, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowRunAction>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, workflowName, runName, top, filter, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a workflow run action. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='actionName'> + /// The workflow action name. + /// </param> + public static WorkflowRunAction Get(this IWorkflowRunActionsOperations operations, string resourceGroupName, string workflowName, string runName, string actionName) + { + return Task.Factory.StartNew(s => ((IWorkflowRunActionsOperations)s).GetAsync(resourceGroupName, workflowName, runName, actionName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a workflow run action. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='actionName'> + /// The workflow action name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowRunAction> GetAsync( this IWorkflowRunActionsOperations operations, string resourceGroupName, string workflowName, string runName, string actionName, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowRunAction> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workflowName, runName, actionName, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a list of workflow run actions. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + public static Page<WorkflowRunAction> ListNext(this IWorkflowRunActionsOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkflowRunActionsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow run actions. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowRunAction>> ListNextAsync( this IWorkflowRunActionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowRunAction>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunsOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunsOperations.cs new file mode 100644 index 0000000000000..a5c5787e8db70 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunsOperations.cs @@ -0,0 +1,641 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowRunsOperations operations. + /// </summary> + internal partial class WorkflowRunsOperations : IServiceOperations<LogicManagementClient>, IWorkflowRunsOperations + { + /// <summary> + /// Initializes a new instance of the WorkflowRunsOperations class. + /// </summary> + /// <param name='client'> + /// Reference to the service client. + /// </param> + internal WorkflowRunsOperations(LogicManagementClient client) + { + this.Client = client; + } + + /// <summary> + /// Gets a reference to the LogicManagementClient + /// </summary> + public LogicManagementClient Client { get; private set; } + + /// <summary> + /// Gets a list of workflow runs. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowRun>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, int? top = default(int?), Expression<Func<WorkflowRunFilter, bool>> filter = default(Expression<Func<WorkflowRunFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("top", top); + tracingParameters.Add("filter", filter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "List", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (top != null) + { + queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(JsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + } + if (filter != null) + { + queryParameters.Add(string.Format("$filter={0}", FilterString.Generate(filter))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowRun>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowRun>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a workflow run. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowRun>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (runName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "runName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("runName", runName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Get", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{runName}", Uri.EscapeDataString(runName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowRun>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowRun>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Cancels a workflow run. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse> CancelWithHttpMessagesAsync(string resourceGroupName, string workflowName, string runName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (runName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "runName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("runName", runName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Cancel", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/cancel"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{runName}", Uri.EscapeDataString(runName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a list of workflow runs. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowRun>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string url = "{nextLink}"; + url = url.Replace("{nextLink}", nextPageLink); + List<string> queryParameters = new List<string>(); + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowRun>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowRun>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunsOperationsExtensions.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunsOperationsExtensions.cs new file mode 100644 index 0000000000000..94b0e1a7695cd --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowRunsOperationsExtensions.cs @@ -0,0 +1,202 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq.Expressions; + using Microsoft.Rest.Azure; + using Models; + + public static partial class WorkflowRunsOperationsExtensions + { + /// <summary> + /// Gets a list of workflow runs. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + public static Page<WorkflowRun> List(this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, int? top = default(int?), Expression<Func<WorkflowRunFilter, bool>> filter = default(Expression<Func<WorkflowRunFilter, bool>>)) + { + return Task.Factory.StartNew(s => ((IWorkflowRunsOperations)s).ListAsync(resourceGroupName, workflowName, top, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow runs. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowRun>> ListAsync( this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, int? top = default(int?), Expression<Func<WorkflowRunFilter, bool>> filter = default(Expression<Func<WorkflowRunFilter, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowRun>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, workflowName, top, filter, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a workflow run. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + public static WorkflowRun Get(this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, string runName) + { + return Task.Factory.StartNew(s => ((IWorkflowRunsOperations)s).GetAsync(resourceGroupName, workflowName, runName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a workflow run. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowRun> GetAsync( this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, string runName, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowRun> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workflowName, runName, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Cancels a workflow run. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + public static void Cancel(this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, string runName) + { + Task.Factory.StartNew(s => ((IWorkflowRunsOperations)s).CancelAsync(resourceGroupName, workflowName, runName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Cancels a workflow run. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='runName'> + /// The workflow run name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task CancelAsync( this IWorkflowRunsOperations operations, string resourceGroupName, string workflowName, string runName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.CancelWithHttpMessagesAsync(resourceGroupName, workflowName, runName, null, cancellationToken).ConfigureAwait(false); + } + + /// <summary> + /// Gets a list of workflow runs. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + public static Page<WorkflowRun> ListNext(this IWorkflowRunsOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkflowRunsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow runs. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowRun>> ListNextAsync( this IWorkflowRunsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowRun>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggerHistoriesOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggerHistoriesOperations.cs new file mode 100644 index 0000000000000..d11b644f7ae3b --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggerHistoriesOperations.cs @@ -0,0 +1,509 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowTriggerHistoriesOperations operations. + /// </summary> + internal partial class WorkflowTriggerHistoriesOperations : IServiceOperations<LogicManagementClient>, IWorkflowTriggerHistoriesOperations + { + /// <summary> + /// Initializes a new instance of the WorkflowTriggerHistoriesOperations class. + /// </summary> + /// <param name='client'> + /// Reference to the service client. + /// </param> + internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) + { + this.Client = client; + } + + /// <summary> + /// Gets a reference to the LogicManagementClient + /// </summary> + public LogicManagementClient Client { get; private set; } + + /// <summary> + /// Gets a list of workflow trigger histories. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowTriggerHistory>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, int? top = default(int?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (triggerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("triggerName", triggerName); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "List", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/histories"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (top != null) + { + queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(JsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowTriggerHistory>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowTriggerHistory>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a workflow trigger history. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='historyName'> + /// The workflow trigger history name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowTriggerHistory>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, string historyName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (triggerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); + } + if (historyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "historyName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("triggerName", triggerName); + tracingParameters.Add("historyName", historyName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Get", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/histories/{historyName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); + url = url.Replace("{historyName}", Uri.EscapeDataString(historyName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowTriggerHistory>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowTriggerHistory>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a list of workflow trigger histories. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowTriggerHistory>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string url = "{nextLink}"; + url = url.Replace("{nextLink}", nextPageLink); + List<string> queryParameters = new List<string>(); + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowTriggerHistory>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowTriggerHistory>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggerHistoriesOperationsExtensions.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggerHistoriesOperationsExtensions.cs new file mode 100644 index 0000000000000..0d257a64c3b76 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggerHistoriesOperationsExtensions.cs @@ -0,0 +1,165 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq.Expressions; + using Microsoft.Rest.Azure; + using Models; + + public static partial class WorkflowTriggerHistoriesOperationsExtensions + { + /// <summary> + /// Gets a list of workflow trigger histories. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + public static Page<WorkflowTriggerHistory> List(this IWorkflowTriggerHistoriesOperations operations, string resourceGroupName, string workflowName, string triggerName, int? top = default(int?)) + { + return Task.Factory.StartNew(s => ((IWorkflowTriggerHistoriesOperations)s).ListAsync(resourceGroupName, workflowName, triggerName, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow trigger histories. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowTriggerHistory>> ListAsync( this IWorkflowTriggerHistoriesOperations operations, string resourceGroupName, string workflowName, string triggerName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowTriggerHistory>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, workflowName, triggerName, top, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a workflow trigger history. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='historyName'> + /// The workflow trigger history name. + /// </param> + public static WorkflowTriggerHistory Get(this IWorkflowTriggerHistoriesOperations operations, string resourceGroupName, string workflowName, string triggerName, string historyName) + { + return Task.Factory.StartNew(s => ((IWorkflowTriggerHistoriesOperations)s).GetAsync(resourceGroupName, workflowName, triggerName, historyName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a workflow trigger history. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='historyName'> + /// The workflow trigger history name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowTriggerHistory> GetAsync( this IWorkflowTriggerHistoriesOperations operations, string resourceGroupName, string workflowName, string triggerName, string historyName, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowTriggerHistory> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workflowName, triggerName, historyName, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a list of workflow trigger histories. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + public static Page<WorkflowTriggerHistory> ListNext(this IWorkflowTriggerHistoriesOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkflowTriggerHistoriesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow trigger histories. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowTriggerHistory>> ListNextAsync( this IWorkflowTriggerHistoriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowTriggerHistory>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggersOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggersOperations.cs new file mode 100644 index 0000000000000..4fd522a5837a7 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggersOperations.cs @@ -0,0 +1,641 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowTriggersOperations operations. + /// </summary> + internal partial class WorkflowTriggersOperations : IServiceOperations<LogicManagementClient>, IWorkflowTriggersOperations + { + /// <summary> + /// Initializes a new instance of the WorkflowTriggersOperations class. + /// </summary> + /// <param name='client'> + /// Reference to the service client. + /// </param> + internal WorkflowTriggersOperations(LogicManagementClient client) + { + this.Client = client; + } + + /// <summary> + /// Gets a reference to the LogicManagementClient + /// </summary> + public LogicManagementClient Client { get; private set; } + + /// <summary> + /// Gets a list of workflow triggers. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowTrigger>>> ListWithHttpMessagesAsync(string resourceGroupName, string workflowName, int? top = default(int?), Expression<Func<WorkflowTriggerFilter, bool>> filter = default(Expression<Func<WorkflowTriggerFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("top", top); + tracingParameters.Add("filter", filter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "List", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (top != null) + { + queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(JsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + } + if (filter != null) + { + queryParameters.Add(string.Format("$filter={0}", FilterString.Generate(filter))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowTrigger>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowTrigger>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a workflow trigger. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowTrigger>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (triggerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("triggerName", triggerName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Get", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowTrigger>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowTrigger>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Runs a workflow trigger. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse> RunWithHttpMessagesAsync(string resourceGroupName, string workflowName, string triggerName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (triggerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("triggerName", triggerName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Run", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/run"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a list of workflow triggers. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<WorkflowTrigger>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string url = "{nextLink}"; + url = url.Replace("{nextLink}", nextPageLink); + List<string> queryParameters = new List<string>(); + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<WorkflowTrigger>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<WorkflowTrigger>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggersOperationsExtensions.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggersOperationsExtensions.cs new file mode 100644 index 0000000000000..853e443c9a653 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowTriggersOperationsExtensions.cs @@ -0,0 +1,202 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq.Expressions; + using Microsoft.Rest.Azure; + using Models; + + public static partial class WorkflowTriggersOperationsExtensions + { + /// <summary> + /// Gets a list of workflow triggers. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + public static Page<WorkflowTrigger> List(this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, int? top = default(int?), Expression<Func<WorkflowTriggerFilter, bool>> filter = default(Expression<Func<WorkflowTriggerFilter, bool>>)) + { + return Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).ListAsync(resourceGroupName, workflowName, top, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow triggers. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowTrigger>> ListAsync( this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, int? top = default(int?), Expression<Func<WorkflowTriggerFilter, bool>> filter = default(Expression<Func<WorkflowTriggerFilter, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowTrigger>> result = await operations.ListWithHttpMessagesAsync(resourceGroupName, workflowName, top, filter, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a workflow trigger. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + public static WorkflowTrigger Get(this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, string triggerName) + { + return Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).GetAsync(resourceGroupName, workflowName, triggerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a workflow trigger. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowTrigger> GetAsync( this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, string triggerName, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowTrigger> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workflowName, triggerName, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Runs a workflow trigger. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + public static void Run(this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, string triggerName) + { + Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).RunAsync(resourceGroupName, workflowName, triggerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Runs a workflow trigger. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='triggerName'> + /// The workflow trigger name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task RunAsync( this IWorkflowTriggersOperations operations, string resourceGroupName, string workflowName, string triggerName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.RunWithHttpMessagesAsync(resourceGroupName, workflowName, triggerName, null, cancellationToken).ConfigureAwait(false); + } + + /// <summary> + /// Gets a list of workflow triggers. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + public static Page<WorkflowTrigger> ListNext(this IWorkflowTriggersOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkflowTriggersOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflow triggers. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<WorkflowTrigger>> ListNextAsync( this IWorkflowTriggersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<WorkflowTrigger>> result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowVersionsOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowVersionsOperations.cs new file mode 100644 index 0000000000000..80f2c989c4b4a --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowVersionsOperations.cs @@ -0,0 +1,214 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowVersionsOperations operations. + /// </summary> + internal partial class WorkflowVersionsOperations : IServiceOperations<LogicManagementClient>, IWorkflowVersionsOperations + { + /// <summary> + /// Initializes a new instance of the WorkflowVersionsOperations class. + /// </summary> + /// <param name='client'> + /// Reference to the service client. + /// </param> + internal WorkflowVersionsOperations(LogicManagementClient client) + { + this.Client = client; + } + + /// <summary> + /// Gets a reference to the LogicManagementClient + /// </summary> + public LogicManagementClient Client { get; private set; } + + /// <summary> + /// Gets a workflow version. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='versionId'> + /// The workflow versionId. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowVersion>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, string versionId, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (versionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("versionId", versionId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Get", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + url = url.Replace("{versionId}", Uri.EscapeDataString(versionId)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowVersion>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowVersion>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowVersionsOperationsExtensions.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowVersionsOperationsExtensions.cs new file mode 100644 index 0000000000000..41d06462b2578 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowVersionsOperationsExtensions.cs @@ -0,0 +1,77 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq.Expressions; + using Microsoft.Rest.Azure; + using Models; + + public static partial class WorkflowVersionsOperationsExtensions + { + /// <summary> + /// Gets a workflow version. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='versionId'> + /// The workflow versionId. + /// </param> + public static WorkflowVersion Get(this IWorkflowVersionsOperations operations, string resourceGroupName, string workflowName, string versionId) + { + return Task.Factory.StartNew(s => ((IWorkflowVersionsOperations)s).GetAsync(resourceGroupName, workflowName, versionId), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a workflow version. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='versionId'> + /// The workflow versionId. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowVersion> GetAsync( this IWorkflowVersionsOperations operations, string resourceGroupName, string workflowName, string versionId, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowVersion> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workflowName, versionId, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowsOperations.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowsOperations.cs new file mode 100644 index 0000000000000..789098183ca43 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowsOperations.cs @@ -0,0 +1,1798 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + using System.Linq.Expressions; + using Microsoft.Rest.Azure.OData; + using Microsoft.Rest.Azure; + using Models; + + /// <summary> + /// WorkflowsOperations operations. + /// </summary> + internal partial class WorkflowsOperations : IServiceOperations<LogicManagementClient>, IWorkflowsOperations + { + /// <summary> + /// Initializes a new instance of the WorkflowsOperations class. + /// </summary> + /// <param name='client'> + /// Reference to the service client. + /// </param> + internal WorkflowsOperations(LogicManagementClient client) + { + this.Client = client; + } + + /// <summary> + /// Gets a reference to the LogicManagementClient + /// </summary> + public LogicManagementClient Client { get; private set; } + + /// <summary> + /// Gets a list of workflows by subscription. + /// </summary> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<Workflow>>> ListBySubscriptionWithHttpMessagesAsync(int? top = default(int?), Expression<Func<WorkflowFilter, bool>> filter = default(Expression<Func<WorkflowFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("top", top); + tracingParameters.Add("filter", filter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListBySubscription", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/providers/Microsoft.Logic/workflows"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (top != null) + { + queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(JsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + } + if (filter != null) + { + queryParameters.Add(string.Format("$filter={0}", FilterString.Generate(filter))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<Workflow>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<Workflow>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a list of workflows by resource group. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<Workflow>>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, int? top = default(int?), Expression<Func<WorkflowFilter, bool>> filter = default(Expression<Func<WorkflowFilter, bool>>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("top", top); + tracingParameters.Add("filter", filter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (top != null) + { + queryParameters.Add(string.Format("$top={0}", Uri.EscapeDataString(JsonConvert.SerializeObject(top, this.Client.SerializationSettings).Trim('"')))); + } + if (filter != null) + { + queryParameters.Add(string.Format("$filter={0}", FilterString.Generate(filter))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<Workflow>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<Workflow>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Workflow>> GetWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Get", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Workflow>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Workflow>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Creates or updates a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Workflow>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (workflow == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflow"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("workflow", workflow); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Serialize Request + string requestContent = JsonConvert.SerializeObject(workflow, this.Client.SerializationSettings); + httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); + httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Workflow>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Workflow>(responseContent, this.Client.DeserializationSettings); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Created")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Workflow>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Updates a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Workflow>> UpdateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (workflow == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflow"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("workflow", workflow); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Update", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Serialize Request + string requestContent = JsonConvert.SerializeObject(workflow, this.Client.SerializationSettings); + httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); + httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Workflow>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Workflow>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Deletes a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Delete", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK") || statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "NoContent"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Runs a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='customHeaders'> + /// The headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// The cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowRun>> RunWithHttpMessagesAsync(string resourceGroupName, string workflowName, RunWorkflowParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse<WorkflowRun> response = await BeginRunWithHttpMessagesAsync( + resourceGroupName, workflowName, parameters, customHeaders, cancellationToken); + return await this.Client.GetPostOrDeleteOperationResultAsync(response, customHeaders, cancellationToken); + } + + /// <summary> + /// Runs a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<WorkflowRun>> BeginRunWithHttpMessagesAsync(string resourceGroupName, string workflowName, RunWorkflowParameters parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "BeginRun", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/run"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Serialize Request + string requestContent = JsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); + httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(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); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<WorkflowRun>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "Accepted")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<WorkflowRun>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Disables a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse> DisableWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Disable", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/disable"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Enables a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse> EnableWithHttpMessagesAsync(string resourceGroupName, string workflowName, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Enable", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/enable"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Validates a workflow. + /// </summary> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse> ValidateWithHttpMessagesAsync(string resourceGroupName, string workflowName, Workflow workflow, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (workflowName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (workflow == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "workflow"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("workflowName", workflowName); + tracingParameters.Add("workflow", workflow); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "Validate", tracingParameters); + } + // Construct URL + string url = this.Client.BaseUri.AbsoluteUri + + "//subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/validate"; + url = url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + url = url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + url = url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); + List<string> queryParameters = new List<string>(); + if (this.Client.ApiVersion != null) + { + queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Serialize Request + string requestContent = JsonConvert.SerializeObject(workflow, this.Client.SerializationSettings); + httpRequest.Content = new StringContent(requestContent, Encoding.UTF8); + httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a list of workflows by subscription. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<Workflow>>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListBySubscriptionNext", tracingParameters); + } + // Construct URL + string url = "{nextLink}"; + url = url.Replace("{nextLink}", nextPageLink); + List<string> queryParameters = new List<string>(); + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<Workflow>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<Workflow>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + /// <summary> + /// Gets a list of workflows by resource group. + /// </summary> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='customHeaders'> + /// Headers that will be added to request. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public async Task<AzureOperationResponse<Page<Workflow>>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool shouldTrace = ServiceClientTracing.IsEnabled; + string invocationId = null; + if (shouldTrace) + { + invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary<string, object> tracingParameters = new Dictionary<string, object>(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string url = "{nextLink}"; + url = url.Replace("{nextLink}", nextPageLink); + List<string> queryParameters = new List<string>(); + if (queryParameters.Count > 0) + { + url += "?" + string.Join("&", queryParameters); + } + // trim all duplicate forward slashes in the url + url = Regex.Replace(url, "([^:]/)/+", "$1"); + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage(); + 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) + { + if (httpRequest.Headers.Contains(header.Key)) + { + httpRequest.Headers.Remove(header.Key); + } + httpRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); + } + } + + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (shouldTrace) + { + ServiceClientTracing.SendRequest(invocationId, httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + HttpResponseMessage httpResponse = await this.Client.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + if (shouldTrace) + { + ServiceClientTracing.ReceiveResponse(invocationId, httpResponse); + } + HttpStatusCode statusCode = httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + if (!(statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK"))) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", statusCode)); + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError errorBody = JsonConvert.DeserializeObject<CloudError>(responseContent, this.Client.DeserializationSettings); + if (errorBody != null) + { + ex = new CloudException(errorBody.Message); + ex.Body = errorBody; + } + ex.Request = httpRequest; + ex.Response = httpResponse; + if (shouldTrace) + { + ServiceClientTracing.Error(invocationId, ex); + } + throw ex; + } + // Create Result + var result = new AzureOperationResponse<Page<Workflow>>(); + result.Request = httpRequest; + result.Response = httpResponse; + if (httpResponse.Headers.Contains("x-ms-request-id")) + { + result.RequestId = httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if (statusCode == (HttpStatusCode)Enum.Parse(typeof(HttpStatusCode), "OK")) + { + string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + result.Body = JsonConvert.DeserializeObject<Page<Workflow>>(responseContent, this.Client.DeserializationSettings); + } + if (shouldTrace) + { + ServiceClientTracing.Exit(invocationId, result); + } + return result; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowsOperationsExtensions.cs b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowsOperationsExtensions.cs new file mode 100644 index 0000000000000..ec476fb27d0e9 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Generated/WorkflowsOperationsExtensions.cs @@ -0,0 +1,547 @@ +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using System.Linq.Expressions; + using Microsoft.Rest.Azure; + using Models; + + public static partial class WorkflowsOperationsExtensions + { + /// <summary> + /// Gets a list of workflows by subscription. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + public static Page<Workflow> ListBySubscription(this IWorkflowsOperations operations, int? top = default(int?), Expression<Func<WorkflowFilter, bool>> filter = default(Expression<Func<WorkflowFilter, bool>>)) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ListBySubscriptionAsync(top, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflows by subscription. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<Workflow>> ListBySubscriptionAsync( this IWorkflowsOperations operations, int? top = default(int?), Expression<Func<WorkflowFilter, bool>> filter = default(Expression<Func<WorkflowFilter, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<Workflow>> result = await operations.ListBySubscriptionWithHttpMessagesAsync(top, filter, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a list of workflows by resource group. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + public static Page<Workflow> ListByResourceGroup(this IWorkflowsOperations operations, string resourceGroupName, int? top = default(int?), Expression<Func<WorkflowFilter, bool>> filter = default(Expression<Func<WorkflowFilter, bool>>)) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ListByResourceGroupAsync(resourceGroupName, top, filter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflows by resource group. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='top'> + /// The number of items to be included in the result. + /// </param> + /// <param name='filter'> + /// The filter to apply on the operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<Workflow>> ListByResourceGroupAsync( this IWorkflowsOperations operations, string resourceGroupName, int? top = default(int?), Expression<Func<WorkflowFilter, bool>> filter = default(Expression<Func<WorkflowFilter, bool>>), CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<Workflow>> result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, top, filter, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + public static Workflow Get(this IWorkflowsOperations operations, string resourceGroupName, string workflowName) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).GetAsync(resourceGroupName, workflowName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Workflow> GetAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Workflow> result = await operations.GetWithHttpMessagesAsync(resourceGroupName, workflowName, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Creates or updates a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + public static Workflow CreateOrUpdate(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, Workflow workflow) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).CreateOrUpdateAsync(resourceGroupName, workflowName, workflow), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Creates or updates a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Workflow> CreateOrUpdateAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, Workflow workflow, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Workflow> result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, workflowName, workflow, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Updates a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + public static Workflow Update(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, Workflow workflow) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).UpdateAsync(resourceGroupName, workflowName, workflow), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Updates a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Workflow> UpdateAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, Workflow workflow, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Workflow> result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, workflowName, workflow, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Deletes a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + public static void Delete(this IWorkflowsOperations operations, string resourceGroupName, string workflowName) + { + Task.Factory.StartNew(s => ((IWorkflowsOperations)s).DeleteAsync(resourceGroupName, workflowName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Deletes a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task DeleteAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, workflowName, null, cancellationToken).ConfigureAwait(false); + } + + /// <summary> + /// Runs a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + public static WorkflowRun Run(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, RunWorkflowParameters parameters) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).RunAsync(resourceGroupName, workflowName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Runs a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowRun> RunAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, RunWorkflowParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowRun> result = await operations.RunWithHttpMessagesAsync(resourceGroupName, workflowName, parameters, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Runs a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + public static WorkflowRun BeginRun(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, RunWorkflowParameters parameters) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).BeginRunAsync(resourceGroupName, workflowName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Runs a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='parameters'> + /// The parameters. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<WorkflowRun> BeginRunAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, RunWorkflowParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<WorkflowRun> result = await operations.BeginRunWithHttpMessagesAsync(resourceGroupName, workflowName, parameters, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Disables a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + public static void Disable(this IWorkflowsOperations operations, string resourceGroupName, string workflowName) + { + Task.Factory.StartNew(s => ((IWorkflowsOperations)s).DisableAsync(resourceGroupName, workflowName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Disables a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task DisableAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DisableWithHttpMessagesAsync(resourceGroupName, workflowName, null, cancellationToken).ConfigureAwait(false); + } + + /// <summary> + /// Enables a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + public static void Enable(this IWorkflowsOperations operations, string resourceGroupName, string workflowName) + { + Task.Factory.StartNew(s => ((IWorkflowsOperations)s).EnableAsync(resourceGroupName, workflowName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Enables a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task EnableAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.EnableWithHttpMessagesAsync(resourceGroupName, workflowName, null, cancellationToken).ConfigureAwait(false); + } + + /// <summary> + /// Validates a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + public static void Validate(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, Workflow workflow) + { + Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ValidateAsync(resourceGroupName, workflowName, workflow), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Validates a workflow. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='resourceGroupName'> + /// The resource group name. + /// </param> + /// <param name='workflowName'> + /// The workflow name. + /// </param> + /// <param name='workflow'> + /// The workflow. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task ValidateAsync( this IWorkflowsOperations operations, string resourceGroupName, string workflowName, Workflow workflow, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.ValidateWithHttpMessagesAsync(resourceGroupName, workflowName, workflow, null, cancellationToken).ConfigureAwait(false); + } + + /// <summary> + /// Gets a list of workflows by subscription. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + public static Page<Workflow> ListBySubscriptionNext(this IWorkflowsOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ListBySubscriptionNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflows by subscription. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<Workflow>> ListBySubscriptionNextAsync( this IWorkflowsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<Workflow>> result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + /// <summary> + /// Gets a list of workflows by resource group. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + public static Page<Workflow> ListByResourceGroupNext(this IWorkflowsOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// <summary> + /// Gets a list of workflows by resource group. + /// </summary> + /// <param name='operations'> + /// The operations group for this extension method. + /// </param> + /// <param name='nextPageLink'> + /// NextLink from the previous successful call to List operation. + /// </param> + /// <param name='cancellationToken'> + /// Cancellation token. + /// </param> + public static async Task<Page<Workflow>> ListByResourceGroupNextAsync( this IWorkflowsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse<Page<Workflow>> result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + + } +} diff --git a/src/ResourceManagement/Logic/LogicManagement/LogicManagement.csproj b/src/ResourceManagement/Logic/LogicManagement/LogicManagement.csproj new file mode 100644 index 0000000000000..85ad107361aa3 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/LogicManagement.csproj @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <PropertyGroup> + <AutoRestProjects>true</AutoRestProjects> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{9BA56208-B184-4B1D-830F-16146BBD8DD7}</ProjectGuid> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>Microsoft.Azure.Management.Logic</RootNamespace> + <AssemblyName>Microsoft.Azure.Management.Logic</AssemblyName> + <OutputType>Library</OutputType> + <FileAlignment>512</FileAlignment> + <RestorePackages>true</RestorePackages> + </PropertyGroup> + <Import Project="..\..\..\..\tools\Library.Settings.targets" /> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'portable' "> + <ItemGroup> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + <Choose> + <When Condition=" '$(LibraryFxTarget)' == 'net45' "> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>$(LibraryNugetPackageFolder)\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Rest.ClientRuntime.Azure"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> + <ItemGroup> + <Compile Include="Generated\**\*.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <None Include="Microsoft.Azure.Management.Logic.nuspec" /> + <None Include="Microsoft.Azure.Management.Logic.nuget.proj" /> + <None Include="packages.config" /> + </ItemGroup> + <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> +</Project> \ No newline at end of file diff --git a/src/ResourceManagement/Logic/LogicManagement/Microsoft.Azure.Management.Logic.nuget.proj b/src/ResourceManagement/Logic/LogicManagement/Microsoft.Azure.Management.Logic.nuget.proj new file mode 100644 index 0000000000000..d72f33274b52e --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Microsoft.Azure.Management.Logic.nuget.proj @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup> + <SdkNuGetPackage Include="Microsoft.Azure.Management.Logic"> + <PackageVersion>0.9.0-preview</PackageVersion> + <Folder>$(MSBuildThisFileDirectory)</Folder> + </SdkNuGetPackage> + </ItemGroup> +</Project> diff --git a/src/ResourceManagement/Logic/LogicManagement/Microsoft.Azure.Management.Logic.nuspec b/src/ResourceManagement/Logic/LogicManagement/Microsoft.Azure.Management.Logic.nuspec new file mode 100644 index 0000000000000..36396e29909e7 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Microsoft.Azure.Management.Logic.nuspec @@ -0,0 +1,39 @@ +<?xml version="1.0"?> +<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> + <metadata minClientVersion="2.5"> + <id>Microsoft.Azure.Management.Logic</id> + <title>Microsoft Azure Logic App Management Library</title> + <releaseNotes>__BASELINE_RELEASE_NOTES__</releaseNotes> + <version>$version$</version> + <authors>Microsoft</authors> + <owners>azure-sdk, Microsoft</owners> + <licenseUrl>http://aka.ms/windowsazureapache2</licenseUrl> + <projectUrl>https://github.com/Azure/azure-sdk-for-net</projectUrl> + <iconUrl>http://go.microsoft.com/fwlink/?LinkID=288890</iconUrl> + <requireLicenseAcceptance>false</requireLicenseAcceptance> + <summary>Provides logic app management capabilities for Microsoft Azure.</summary> + <description>Provides logic app management capabilities for Microsoft Azure.</description> + <copyright>Copyright (c) Microsoft Corporation</copyright> + <tags>Microsoft Azure "logic app" management "logic app management" "logic apps" workflow automation integration REST HTTP client azureofficial windowsazureofficial</tags> + <references> + <group targetFramework="portable-net403+win8+wpa81"> + <reference file="Microsoft.Azure.Management.Logic.dll" /> + </group> + <group targetFramework="net45"> + <reference file="Microsoft.Azure.Management.Logic.dll" /> + </group> + </references> + <dependencies> + <dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.20,2.0)" /> + </dependencies> + </metadata> + <files> + <file src="ResourceManagement\Logic\LogicManagement\**\*.cs" target="src" /> + <file src="..\binaries\portable\Microsoft.Azure.Management.Logic.dll" target="lib\portable-net403+win8+wpa81" /> + <file src="..\binaries\portable\Microsoft.Azure.Management.Logic.pdb" target="lib\portable-net403+win8+wpa81" /> + <file src="..\binaries\portable\Microsoft.Azure.Management.Logic.xml" target="lib\portable-net403+win8+wpa81" /> + <file src="..\binaries\net45\Microsoft.Azure.Management.Logic.dll" target="lib\net45" /> + <file src="..\binaries\net45\Microsoft.Azure.Management.Logic.pdb" target="lib\net45" /> + <file src="..\binaries\net45\Microsoft.Azure.Management.Logic.xml" target="lib\net45" /> + </files> +</package> diff --git a/src/ResourceManagement/Logic/LogicManagement/Properties/AssemblyInfo.cs b/src/ResourceManagement/Logic/LogicManagement/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000000..10a7efdaceb02 --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/Properties/AssemblyInfo.cs @@ -0,0 +1,31 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Reflection; +using System.Resources; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Logic App Management Library")] +[assembly: AssemblyDescription("Provides Microsoft Azure Logic App management operations.")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Azure .NET SDK")] +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.0.0")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("en")] diff --git a/src/ResourceManagement/Logic/LogicManagement/packages.config b/src/ResourceManagement/Logic/LogicManagement/packages.config new file mode 100644 index 0000000000000..f9cf981212d9f --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/packages.config @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<packages> + <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> + <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> +</packages> diff --git a/src/ResourceManagement/Logic/NuGet.Config b/src/ResourceManagement/Logic/NuGet.Config new file mode 100644 index 0000000000000..dcff8ff3ab0e9 --- /dev/null +++ b/src/ResourceManagement/Logic/NuGet.Config @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<settings> + <repositoryPath>..\..\..\packages</repositoryPath> +</settings> diff --git a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj index 787aa1e6cb065..24d58f033f8ea 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj +++ b/src/ResourceManagement/Resource/ResourceManagement/ResourceManagement.csproj @@ -65,5 +65,4 @@ <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(LibraryFxTarget)' == 'portable' " /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition=" '$(LibraryFxTarget)' != 'portable' " /> - <Import Project="$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('$(LibraryNugetPackageFolder)\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> </Project> \ No newline at end of file From 5caff499953cfba79f422e13c689d62acf4b4d04 Mon Sep 17 00:00:00 2001 From: stankovski <denis.stankovski@gmail.com> Date: Wed, 29 Jul 2015 11:01:36 -0700 Subject: [PATCH 32/34] Upgraded to latest Authentication package --- .../ClientRuntime.Azure.TestFramework.Tests.csproj | 6 +++++- .../TestFramework.Tests/packages.config | 2 +- .../TestFramework/ClientRuntime.Azure.TestFramework.csproj | 6 +++++- .../TestFramework/packages.config | 2 +- .../Compute/Compute.Tests/Compute.Tests.csproj | 6 +++++- .../Compute/Compute.Tests/packages.config | 2 +- .../Compute/ComputeManagement/packages.config | 2 +- .../Network/Network.Tests/Network.Tests.csproj | 6 +++++- .../Network/Network.Tests/packages.config | 2 +- .../Network/NetworkManagement/packages.config | 2 +- .../Resource/ResourceManagement/packages.config | 2 +- .../Resource/Resources.Tests/Resources.Tests.csproj | 6 +++++- .../Resource/Resources.Tests/packages.config | 2 +- .../Storage/Storage.Tests/Storage.Tests.csproj | 6 +++++- .../Storage/Storage.Tests/packages.config | 2 +- .../Storage/StorageManagement/packages.config | 2 +- 16 files changed, 40 insertions(+), 16 deletions(-) diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj index f8ce3c12e7483..a090cddc4ed27 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/ClientRuntime.Azure.TestFramework.Tests.csproj @@ -33,6 +33,10 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> @@ -42,7 +46,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config index dcc1ae9049f19..bf22bf51b84dc 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework.Tests/packages.config @@ -3,7 +3,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj index a780fcac28af2..94d0e264fe235 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/ClientRuntime.Azure.TestFramework.csproj @@ -17,6 +17,10 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> @@ -26,7 +30,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="System" /> diff --git a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config index 0b70b5eb4abc1..34f0efc77a4ee 100644 --- a/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config +++ b/src/ClientRuntime.Azure.TestFramework/TestFramework/packages.config @@ -3,6 +3,6 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj index 825b180b927ff..d653209575be9 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj +++ b/src/ResourceManagement/Compute/Compute.Tests/Compute.Tests.csproj @@ -154,6 +154,10 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> @@ -163,7 +167,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Compute/Compute.Tests/packages.config b/src/ResourceManagement/Compute/Compute.Tests/packages.config index 2fbdbea1400ad..481aa8deb009b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/packages.config +++ b/src/ResourceManagement/Compute/Compute.Tests/packages.config @@ -3,7 +3,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Compute/ComputeManagement/packages.config b/src/ResourceManagement/Compute/ComputeManagement/packages.config index 28594d3be54ab..095f10519c2a7 100644 --- a/src/ResourceManagement/Compute/ComputeManagement/packages.config +++ b/src/ResourceManagement/Compute/ComputeManagement/packages.config @@ -3,7 +3,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj index 38ed3f6365ea7..94ac52105e70f 100644 --- a/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj +++ b/src/ResourceManagement/Network/Network.Tests/Network.Tests.csproj @@ -118,6 +118,10 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> @@ -127,7 +131,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Network/Network.Tests/packages.config b/src/ResourceManagement/Network/Network.Tests/packages.config index 2fbdbea1400ad..481aa8deb009b 100644 --- a/src/ResourceManagement/Network/Network.Tests/packages.config +++ b/src/ResourceManagement/Network/Network.Tests/packages.config @@ -3,7 +3,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Network/NetworkManagement/packages.config b/src/ResourceManagement/Network/NetworkManagement/packages.config index 28594d3be54ab..095f10519c2a7 100644 --- a/src/ResourceManagement/Network/NetworkManagement/packages.config +++ b/src/ResourceManagement/Network/NetworkManagement/packages.config @@ -3,7 +3,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/ResourceManagement/packages.config b/src/ResourceManagement/Resource/ResourceManagement/packages.config index 28594d3be54ab..095f10519c2a7 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/packages.config +++ b/src/ResourceManagement/Resource/ResourceManagement/packages.config @@ -3,7 +3,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj index 95dded8bae4ba..5b9f0c286a4b6 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj +++ b/src/ResourceManagement/Resource/Resources.Tests/Resources.Tests.csproj @@ -162,6 +162,10 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> @@ -171,7 +175,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Resource/Resources.Tests/packages.config b/src/ResourceManagement/Resource/Resources.Tests/packages.config index 2fbdbea1400ad..481aa8deb009b 100644 --- a/src/ResourceManagement/Resource/Resources.Tests/packages.config +++ b/src/ResourceManagement/Resource/Resources.Tests/packages.config @@ -3,7 +3,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" /> <package id="xunit" version="2.0.0" targetFramework="net45" /> <package id="xunit.abstractions" version="2.0.0" targetFramework="net45" /> diff --git a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj index b803a721ee026..4e402d161cd7f 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj +++ b/src/ResourceManagement/Storage/Storage.Tests/Storage.Tests.csproj @@ -98,6 +98,10 @@ <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath> <Private>True</Private> </Reference> + <Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms"> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll</HintPath> + <Private>True</Private> + </Reference> <Reference Include="Microsoft.Rest.ClientRuntime"> <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll</HintPath> <Private>True</Private> @@ -107,7 +111,7 @@ <Private>True</Private> </Reference> <Reference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication"> - <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> + <HintPath>$(LibraryNugetPackageFolder)\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll</HintPath> <Private>True</Private> </Reference> <Reference Include="Newtonsoft.Json"> diff --git a/src/ResourceManagement/Storage/Storage.Tests/packages.config b/src/ResourceManagement/Storage/Storage.Tests/packages.config index b149a8984d033..a28cf3007382b 100644 --- a/src/ResourceManagement/Storage/Storage.Tests/packages.config +++ b/src/ResourceManagement/Storage/Storage.Tests/packages.config @@ -8,7 +8,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Microsoft.WindowsAzure.ConfigurationManager" version="1.8.0.0" targetFramework="net451" /> <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net451" /> <package id="System.Spatial" version="5.6.2" targetFramework="net451" /> diff --git a/src/ResourceManagement/Storage/StorageManagement/packages.config b/src/ResourceManagement/Storage/StorageManagement/packages.config index 28594d3be54ab..095f10519c2a7 100644 --- a/src/ResourceManagement/Storage/StorageManagement/packages.config +++ b/src/ResourceManagement/Storage/StorageManagement/packages.config @@ -3,7 +3,7 @@ <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.18.206251556" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime" version="1.2.0" targetFramework="net45" /> <package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.20" targetFramework="net45" /> - <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.1" targetFramework="net45" /> + <package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="0.9.2" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> From 033430d368ab63450e38b8e4910149141025c1ff Mon Sep 17 00:00:00 2001 From: Tony Tang <tonytang@microsoft.com> Date: Wed, 29 Jul 2015 15:56:33 -0700 Subject: [PATCH 33/34] Added generate.cmd --- .../Logic/LogicManagement/generate.cmd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/ResourceManagement/Logic/LogicManagement/generate.cmd diff --git a/src/ResourceManagement/Logic/LogicManagement/generate.cmd b/src/ResourceManagement/Logic/LogicManagement/generate.cmd new file mode 100644 index 0000000000000..768b3ca73898e --- /dev/null +++ b/src/ResourceManagement/Logic/LogicManagement/generate.cmd @@ -0,0 +1,17 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +set autoRestVersion=0.11.0-Nightly20150727 +set specUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-logic/2015-02-01-preview/swagger/logic.json?token=AH8IX8feQ_AbVGqLGTA3zABKe4sMSgv4ks5VwpPzwA==" +set source=-Source https://www.myget.org/F/autorest/api/v2 + +set repoRoot=%~dp0..\..\..\.. +set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe +set generateFolder=%~dp0Generated + +%repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages + +if exist %generateFolder% rd /S /Q %generateFolder% +%autoRestExe% -Input %specUrl% -outputDirectory %generateFolder% -Namespace Microsoft.Azure.Management.Logic -Header MICROSOFT_APACHE -CodeGenerator Azure.CSharp -AddCredentials From 89f39ae950d76e83f1b0ad16d15334e07cd1038e Mon Sep 17 00:00:00 2001 From: yugangw-msft <yugangw@microsoft.com> Date: Thu, 30 Jul 2015 14:52:27 -0700 Subject: [PATCH 34/34] update code-gen script and produce mit license header --- .../Generated/AuthorizationClient.cs | 7 ++++++ .../AuthorizationClientExtensions.cs | 7 ++++++ .../DeploymentOperationsOperations.cs | 7 ++++++ ...eploymentOperationsOperationsExtensions.cs | 7 ++++++ .../Generated/DeploymentsOperations.cs | 7 ++++++ .../DeploymentsOperationsExtensions.cs | 7 ++++++ .../Generated/FeatureClient.cs | 7 ++++++ .../Generated/FeatureClientExtensions.cs | 7 ++++++ .../Generated/FeaturesOperations.cs | 7 ++++++ .../Generated/FeaturesOperationsExtensions.cs | 7 ++++++ .../Generated/IAuthorizationClient.cs | 7 ++++++ .../IDeploymentOperationsOperations.cs | 7 ++++++ .../Generated/IDeploymentsOperations.cs | 7 ++++++ .../Generated/IFeatureClient.cs | 7 ++++++ .../Generated/IFeaturesOperations.cs | 7 ++++++ .../Generated/IManagementLocksOperations.cs | 7 ++++++ .../Generated/IProvidersOperations.cs | 7 ++++++ .../Generated/IResourceGroupsOperations.cs | 7 ++++++ .../Generated/IResourceManagementClient.cs | 7 ++++++ ...ourceProviderOperationDetailsOperations.cs | 7 ++++++ .../Generated/IResourcesOperations.cs | 7 ++++++ .../Generated/ISubscriptionClient.cs | 7 ++++++ .../Generated/ISubscriptionsOperations.cs | 7 ++++++ .../Generated/ITagsOperations.cs | 7 ++++++ .../Generated/ITenantsOperations.cs | 7 ++++++ .../Generated/ManagementLocksOperations.cs | 7 ++++++ .../ManagementLocksOperationsExtensions.cs | 7 ++++++ .../Generated/Models/BasicDependency.cs | 7 ++++++ .../Generated/Models/Dependency.cs | 7 ++++++ .../Generated/Models/Deployment.cs | 7 ++++++ .../Generated/Models/DeploymentExtended.cs | 7 ++++++ .../Models/DeploymentExtendedFilter.cs | 7 ++++++ .../Generated/Models/DeploymentMode.cs | 7 ++++++ .../Generated/Models/DeploymentOperation.cs | 7 ++++++ .../Models/DeploymentOperationProperties.cs | 7 ++++++ .../Generated/Models/DeploymentProperties.cs | 7 ++++++ .../Models/DeploymentPropertiesExtended.cs | 7 ++++++ .../Models/DeploymentValidateResult.cs | 7 ++++++ .../Generated/Models/FeatureProperties.cs | 7 ++++++ .../Generated/Models/FeatureResult.cs | 7 ++++++ .../Generated/Models/GenericResource.cs | 7 ++++++ .../Generated/Models/GenericResourceFilter.cs | 7 ++++++ .../Generated/Models/LockLevel.cs | 7 ++++++ .../Generated/Models/ManagementLock.cs | 7 ++++++ .../Models/ManagementLockProperties.cs | 7 ++++++ .../Generated/Models/ParametersLink.cs | 7 ++++++ .../Generated/Models/Plan.cs | 7 ++++++ .../Generated/Models/Provider.cs | 7 ++++++ .../Generated/Models/ProviderResourceType.cs | 7 ++++++ .../Generated/Models/ResourceGroup.cs | 7 ++++++ .../Generated/Models/ResourceGroupFilter.cs | 7 ++++++ .../Models/ResourceGroupProperties.cs | 7 ++++++ .../Models/ResourceManagementError.cs | 7 ++++++ .../ResourceManagementErrorWithDetails.cs | 7 ++++++ .../ResourceProviderOperationDefinition.cs | 7 ++++++ ...sourceProviderOperationDetailListResult.cs | 7 ++++++ ...ourceProviderOperationDisplayProperties.cs | 7 ++++++ .../Generated/Models/ResourcesMoveInfo.cs | 7 ++++++ .../Generated/Models/Subscription.cs | 7 ++++++ .../Generated/Models/TagCount.cs | 7 ++++++ .../Generated/Models/TagDetails.cs | 7 ++++++ .../Generated/Models/TagValue.cs | 7 ++++++ .../Generated/Models/TargetResource.cs | 7 ++++++ .../Generated/Models/TemplateLink.cs | 7 ++++++ .../Generated/Models/TenantIdDescription.cs | 7 ++++++ .../Generated/ProvidersOperations.cs | 7 ++++++ .../ProvidersOperationsExtensions.cs | 7 ++++++ .../Generated/ResourceGroupsOperations.cs | 7 ++++++ .../ResourceGroupsOperationsExtensions.cs | 7 ++++++ .../Generated/ResourceManagementClient.cs | 7 ++++++ .../ResourceManagementClientExtensions.cs | 7 ++++++ ...ourceProviderOperationDetailsOperations.cs | 7 ++++++ ...derOperationDetailsOperationsExtensions.cs | 7 ++++++ .../Generated/ResourcesOperations.cs | 7 ++++++ .../ResourcesOperationsExtensions.cs | 7 ++++++ .../Generated/SubscriptionClient.cs | 7 ++++++ .../Generated/SubscriptionClientExtensions.cs | 7 ++++++ .../Generated/SubscriptionsOperations.cs | 7 ++++++ .../SubscriptionsOperationsExtensions.cs | 7 ++++++ .../Generated/TagsOperations.cs | 7 ++++++ .../Generated/TagsOperationsExtensions.cs | 7 ++++++ .../Generated/TenantsOperations.cs | 7 ++++++ .../Generated/TenantsOperationsExtensions.cs | 7 ++++++ .../Resource/ResourceManagement/generate.cmd | 24 ++++++++++--------- .../Generated/IStorageAccountsOperations.cs | 7 ++++++ .../Generated/IStorageManagementClient.cs | 7 ++++++ .../Generated/IUsageOperations.cs | 7 ++++++ .../Generated/Models/AccountStatus.cs | 7 ++++++ .../Generated/Models/AccountType.cs | 7 ++++++ .../Models/CheckNameAvailabilityResult.cs | 7 ++++++ .../Generated/Models/CustomDomain.cs | 7 ++++++ .../Generated/Models/Endpoints.cs | 7 ++++++ .../Generated/Models/KeyName.cs | 7 ++++++ .../Generated/Models/ProvisioningState.cs | 7 ++++++ .../Generated/Models/Reason.cs | 7 ++++++ .../Generated/Models/StorageAccount.cs | 7 ++++++ ...eAccountCheckNameAvailabilityParameters.cs | 7 ++++++ .../Models/StorageAccountCreateParameters.cs | 7 ++++++ .../Generated/Models/StorageAccountKeys.cs | 7 ++++++ .../StorageAccountRegenerateKeyParameters.cs | 7 ++++++ .../Models/StorageAccountUpdateParameters.cs | 7 ++++++ .../Generated/Models/Usage.cs | 7 ++++++ .../Generated/Models/UsageListResult.cs | 7 ++++++ .../Generated/Models/UsageName.cs | 7 ++++++ .../Generated/Models/UsageUnit.cs | 7 ++++++ .../Generated/StorageAccountsOperations.cs | 7 ++++++ .../StorageAccountsOperationsExtensions.cs | 7 ++++++ .../Generated/StorageManagementClient.cs | 7 ++++++ .../StorageManagementClientExtensions.cs | 7 ++++++ .../Generated/UsageOperations.cs | 7 ++++++ .../Generated/UsageOperationsExtensions.cs | 7 ++++++ .../Storage/StorageManagement/generate.cmd | 16 ++++++------- tools/autorest.gen.cmd | 17 +++++++++++++ 113 files changed, 808 insertions(+), 19 deletions(-) create mode 100644 tools/autorest.gen.cmd diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs index ef401dca06e7a..aae663428a1f0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClientExtensions.cs index c8091c8180cfa..e1ed40a4e8485 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/AuthorizationClientExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs index 7fe8a841afa33..9f701f96f5043 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs index 7eb1c7c008d67..88afe607f4f0a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentOperationsOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs index ba2257800ca2d..7a081683194da 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs index 928b1733d2e6f..c232df321b77d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/DeploymentsOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs index 0d209f82eb670..f3996b7290efa 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClientExtensions.cs index 604fbe2c98d79..e99a602cf619e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeatureClientExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs index ba7c7cc1a7bf1..bd86319f481db 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs index d05a858fdc19d..2a815194758f2 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/FeaturesOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs index 4dad220f4c8e4..e96c2cc5a95ce 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IAuthorizationClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs index 5df9817f839fd..e1c396c80e82a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentOperationsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs index 55a2f7ded2c40..0baeee99d71b1 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IDeploymentsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs index 4c28d4a8f18c7..98cb06a10c06d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeatureClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs index 1b80115c6c8af..60ee80f9cd847 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IFeaturesOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs index f9ef2229dd7f4..3b293060efb40 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IManagementLocksOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs index aa71824e16c2a..6aec3b1f1b9c8 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IProvidersOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs index a41eaabdbb9d9..778eeae83b1b0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceGroupsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs index 06498fe53f6cc..8a6fc713981b9 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceManagementClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs index 772216fa83533..30298ad9f9d32 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourceProviderOperationDetailsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs index 3b8676c007449..83697584fb132 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/IResourcesOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs index 523b0d59190b2..4dcddb10eb16f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs index d813ffdea8399..10b42173a499a 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ISubscriptionsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs index f109056703fad..2e3b38e36bf62 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITagsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs index 9b86921fb0582..3e5f9f737403d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ITenantsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs index 486587bc69173..da6ce0389d4c6 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs index 89814eb02738c..4d8adf8cb7b4c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ManagementLocksOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/BasicDependency.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/BasicDependency.cs index 2f8661115ce0e..f0aa32fc16e60 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/BasicDependency.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/BasicDependency.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Dependency.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Dependency.cs index bb3fc050dda44..4f81e1b288be6 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Dependency.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Dependency.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Deployment.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Deployment.cs index 3b5eb0081e58a..fdb15bcd05c92 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Deployment.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Deployment.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtended.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtended.cs index 5d609a1ab0964..966bd6bd7af15 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtended.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtended.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtendedFilter.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtendedFilter.cs index da7764930e913..dd856301cbd47 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtendedFilter.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentExtendedFilter.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentMode.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentMode.cs index 0ed3d7c4a216f..4a41ab4a6d53f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentMode.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentMode.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using Newtonsoft.Json; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperation.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperation.cs index 35287fc85dc68..05455ef20eb2e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperation.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperation.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationProperties.cs index c693d660a87c6..7da4f851dfe0b 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentOperationProperties.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentProperties.cs index 8d623f4012c79..cc34dd5dcc38e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentProperties.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentPropertiesExtended.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentPropertiesExtended.cs index f784c70c8cc02..02d936c88387b 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentPropertiesExtended.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentPropertiesExtended.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentValidateResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentValidateResult.cs index 92a498bbb8414..9e98ffcd020a4 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentValidateResult.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/DeploymentValidateResult.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureProperties.cs index 84b840ceb7bf8..d2057b4354c70 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureProperties.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureResult.cs index 6ee3761ca0d59..26775483ea1f0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureResult.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/FeatureResult.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResource.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResource.cs index 4a0e7b3dea525..787c5e7d6b2a2 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResource.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResource.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResourceFilter.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResourceFilter.cs index 4ff206e97d4f7..4b1e3f6f2e1ec 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResourceFilter.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/GenericResourceFilter.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/LockLevel.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/LockLevel.cs index def6f6399ad34..53761c4b93893 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/LockLevel.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/LockLevel.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using Newtonsoft.Json; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLock.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLock.cs index 761df295d6ba5..ddcdf91c811db 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLock.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLock.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockProperties.cs index 043b93d877d86..0027483d99bd1 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ManagementLockProperties.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ParametersLink.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ParametersLink.cs index 894cd1ecf2d65..917f418ddc230 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ParametersLink.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ParametersLink.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Plan.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Plan.cs index b0bc81124294c..77706903444b9 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Plan.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Plan.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Provider.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Provider.cs index 3edf086bedb7c..2b822f5540f2d 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Provider.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Provider.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderResourceType.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderResourceType.cs index 50d75fd010bc3..443fb970eb543 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderResourceType.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ProviderResourceType.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs index 0d95d2ab78a4e..a7d06b4869f40 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroup.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFilter.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFilter.cs index 2edf452bfb583..13ff43cb194b6 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFilter.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupFilter.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupProperties.cs index 12c0bb39b7c2a..bdf79822b3f80 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceGroupProperties.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementError.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementError.cs index d3feef948cc16..69efeb73e3ab1 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementError.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementError.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementErrorWithDetails.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementErrorWithDetails.cs index 9519e2b17b63d..de7a006e8922c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementErrorWithDetails.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceManagementErrorWithDetails.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDefinition.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDefinition.cs index 0a590097c0498..4a6ea2d6ba289 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDefinition.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDefinition.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDetailListResult.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDetailListResult.cs index a5f9dd785cf40..e711fe3d1013f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDetailListResult.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDetailListResult.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDisplayProperties.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDisplayProperties.cs index 83e10ec1331d2..b2306932f658f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDisplayProperties.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourceProviderOperationDisplayProperties.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourcesMoveInfo.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourcesMoveInfo.cs index cdbfed6724369..156550c3e0097 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourcesMoveInfo.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/ResourcesMoveInfo.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs index 6bc54359dc1b1..021715879102f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/Subscription.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagCount.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagCount.cs index a894cf64f9cff..8563e7d39035e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagCount.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagCount.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagDetails.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagDetails.cs index 0e34464044a77..9af110f333932 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagDetails.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagDetails.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagValue.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagValue.cs index a013e7173bbbd..41855e308dec9 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagValue.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TagValue.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TargetResource.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TargetResource.cs index b4e4e238a1e73..5322ba0a3e9c5 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TargetResource.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TargetResource.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TemplateLink.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TemplateLink.cs index a48de714d6ae1..a7e7f22817f7f 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TemplateLink.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TemplateLink.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs index 4457c4f83cb4c..e908cee1afd91 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/Models/TenantIdDescription.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources.Models { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs index 6d0448cbda8d5..74abcf16e28b9 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs index e0767a9075b82..5a58bed0f8fab 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ProvidersOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs index eaad511bc85b2..1a23dca5e50c0 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs index 773f8e8c0820c..731e91ce9b85e 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceGroupsOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs index 5ebdb2353a64e..c02c0983916da 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClientExtensions.cs index 571118b08cf27..69c726229ada7 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceManagementClientExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs index c69842e40d936..75123692e0568 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs index a61cc7985fa3c..6029724bf70ec 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourceProviderOperationDetailsOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs index 25df4213b31cb..73e2e9d3ea22c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs index c9d077960e99f..0c90d4e08b024 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/ResourcesOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs index 85a2a706c73f3..159c9128e6464 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs index 9b2e7ee53a1a0..22a3d3bbc7ad8 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionClientExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs index b7c9a115ea6ad..285961f110e16 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs index 24dc09c249b13..3038d345d4fbf 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/SubscriptionsOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs index 85fc6705a878c..e59f313090b7c 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs index 656355a4e6c21..d931c0b926bf8 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TagsOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs index 106ce17eadb9e..ca1aa533e5797 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs index 0b5ba7d7fa373..ca8d69f074e67 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs +++ b/src/ResourceManagement/Resource/ResourceManagement/Generated/TenantsOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Resources { using System; diff --git a/src/ResourceManagement/Resource/ResourceManagement/generate.cmd b/src/ResourceManagement/Resource/ResourceManagement/generate.cmd index db20494323a9e..91075321ac8b6 100644 --- a/src/ResourceManagement/Resource/ResourceManagement/generate.cmd +++ b/src/ResourceManagement/Resource/ResourceManagement/generate.cmd @@ -2,23 +2,25 @@ :: Microsoft Azure SDK for Net - Generate library code :: Copyright (C) Microsoft Corporation. All Rights Reserved. :: - + +@echo off +setlocal set autoRestVersion=0.11.0-Nightly20150727 set source=-Source https://www.myget.org/F/autorest/api/v2 -set resSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-resources/2014-04-01-preview/swagger/resources.json?token=AFvFAUt8kd8h4EHb6NQ9pfECnwPrhv9wks5Vv8qQwA==" -set authSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-authorization/2015-01-01/swagger/authorization.json?token=AFvFAdC1UDb8X4apaW2jBlybnEIsDIEjks5Vv_eWwA==" -set featureSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-features/2014-08-01-preview/swagger/features.json?token=AFvFAdK0vX5j75nicb0DQY5ihN425UExks5Vv_fGwA==" -set subscriptionSpecUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-subscriptions/2014-04-01-preview/swagger/subscriptions.json?token=AFvFAbQmNVtX9zfhY0EO8vcXdF6iOyyKks5Vv_flwA==" +set resSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-resources/2014-04-01-preview/swagger/resources.json?token=AFvFAUt8kd8h4EHb6NQ9pfECnwPrhv9wks5Vv8qQwA==" +set authSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-authorization/2015-01-01/swagger/authorization.json?token=AFvFAdC1UDb8X4apaW2jBlybnEIsDIEjks5Vv_eWwA==" +set featureSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-features/2014-08-01-preview/swagger/features.json?token=AFvFAdK0vX5j75nicb0DQY5ihN425UExks5Vv_fGwA==" +set subscriptionSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-subscriptions/2014-04-01-preview/swagger/subscriptions.json?token=AFvFAbQmNVtX9zfhY0EO8vcXdF6iOyyKks5Vv_flwA==" set repoRoot=%~dp0..\..\..\.. -set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe set generateFolder=%~dp0Generated -%repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages if exist %generateFolder% rd /S /Q %generateFolder% -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %resSpecUrl% -outputDirectory %generateFolder% -Header NONE -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %authSpecUrl% -outputDirectory %generateFolder% -Header NONE -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %featureSpecUrl% -outputDirectory %generateFolder% -Header NONE -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Resources -Input %subscriptionSpecUrl% -outputDirectory %generateFolder% -Header NONE \ No newline at end of file +call "%repoRoot%\tools\autorest.gen.cmd" %resSpecFile% Microsoft.Azure.Management.Resources %autoRestVersion% %generateFolder% +call "%repoRoot%\tools\autorest.gen.cmd" %authSpecFile% Microsoft.Azure.Management.Resources %autoRestVersion% %generateFolder% +call "%repoRoot%\tools\autorest.gen.cmd" %featureSpecFile% Microsoft.Azure.Management.Resources %autoRestVersion% %generateFolder% +call "%repoRoot%\tools\autorest.gen.cmd" %subscriptionSpecFile% Microsoft.Azure.Management.Resources %autoRestVersion% %generateFolder% + +endlocal \ No newline at end of file diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs index b8a610ad0f7e6..a7d7488680721 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageAccountsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs index 68afa0e8c2768..5a3afa4cbbefd 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IStorageManagementClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/IUsageOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/IUsageOperations.cs index e8001f2a32bb0..7a0bbdb6d3b81 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/IUsageOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/IUsageOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountStatus.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountStatus.cs index 581ce409de768..15f8bf95ecce7 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountStatus.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountStatus.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using Newtonsoft.Json; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountType.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountType.cs index 442f383c5ce6a..64239c257c3f6 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountType.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/AccountType.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using Newtonsoft.Json; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CheckNameAvailabilityResult.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CheckNameAvailabilityResult.cs index d6540ccc4c699..5429a04062869 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CheckNameAvailabilityResult.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CheckNameAvailabilityResult.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CustomDomain.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CustomDomain.cs index bbfa50c055cd8..7352d7f272d1c 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CustomDomain.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/CustomDomain.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Endpoints.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Endpoints.cs index 5e7c3303ce0b1..2af1a3a5a8204 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Endpoints.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Endpoints.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/KeyName.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/KeyName.cs index 7b679e830c81e..7771241432cfc 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/KeyName.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/KeyName.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using Newtonsoft.Json; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/ProvisioningState.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/ProvisioningState.cs index 71d692176f2ea..b2aa3cf10fd21 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/ProvisioningState.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/ProvisioningState.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using Newtonsoft.Json; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Reason.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Reason.cs index ab9b38b2aab52..b6ddf98f5e250 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Reason.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Reason.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using Newtonsoft.Json; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccount.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccount.cs index 7750c1fc8d9ef..3dd3c3af09e32 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccount.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccount.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCheckNameAvailabilityParameters.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCheckNameAvailabilityParameters.cs index 8cb33b850313e..03903f6836f44 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCheckNameAvailabilityParameters.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCheckNameAvailabilityParameters.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCreateParameters.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCreateParameters.cs index 8ebe3465bbfad..6d73875b1be5e 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCreateParameters.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountCreateParameters.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountKeys.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountKeys.cs index 1540eee34fe50..4d9421d087b2f 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountKeys.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountKeys.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountRegenerateKeyParameters.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountRegenerateKeyParameters.cs index 9e593f46b130b..5195afc6758b8 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountRegenerateKeyParameters.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountRegenerateKeyParameters.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountUpdateParameters.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountUpdateParameters.cs index 994763d9af2ce..12e5eaed39a17 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountUpdateParameters.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/StorageAccountUpdateParameters.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Usage.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Usage.cs index f6ca35c05acf2..13355cf0706d2 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Usage.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/Usage.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageListResult.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageListResult.cs index 663b7d6e1aadc..0c40cff1b10a7 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageListResult.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageListResult.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageName.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageName.cs index 36e102c23e4ac..a31d158bd6b26 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageName.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageName.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageUnit.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageUnit.cs index 76cfd21dc00c7..bd9f68a00e70c 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageUnit.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/Models/UsageUnit.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage.Models { using Newtonsoft.Json; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs index 02d117910f457..2cd5651f7c992 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs index 7c8758e60ea88..0b72e60cc1ac9 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageAccountsOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs index ad4bb5602b01c..8f69fb7db5832 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClient.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClientExtensions.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClientExtensions.cs index 8fb1efabd37c5..6f905e61923ee 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClientExtensions.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/StorageManagementClientExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs index 2c30d264998da..9eb7bd1a986c1 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperations.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperationsExtensions.cs b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperationsExtensions.cs index 863133b2332bf..a2be45634a9ea 100644 --- a/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperationsExtensions.cs +++ b/src/ResourceManagement/Storage/StorageManagement/Generated/UsageOperationsExtensions.cs @@ -1,3 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 +// Changes may cause incorrect behavior and will be lost if the code is + namespace Microsoft.Azure.Management.Storage { using System; diff --git a/src/ResourceManagement/Storage/StorageManagement/generate.cmd b/src/ResourceManagement/Storage/StorageManagement/generate.cmd index 7b6fc83607cf7..1dd02f78beead 100644 --- a/src/ResourceManagement/Storage/StorageManagement/generate.cmd +++ b/src/ResourceManagement/Storage/StorageManagement/generate.cmd @@ -2,16 +2,16 @@ :: Microsoft Azure SDK for Net - Generate library code :: Copyright (C) Microsoft Corporation. All Rights Reserved. :: - -set autoRestVersion=0.11.0-Nightly20150727 -set specUrl="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-storage/2015-05-01-preview/swagger/storage.json?token=AFvFAVctRHBXqAdfxX2kk3jAvsCrCqxXks5Vv-IDwA==" -set source=-Source https://www.myget.org/F/autorest/api/v2 +@echo off +set autoRestVersion=0.11.0-Nightly20150727 +if "%1" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-storage/2015-05-01-preview/swagger/storage.json?token=AFvFAVctRHBXqAdfxX2kk3jAvsCrCqxXks5Vv-IDwA==" +) else ( + set specFile="%1" +) set repoRoot=%~dp0..\..\..\.. -set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe set generateFolder=%~dp0Generated -%repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages - if exist %generateFolder% rd /S /Q %generateFolder% -%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Storage -Input %specUrl% -outputDirectory %generateFolder% -Header NONE \ No newline at end of file +call "%repoRoot%\tools\autorest.gen.cmd" %specFile% Microsoft.Azure.Management.Storage %autoRestVersion% %generateFolder% diff --git a/tools/autorest.gen.cmd b/tools/autorest.gen.cmd new file mode 100644 index 0000000000000..5e72999ff3ec7 --- /dev/null +++ b/tools/autorest.gen.cmd @@ -0,0 +1,17 @@ +setlocal +set specFile=%1 +set namespace=%2 +set autoRestVersion=%3 +set generateFolder=%4 + +set source=-Source https://www.myget.org/F/autorest/api/v2 + +set repoRoot=%~dp0.. +set autoRestExe=%repoRoot%\packages\autorest.%autoRestVersion%\tools\AutoRest.exe + +%repoRoot%\tools\nuget.exe install autorest %source% -Version %autoRestVersion% -o %repoRoot%\packages -verbosity quiet + +@echo on +%autoRestExe% -Modeler Swagger -CodeGenerator Azure.CSharp -Namespace %namespace% -Input %specFile% -outputDirectory %generateFolder% -Header MICROSOFT_MIT +@echo off +endlocal \ No newline at end of file